Base statistics of all morphology for wing morph and wing2body ratio (in long-winged bugs).

Conclusion from the wing_timeseries.Rmd: Found no significant temporal dependencies. Determined that most time series were nonstationary and all ts were an AR(0) process [white noise with moving average]. Concluded that the time values were independent of each other.

Sourcing Scripts and Cleaning the Data

source_path = "~/Desktop/git_repositories/SBB-dispersal/avbernat_working_on/Rsrc/"

script_names = c("compare_models.R",
                 "regression_output.R", 
                 "clean_morph_data2.R", # two functions: read_morph_data and remove_torn_wings
                 "AICprobabilities.R")

for (script in script_names) { 
  path = paste0(source_path, script)
  source(path) 
}

source("~/Desktop/git_repositories/SBB-dispersal/avbernat_working_on/RSsrc/spatial_dependencies.R") # space
data_list <- read_morph_data("data/allmorphology05.10.21-coors.csv")
## number of missing dates: 0 
## 
## morph types: L S  NA LS SL L/S 
## recoding...
## S if wing2thorax <=2.2, L if wing2thorax >=2.5
raw_data = data_list[[1]]
data_long = data_list[[2]]

Checking for Outliers

dotplot = function(var, data) {
  plot(data[,var], seq(1:nrow(data)),
       col=data$color, ylab="Order of the data from text file", xlab=paste0("Value of ", var))
}
# remove NA dates
d = data_long %>%
  filter(!is.na(wing2body))

range(d$wing2body) # 0.5773723 0.8472103
## [1] 0.5773723 0.8472103
MyVar <- c("wing2body", "wing2thorax", "body", "wing", "beak", "thorax", "lat", "long") 
d$color = "red"
d$color[d$year == "2019" & d$month =="May"] = "black"

par(mfrow=c(3,3))
for (v in MyVar) {
  dotplot(v, d)
}

# remove outliers?
d2 = d %>% 
  filter(!beak<4.5) %>%
  filter(!wing2body <0.62) #%>%
  #filter(!body < 8) %>%
  #filter(!wing2body > 0.79)

d3 = remove_torn_wings(d2)
## 
## number of bugs with torn wings: 195
par(mfrow=c(3,3))

for (v in MyVar) {
  dotplot(v, d3)
}

Wing overmeasured? Body measured too small? Probably the body measured off? wing seems off.

Wing Morph

Infer missing wing morph values

raw_data_missing = raw_data %>%
  filter(w_morph=="" | is.na(w_morph)) # had 30 that are hard to identify as either S or L based on the wing2thorax thresholds.
raw_data_missing # need to determine the morph of these bugs manually. In the long term...need to do this manually because the boundaries of what is defined as a morph can change over time.
##       pophost      population sex beak thorax wing body    month   year
## 1  C.corindum       Homestead   F 8.02   3.81 8.51   NA    April 2013.0
## 2   K.elegans      Lake_Wales   M 5.45   2.97   NA   NA    April 2013.0
## 3   K.elegans      Lake_Wales   M 5.16   2.48 5.54   NA      May 2013.0
## 4   K.elegans        Leesburg   M 5.06   2.63 6.14   NA      May 2013.0
## 5  C.corindum  Plantation_Key   F 7.72   3.86 8.91   NA      May 2013.0
## 6  C.corindum       Homestead   F 6.67   3.62 8.48   NA December 2013.6
## 7   K.elegans       Homestead   F 6.40   3.43 7.79   NA December 2013.6
## 8   K.elegans       Homestead   M 6.00   3.18 7.14   NA December 2013.6
## 9  C.corindum       Key_Largo   M 6.76   3.39 7.84   NA December 2013.6
## 10 C.corindum       Key_Largo   F 7.99   3.74 8.56   NA December 2013.6
## 11  K.elegans      Lake_Wales   F 8.55   3.85 9.04   NA December 2013.6
## 12  K.elegans      Lake_Wales   F 9.08   3.62 8.43   NA December 2013.6
## 13  K.elegans      Lake_Wales   M 5.32   3.06 7.13   NA December 2013.6
## 14  K.elegans        Leesburg   F 7.54   3.79 8.68   NA December 2013.6
## 15  K.elegans        Leesburg   F 7.50   3.04 6.86   NA December 2013.6
## 16  K.elegans        Leesburg   F 6.26   3.32 7.47   NA December 2013.6
## 17  K.elegans        Leesburg   M 6.06   3.23 7.48   NA December 2013.6
## 18  K.elegans        Leesburg   M 6.08   2.83 6.65   NA December 2013.6
## 19  K.elegans        Leesburg   M 5.63   3.04 7.10   NA December 2013.6
## 20  K.elegans        Leesburg   F 8.08   3.63 8.35   NA December 2013.6
## 21  K.elegans        Leesburg   F 7.74   3.71 8.24   NA December 2013.6
## 22  K.elegans     Gainesville   M 5.65   2.80 6.36   NA    April 2014.0
## 23  K.elegans     Gainesville   M 5.62   2.79   NA   NA    April 2014.0
## 24 C.corindum       Homestead   F 6.24   3.35 7.69   NA    April 2014.0
## 25  K.elegans      Lake_Wales   F 6.84   3.28   NA   NA    April 2014.0
## 26  K.elegans      Lake_Wales   F 7.58   3.73   NA   NA    April 2015.0
## 27  K.elegans       Homestead   F 8.79   4.11   NA   NA   August 2017.0
## 28 C.corindum North_Key_Largo   F 6.68   3.14   NA   NA      May 2019.0
## 29 C.corindum  Plantation_Key   F 8.03   3.51   NA   NA  October 2019.0
## 30 C.corindum  Plantation_Key   F 8.50   3.52   NA   NA  October 2019.0
##    months_since_start season w_morph      lat      long                diapause
## 1                   0 spring         25.57106 -80.45500                        
## 2                   0 spring    <NA> 27.93615 -81.57455                        
## 3                   0 spring         27.93615 -81.57455                        
## 4                   0 spring         28.79622 -81.87803                        
## 5                   0 spring         24.96984 -80.55743                        
## 6                   7 winter         25.57106 -80.45500                        
## 7                   7 winter         25.49131 -80.48578                        
## 8                   7 winter         25.49131 -80.48578                        
## 9                   7 winter         25.12308 -80.41528                        
## 10                  7 winter         25.12308 -80.41528                        
## 11                  7 winter         27.90335 -81.58946                        
## 12                  7 winter         27.90335 -81.58946                        
## 13                  7 winter         27.90335 -81.58946                        
## 14                  7 winter         28.79602 -81.87777                        
## 15                  7 winter         28.79602 -81.87777                        
## 16                  7 winter         28.79602 -81.87777                        
## 17                  7 winter         28.79602 -81.87777                        
## 18                  7 winter         28.79602 -81.87777                        
## 19                  7 winter         28.79602 -81.87777                        
## 20                  7 winter         28.79602 -81.87777                        
## 21                  7 winter         28.79602 -81.87777                        
## 22                 11 spring         29.66374 -82.36091                        
## 23                 11 spring    <NA> 29.66374 -82.36091                        
## 24                 11 spring         25.57106 -80.45500                        
## 25                 11 spring    <NA> 27.90335 -81.58946                        
## 26                 23 spring    <NA> 27.90335 -81.58946                        
## 27                 51 summer    <NA> 25.49157 -80.48569 diapausing aggregration
## 28                 72 spring    <NA> 25.19515 -80.34592                        
## 29                 77   fall    <NA> 24.96424 -80.56733          non-diapausing
## 30                 77   fall    <NA> 24.96424 -80.56733          non-diapausing
##    field_date_collected                         notes             site
## 1            05.06.2013                date estimated SW 210th Terrace
## 2            04.30.2013                                       Polk Ave
## 3            05.01.2013                date estimated         Polk Ave
## 4            05.02.2013 date estimated; GPS estimated      Mount & 8th
## 5            05.04.2013 date estimated; GPS estimated        Founder's
## 6                                                     SW 210th Terrace
## 7                                       GPS estimated      SW 296th St
## 8                                       GPS estimated      SW 296th St
## 9                                                                   JP
## 10                                                                  JP
## 11                                                            Polk Ave
## 12                                                            Polk Ave
## 13                                                            Polk Ave
## 14                                                         Mount & 8th
## 15                                                         Mount & 8th
## 16                                                         Mount & 8th
## 17                                                         Mount & 8th
## 18                                                         Mount & 8th
## 19                                                         Mount & 8th
## 20                                                         Mount & 8th
## 21                                                         Mount & 8th
## 22                                                          23rd & 8th
## 23                                                          23rd & 8th
## 24                                                    SW 210th Terrace
## 25                                                            Polk Ave
## 26                                                            Polk Ave
## 27           08.15.2017                                    SW 296th St
## 28                                                         Charlemagne
## 29           10.02.2019                                      Founder's
## 30           10.02.2019                                      Founder's
##    sex_binom pophost_binom            date datetime      dates month_of_year
## 1          1            -1      April/2013 Apr 2013 2013-04-01             4
## 2         -1             1      April/2013 Apr 2013 2013-04-01             4
## 3         -1             1      April/2013 Apr 2013 2013-04-01             4
## 4         -1             1      April/2013 Apr 2013 2013-04-01             4
## 5          1            -1      April/2013 Apr 2013 2013-04-01             4
## 6          1            -1 December/2013.6 Dec 2013 2013-12-01            12
## 7          1             1 December/2013.6 Dec 2013 2013-12-01            12
## 8         -1             1 December/2013.6 Dec 2013 2013-12-01            12
## 9         -1            -1 December/2013.6 Dec 2013 2013-12-01            12
## 10         1            -1 December/2013.6 Dec 2013 2013-12-01            12
## 11         1             1 December/2013.6 Dec 2013 2013-12-01            12
## 12         1             1 December/2013.6 Dec 2013 2013-12-01            12
## 13        -1             1 December/2013.6 Dec 2013 2013-12-01            12
## 14         1             1 December/2013.6 Dec 2013 2013-12-01            12
## 15         1             1 December/2013.6 Dec 2013 2013-12-01            12
## 16         1             1 December/2013.6 Dec 2013 2013-12-01            12
## 17        -1             1 December/2013.6 Dec 2013 2013-12-01            12
## 18        -1             1 December/2013.6 Dec 2013 2013-12-01            12
## 19        -1             1 December/2013.6 Dec 2013 2013-12-01            12
## 20         1             1 December/2013.6 Dec 2013 2013-12-01            12
## 21         1             1 December/2013.6 Dec 2013 2013-12-01            12
## 22        -1             1      April/2014 Apr 2014 2014-04-01             4
## 23        -1             1      April/2014 Apr 2014 2014-04-01             4
## 24         1            -1      April/2014 Apr 2014 2014-04-01             4
## 25         1             1      April/2014 Apr 2014 2014-04-01             4
## 26         1             1      April/2015 Apr 2015 2015-04-01             4
## 27         1             1     August/2017 Aug 2017 2017-08-01             8
## 28         1            -1        May/2019 May 2019 2019-05-01             5
## 29         1            -1    October/2019 Oct 2019 2019-10-01            10
## 30         1            -1    October/2019 Oct 2019 2019-10-01            10
##    wing2thorax wing_morph_binom
## 1     2.233596               NA
## 2           NA               NA
## 3     2.233871               NA
## 4     2.334601               NA
## 5     2.308290               NA
## 6     2.342541               NA
## 7     2.271137               NA
## 8     2.245283               NA
## 9     2.312684               NA
## 10    2.288770               NA
## 11    2.348052               NA
## 12    2.328729               NA
## 13    2.330065               NA
## 14    2.290237               NA
## 15    2.256579               NA
## 16    2.250000               NA
## 17    2.315789               NA
## 18    2.349823               NA
## 19    2.335526               NA
## 20    2.300275               NA
## 21    2.221024               NA
## 22    2.271429               NA
## 23          NA               NA
## 24    2.295522               NA
## 25          NA               NA
## 26          NA               NA
## 27          NA               NA
## 28          NA               NA
## 29          NA               NA
## 30          NA               NA
par(mfrow=c(3,1))
hist(raw_data$wing[raw_data$w_morph=="L"]/raw_data$thorax[raw_data$w_morph=="L"],
     main="Histogram of wing length/thorax length for long winged SBB",
     xlab="wing length/thorax length",
      breaks=seq(0.5, 3.8, by=0.05))
hist(raw_data_missing$wing/raw_data_missing$thorax, 
      main="Histogram of wing length/thorax length for SBB w/o recorded wing morph",
      xlab="wing length/thorax length",
      breaks=seq(0.5, 3.8, by=0.05))
hist(raw_data$wing[raw_data$w_morph=="S"]/raw_data$thorax[raw_data$w_morph=="S"],
      main="Histogram of wing length/thorax length for short winged SBB",
      xlab="wing length/thorax length",
      breaks=seq(0.5,3.8,by=0.05))

Plotting Data Points Across Time and Group

Grouping the data for group counts.

group = raw_data %>% group_by(sex, 
                  datetime) %>% 
  summarize(count = n())
## `summarise()` has grouped output by 'sex'. You can override using the `.groups` argument.

Checking over bug numbers per season.

#raw_data[raw_data$year =="2020",]  #476 survived shipment, so I"m guessing that about 103 bugs did not survive shipment but were still measured for morphology?
#raw_data[raw_data$year =="2019" & raw_data$month=="October",] #similar here. 372 bugs measured but 207 survived. So that means that 165 bugs did not survive and were still measured for morph. 

Plotting the histograms.

data = raw_data
data$population[data$population=="Ft.Myers"]<-"Ft. Myers"
data$population[data$population=="Key_Largo"]<-"Key Largo"
data$population[data$population=="Lake_Placid"]<-"Lake Placid"
data$population[data$population=="Lake_Wales"]<-"Lake Wales"
data$population[data$population=="North_Key_Largo"]<-"North Key Largo"
data$population[data$population=="Plantation_Key"]<-"Plantation Key"

data$pophost[data$pophost=="C.corindum"]<-"C. corindum"
data$pophost[data$pophost=="K.elegans"]<-"K. elegans"

data = data[order(-data$lat),] 
#lat_order = unique(data$population) # should work but lat and long not right so need to do it manually:
lat_order = c("Gainesville", "Leesburg", "Lake Wales", "Lake Placid", "Ft. Myers",  "Homestead",  "North Key Largo", "Key Largo", "Plantation Key")
data$population = as.factor(data$population)
data$population = factor(data$population,levels=lat_order)

I have not removed the bugs with torn wings yet.

Binomial Regressions

What determines wing morph using all the data? Does sex? host plant? month of the year?

Testing time covariates

m = glm(wing_morph_binom ~ months_since_start, data=raw_data, family="binomial")
tidy_regression(m, is_color=FALSE)
## glm wing_morph_binom ~ months_since_start binomial raw_data 
## AIC:  3585.838 
## (Intercept)          coeff:  1.4966103   Pr(>|t|):  1.462966e-71 *
## months_since_start   coeff:  -0.0034902  Pr(>|t|):  0.013932 *
m = glm(wing_morph_binom ~ month_of_year, data=raw_data, family="binomial")
tidy_regression(m, is_color=FALSE)
## glm wing_morph_binom ~ month_of_year binomial raw_data 
## AIC:  3548.031 
## (Intercept)      coeff:  0.8065427   Pr(>|t|):  8.994927e-21 *
## month_of_year    coeff:  0.0803754   Pr(>|t|):  7.132571e-11 *
nrow(data)
## [1] 3532
data<-data.frame(R=raw_data$wing_morph_binom, 
                 A=raw_data$sex_binom, 
                 B=raw_data$pophost_binom, 
                 C=(raw_data$month_of_year),
                 D=raw_data$months_since_start)

model_script = paste0(source_path,"generic models-binomial glm 3-FF.R")
model_comparisonsAIC(model_script)
##        [,1]      [,2]      [,3]      [,4]      [,5]      [,6]       [,7]      
## AICs   3185.995  3186.871  3187.155  3187.895  3187.898  3188.452   3189.02   
## models 15        13        11        7         17        16         14        
## probs  0.2635026 0.1700435 0.1475361 0.1019236 0.1017702 0.07714955 0.05806098
## 
## m15  glm(formula = R ~ A * B + B * C, family = binomial, data = data)
## m13  glm(formula = R ~ B * C + A, family = binomial, data = data)
## m11  glm(formula = R ~ A * B + C, family = binomial, data = data)
## m7   glm(formula = R ~ A + B + C, family = binomial, data = data)
## m17  glm(formula = R ~ A * B + A * C + B * C, family = binomial, data = data)
## m16  glm(formula = R ~ A * C + B * C, family = binomial, data = data)
## m14  glm(formula = R ~ A * B + A * C, family = binomial, data = data)
anova(m13, m15, test="Chisq") # Adding A*B marginally improves fit
anova(m7, m13, test="Chisq") # Adding B*C marginally improves fit
anova(m5, m7, test="Chisq")
anova(m6, m7, test="Chisq")
anova(m4, m7, test="Chisq")
## Analysis of Deviance Table
## 
## Model 1: R ~ B * C + A
## Model 2: R ~ A * B + B * C
##   Resid. Df Resid. Dev Df Deviance Pr(>Chi)  
## 1      3480     3176.9                       
## 2      3479     3174.0  1    2.876  0.08991 .
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## Analysis of Deviance Table
## 
## Model 1: R ~ A + B + C
## Model 2: R ~ B * C + A
##   Resid. Df Resid. Dev Df Deviance Pr(>Chi)  
## 1      3481     3179.9                       
## 2      3480     3176.9  1   3.0237  0.08206 .
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## Analysis of Deviance Table
## 
## Model 1: R ~ A + C
## Model 2: R ~ A + B + C
##   Resid. Df Resid. Dev Df Deviance  Pr(>Chi)    
## 1      3482     3541.3                          
## 2      3481     3179.9  1   361.36 < 2.2e-16 ***
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## Analysis of Deviance Table
## 
## Model 1: R ~ B + C
## Model 2: R ~ A + B + C
##   Resid. Df Resid. Dev Df Deviance Pr(>Chi)  
## 1      3482     3186.3                       
## 2      3481     3179.9  1   6.4204  0.01128 *
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## Analysis of Deviance Table
## 
## Model 1: R ~ A + B
## Model 2: R ~ A + B + C
##   Resid. Df Resid. Dev Df Deviance Pr(>Chi)   
## 1      3482     3188.9                        
## 2      3481     3179.9  1   8.9915 0.002712 **
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
m = glm(wing_morph_binom ~ sex_binom + pophost_binom + month_of_year, data=raw_data, family="binomial")
tidy_regression(m, is_color=FALSE) # m7
## glm wing_morph_binom ~ sex_binom + pophost_binom + month_of_year binomial raw_data 
## AIC:  3187.895 
## (Intercept)      coeff:  1.1984718   Pr(>|t|):  7.734972e-36 *
## sex_binom        coeff:  -0.1122176  Pr(>|t|):  0.01134836 *
## pophost_binom    coeff:  0.8607509   Pr(>|t|):  1.162125e-69 *
## month_of_year    coeff:  0.0389051   Pr(>|t|):  0.00284751 *
summary(m)
## 
## Call:
## glm(formula = wing_morph_binom ~ sex_binom + pophost_binom + 
##     month_of_year, family = "binomial", data = raw_data)
## 
## Deviance Residuals: 
##     Min       1Q   Median       3Q      Max  
## -2.3270   0.3716   0.4315   0.8476   1.0516  
## 
## Coefficients:
##               Estimate Std. Error z value Pr(>|z|)    
## (Intercept)    1.19847    0.09590  12.497  < 2e-16 ***
## sex_binom     -0.11222    0.04432  -2.532  0.01135 *  
## pophost_binom  0.86075    0.04879  17.642  < 2e-16 ***
## month_of_year  0.03891    0.01304   2.984  0.00285 ** 
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 
## (Dispersion parameter for binomial family taken to be 1)
## 
##     Null deviance: 3588.0  on 3484  degrees of freedom
## Residual deviance: 3179.9  on 3481  degrees of freedom
##   (47 observations deleted due to missingness)
## AIC: 3187.9
## 
## Number of Fisher Scoring iterations: 5

Top model is m7 * Males are more likely to be long-winged. * K.elegans more likely to be long-winged. * (+) effect later in the season such that long wing morphs become increasingly likely later in the year.

temp = raw_data %>% 
  filter(!is.na(wing_morph_binom))

check_spatial_dependencies(m, temp, temp$long, temp$lat, zone = 16, cutoff=14000, is_glm=TRUE)
## Warning in showSRID(uprojargs, format = "PROJ", multiline = "NO", prefer_proj
## = prefer_proj): Discarded datum Unknown based on WGS84 ellipsoid in Proj4
## definition
## Warning in proj4string(res): CRS object has comment, which is lost in output
## [1] "m"

##         pophost      population sex beak thorax  wing  body     month   year
## 1     K.elegans        Ft.Myers   M 5.24   2.86  7.98 10.92     April 2013.0
## 2     K.elegans        Ft.Myers   M 5.72   3.09  8.27 11.58     April 2013.0
## 3     K.elegans        Ft.Myers   M 5.81   3.10  8.72 11.54     April 2013.0
## 4     K.elegans        Ft.Myers   M 4.60   2.51  6.57  8.95     April 2013.0
## 5     K.elegans        Ft.Myers   M 5.75   2.97  8.38 11.38     April 2013.0
## 6     K.elegans        Ft.Myers   M 5.42   2.96  7.85 10.80     April 2013.0
## 7     K.elegans        Ft.Myers   M 5.64   2.87  8.02 10.67     April 2013.0
## 8     K.elegans        Ft.Myers   M 5.22   2.60  7.36 10.14     April 2013.0
## 9     K.elegans        Ft.Myers   M 5.17   2.87  7.81 10.42     April 2013.0
## 10    K.elegans        Ft.Myers   F 6.99   3.78  9.93 13.50     April 2013.0
## 11    K.elegans        Ft.Myers   F 7.38   3.35  9.07 12.45     April 2013.0
## 12    K.elegans        Ft.Myers   M 5.09   2.81  7.77 10.45     April 2013.0
## 13    K.elegans        Ft.Myers   M 5.55   3.19  8.57 11.57     April 2013.0
## 14    K.elegans        Ft.Myers   M 5.81   3.33  8.51 11.58     April 2013.0
## 15    K.elegans        Ft.Myers   F 6.22   3.03  5.20    NA     April 2013.0
## 16    K.elegans        Ft.Myers   M 5.73   3.05  8.09 10.73     April 2013.0
## 17    K.elegans        Ft.Myers   M 5.26   3.05  8.09 10.96     April 2013.0
## 18    K.elegans        Ft.Myers   F 6.41   3.74 10.26 13.27     April 2013.0
## 19    K.elegans        Ft.Myers   M 5.50   3.05  8.45 11.37     April 2013.0
## 20    K.elegans        Ft.Myers   F 6.12   3.16  8.73 11.83     April 2013.0
## 21    K.elegans        Ft.Myers   F 7.99   3.47 10.02 13.48     April 2013.0
## 22    K.elegans        Ft.Myers   M 5.24   3.05  7.58 10.45     April 2013.0
## 23    K.elegans        Ft.Myers   F 7.29   3.49  9.94 13.33     April 2013.0
## 24    K.elegans        Ft.Myers   M 5.66   2.83  7.67 10.51     April 2013.0
## 25    K.elegans        Ft.Myers   F 7.87   3.52  9.79 13.35     April 2013.0
## 26    K.elegans        Ft.Myers   M 5.27   2.80  7.89 10.55     April 2013.0
## 27    K.elegans        Ft.Myers   F 8.09   3.58  9.73    NA       May 2013.0
## 28    K.elegans        Ft.Myers   F 7.40   3.42  9.52    NA       May 2013.0
## 29    K.elegans        Ft.Myers   F 5.54   2.45  4.18    NA       May 2013.0
## 30    K.elegans        Ft.Myers   M 5.51   2.49  4.38    NA       May 2013.0
## 31    K.elegans        Ft.Myers   F 6.74   3.44  9.28    NA       May 2013.0
## 32    K.elegans        Ft.Myers   M 6.06   3.05  8.12    NA       May 2013.0
## 33    K.elegans        Ft.Myers   M 6.05   3.22  8.67    NA       May 2013.0
## 34    K.elegans        Ft.Myers   M 5.74   3.15  8.40    NA       May 2013.0
## 35    K.elegans        Ft.Myers   F 5.90   2.71  5.49    NA       May 2013.0
## 36    K.elegans        Ft.Myers   M 5.37   2.93  7.97    NA       May 2013.0
## 37    K.elegans        Ft.Myers   F 7.72   3.28  9.24    NA       May 2013.0
## 38    K.elegans        Ft.Myers   M 5.62   2.85  7.71    NA       May 2013.0
## 39    K.elegans        Ft.Myers   M 6.30   2.84  7.22    NA       May 2013.0
## 40    K.elegans        Ft.Myers   M 6.26   3.20  8.93    NA       May 2013.0
## 41    K.elegans        Ft.Myers   M 5.35   2.97  7.88    NA       May 2013.0
## 42    K.elegans        Ft.Myers   F 6.65   2.84  7.85    NA       May 2013.0
## 43    K.elegans        Ft.Myers   M 5.43   3.09  8.93    NA       May 2013.0
## 44    K.elegans        Ft.Myers   F 6.26   2.95  6.10    NA       May 2013.0
## 45    K.elegans        Ft.Myers   M 5.43   2.82  7.63    NA       May 2013.0
## 46    K.elegans        Ft.Myers   F 7.85   3.71  9.80    NA       May 2013.0
## 47    K.elegans        Ft.Myers   M 5.69   2.87  8.42    NA       May 2013.0
## 48    K.elegans        Ft.Myers   F 5.87   2.80  4.96    NA       May 2013.0
## 49    K.elegans        Ft.Myers   F 6.67   3.62  9.47    NA       May 2013.0
## 50    K.elegans        Ft.Myers   M 5.36   2.70  7.12    NA       May 2013.0
## 51    K.elegans        Ft.Myers   F 6.49   2.94  7.46    NA       May 2013.0
## 52    K.elegans        Ft.Myers   M 5.62   3.13  8.31    NA       May 2013.0
## 53    K.elegans        Ft.Myers   M 5.80   3.17  8.46    NA       May 2013.0
## 54    K.elegans        Ft.Myers   F 6.50   3.67  9.39    NA       May 2013.0
## 55    K.elegans        Ft.Myers   M 5.66   2.83  8.34    NA       May 2013.0
## 56    K.elegans        Ft.Myers   F 7.79   3.34  8.79    NA       May 2013.0
## 57    K.elegans        Ft.Myers   M 5.24   2.73  7.62    NA       May 2013.0
## 58    K.elegans        Ft.Myers   M 5.33   2.83  7.89    NA       May 2013.0
## 59    K.elegans        Ft.Myers   F 7.97   3.88 10.66    NA       May 2013.0
## 60    K.elegans        Ft.Myers   F 7.03   2.90  8.15    NA       May 2013.0
## 61    K.elegans        Ft.Myers   F 7.67   3.41  9.37    NA       May 2013.0
## 62    K.elegans        Ft.Myers   M 5.68   3.14  8.95    NA       May 2013.0
## 63    K.elegans        Ft.Myers   F 7.78   3.51  9.02    NA       May 2013.0
## 64    K.elegans        Ft.Myers   M 5.27   2.89  7.12    NA       May 2013.0
## 65    K.elegans        Ft.Myers   F 6.74   3.64  9.66    NA       May 2013.0
## 66    K.elegans        Ft.Myers   F 8.13   3.77  9.53    NA       May 2013.0
## 67    K.elegans        Ft.Myers   M 5.58   3.03  8.52    NA       May 2013.0
## 68    K.elegans        Ft.Myers   F 7.16   3.34  9.57    NA       May 2013.0
## 69    K.elegans        Ft.Myers   F 7.32   2.96  8.80    NA       May 2013.0
## 70    K.elegans        Ft.Myers   M 5.54   2.93  7.26    NA       May 2013.0
## 71    K.elegans        Ft.Myers   F 7.94   3.56 10.07    NA       May 2013.0
## 72    K.elegans        Ft.Myers   F 6.00   2.69  6.82    NA       May 2013.0
## 73    K.elegans        Ft.Myers   F 8.34   3.67  9.34    NA       May 2013.0
## 74    K.elegans        Ft.Myers   M 5.54   3.23  8.74    NA       May 2013.0
## 75    K.elegans        Ft.Myers   M 5.34   2.91  7.68    NA       May 2013.0
## 76   C.corindum       Homestead   F 6.54   3.05  5.20    NA     April 2013.0
## 77   C.corindum       Homestead   M 5.36   2.61  7.68    NA     April 2013.0
## 78   C.corindum       Homestead   F 7.82   3.51  9.93    NA     April 2013.0
## 79   C.corindum       Homestead   M 5.59   2.78  7.54    NA     April 2013.0
## 80   C.corindum       Homestead   F 6.87   3.18  5.43    NA     April 2013.0
## 81   C.corindum       Homestead   M 5.39   3.00  7.56    NA     April 2013.0
## 82   C.corindum       Homestead   M 5.02   2.37  4.33    NA     April 2013.0
## 83   C.corindum       Homestead   M 5.49   2.69  4.41    NA     April 2013.0
## 84   C.corindum       Homestead   F 6.92   3.27  8.19    NA     April 2013.0
## 85   C.corindum       Homestead   F 6.00   2.95  5.66    NA     April 2013.0
## 86   C.corindum       Homestead   M 5.35   2.57  4.04    NA     April 2013.0
## 87   C.corindum       Homestead   M 4.68   2.28  3.94    NA     April 2013.0
## 88   C.corindum       Homestead   M 5.20   2.53  4.55    NA     April 2013.0
## 89   C.corindum       Homestead   M 5.32   2.44  4.30    NA     April 2013.0
## 90   C.corindum       Homestead   F 5.75   2.63  4.66    NA     April 2013.0
## 91   C.corindum       Homestead   M 5.10   2.58  4.31    NA     April 2013.0
## 92   C.corindum       Homestead   M 5.38   2.57  4.92    NA     April 2013.0
## 93   C.corindum       Homestead   M 6.07   3.15  8.46    NA     April 2013.0
## 94   C.corindum       Homestead   F 7.54   3.25  9.25    NA     April 2013.0
## 95   C.corindum       Homestead   M 4.95   2.60  4.26    NA     April 2013.0
## 96   C.corindum       Homestead   F 6.89   3.70  9.35    NA     April 2013.0
## 97   C.corindum       Homestead   F 6.89   3.59  9.35    NA     April 2013.0
## 98   C.corindum       Homestead   F 6.95   3.43  8.30    NA     April 2013.0
## 99   C.corindum       Homestead   F 8.15   3.84  9.65    NA     April 2013.0
## 100  C.corindum       Homestead   F 5.86   3.03  5.05    NA     April 2013.0
## 101  C.corindum       Homestead   F 7.75   3.38  8.77    NA     April 2013.0
## 102  C.corindum       Homestead   F 7.72   3.42  8.67    NA     April 2013.0
## 103  C.corindum       Homestead   M 5.45   2.66  5.64  8.48       May 2013.0
## 104  C.corindum       Homestead   F 7.15   3.10  8.35 11.93       May 2013.0
## 105  C.corindum       Homestead   M 5.94   3.27  8.92 12.12       May 2013.0
## 106  C.corindum       Homestead   F 6.45   3.21  8.71 11.85       May 2013.0
## 107  C.corindum       Homestead   F 6.55   2.80  3.97    NA       May 2013.0
## 108  C.corindum       Homestead   F 7.51   3.16  9.01 12.33       May 2013.0
## 109  C.corindum       Homestead   M 5.83   3.22  8.59 12.39       May 2013.0
## 110  C.corindum       Homestead   M 5.08   2.90  8.13 11.20       May 2013.0
## 111  C.corindum       Homestead   M 5.61   3.19  8.76 11.72       May 2013.0
## 112  C.corindum       Homestead   M 5.38   2.58  4.84    NA       May 2013.0
## 113  C.corindum       Homestead   M 5.61   3.45  8.45 11.49       May 2013.0
## 114   K.elegans       Homestead   F 7.77   3.84  9.59    NA       May 2013.0
## 115   K.elegans       Homestead   F 8.19   3.61  9.05    NA       May 2013.0
## 116   K.elegans       Homestead   F 7.82   3.43 10.57    NA       May 2013.0
## 117   K.elegans       Homestead   F 7.97   3.51  9.91    NA       May 2013.0
## 118   K.elegans       Homestead   M 5.95   3.16  8.31    NA       May 2013.0
## 119   K.elegans       Homestead   F 7.60   3.44  9.59    NA       May 2013.0
## 120   K.elegans       Homestead   M 5.94   3.18  8.73    NA       May 2013.0
## 121   K.elegans       Homestead   F 7.73   3.73  9.94    NA       May 2013.0
## 122   K.elegans       Homestead   F 7.31   3.50  9.21    NA       May 2013.0
## 123   K.elegans       Homestead   M 5.64   2.99  7.93    NA       May 2013.0
## 124   K.elegans       Homestead   F 7.96   3.45  9.23    NA       May 2013.0
## 125   K.elegans       Homestead   M 5.56   3.00  7.86    NA       May 2013.0
## 126   K.elegans       Homestead   M 5.75   3.14  8.26    NA       May 2013.0
## 127   K.elegans       Homestead   M 5.80   3.02  8.44    NA       May 2013.0
## 128   K.elegans       Homestead   F 7.93   3.64  9.87    NA       May 2013.0
## 129   K.elegans       Homestead   M 5.70   3.19  8.57    NA       May 2013.0
## 130   K.elegans       Homestead   M 6.04   3.38  9.51    NA       May 2013.0
## 131   K.elegans       Homestead   M 5.68   3.01  8.10    NA       May 2013.0
## 132   K.elegans       Homestead   M 5.63   3.00  8.29    NA       May 2013.0
## 133   K.elegans       Homestead   F 8.40   3.68 10.02    NA       May 2013.0
## 134   K.elegans       Homestead   F 7.81   3.75 10.23    NA       May 2013.0
## 135   K.elegans       Homestead   M 6.20   3.10  9.31    NA       May 2013.0
## 136   K.elegans       Homestead   M 5.83   2.91  8.44    NA       May 2013.0
## 137   K.elegans       Homestead   F 7.85   3.58  9.90    NA       May 2013.0
## 138   K.elegans       Homestead   F 7.05   3.25  8.98    NA       May 2013.0
## 139   K.elegans       Homestead   M 6.04   3.00  8.87    NA       May 2013.0
## 140  C.corindum North_Key_Largo   M 5.86   2.84  7.99 11.25     April 2013.0
## 141  C.corindum North_Key_Largo   M 6.69   3.14  8.41 11.48     April 2013.0
## 142  C.corindum North_Key_Largo   F 9.25   3.95  9.99 13.55     April 2013.0
## 143  C.corindum North_Key_Largo   M 6.43   3.18  8.61 11.57     April 2013.0
## 144  C.corindum North_Key_Largo   M 5.35   2.53  4.62    NA     April 2013.0
## 145  C.corindum North_Key_Largo   M 6.77   3.41  8.70 11.63     April 2013.0
## 146  C.corindum North_Key_Largo   F 7.83   3.68  9.78 13.31     April 2013.0
## 147  C.corindum North_Key_Largo   M 5.98   3.16  9.40 12.50     April 2013.0
## 148  C.corindum North_Key_Largo   M 6.18   2.96  8.21 10.94     April 2013.0
## 149  C.corindum North_Key_Largo   M 5.46   3.25  8.74 11.76     April 2013.0
## 150  C.corindum North_Key_Largo   M 5.15   2.32  4.23    NA     April 2013.0
## 151  C.corindum North_Key_Largo   M 5.14   2.59  7.25  9.64     April 2013.0
## 152  C.corindum North_Key_Largo   M 6.30   3.15  8.50 11.78     April 2013.0
## 153  C.corindum North_Key_Largo   M 5.79   3.14  8.37    NA       May 2013.0
## 154  C.corindum North_Key_Largo   F 8.09   3.40  8.61    NA       May 2013.0
## 155  C.corindum North_Key_Largo   F 8.84   3.43  9.29    NA       May 2013.0
## 156  C.corindum North_Key_Largo   M 6.01   3.26  9.17    NA       May 2013.0
## 157  C.corindum North_Key_Largo   F 8.81   3.95  9.91    NA       May 2013.0
## 158  C.corindum North_Key_Largo   M 6.35   2.98  8.22    NA       May 2013.0
## 159  C.corindum North_Key_Largo   F 7.20   3.70  7.35    NA       May 2013.0
## 160  C.corindum North_Key_Largo   M 6.84   3.23  8.57    NA       May 2013.0
## 161  C.corindum North_Key_Largo   F 6.17   2.84  4.47    NA       May 2013.0
## 162  C.corindum North_Key_Largo   F 9.18   3.69  9.62    NA       May 2013.0
## 163  C.corindum North_Key_Largo   F 9.12   3.99 10.73    NA       May 2013.0
## 164  C.corindum North_Key_Largo   F 9.47   3.94 10.09    NA       May 2013.0
## 165  C.corindum North_Key_Largo   F 9.15   3.78 10.17    NA       May 2013.0
## 166  C.corindum North_Key_Largo   M 6.24   3.21  8.74    NA       May 2013.0
## 167  C.corindum North_Key_Largo   M 6.07   3.22  8.53    NA       May 2013.0
## 168  C.corindum North_Key_Largo   F 9.37   3.94 10.07    NA       May 2013.0
## 169  C.corindum North_Key_Largo   M 6.41   3.23  8.51    NA       May 2013.0
## 170  C.corindum North_Key_Largo   M 6.13   3.22  9.02    NA       May 2013.0
## 171  C.corindum North_Key_Largo   F 9.20   3.64  9.77    NA       May 2013.0
## 172  C.corindum North_Key_Largo   M 6.42   3.01  8.24    NA       May 2013.0
## 173  C.corindum North_Key_Largo   M 6.20   3.21  8.41    NA       May 2013.0
## 174  C.corindum North_Key_Largo   M 6.30   2.92  7.93    NA       May 2013.0
## 175  C.corindum North_Key_Largo   F 6.34   2.87  4.82    NA       May 2013.0
## 176  C.corindum North_Key_Largo   M 6.40   3.15  8.46    NA       May 2013.0
## 177  C.corindum North_Key_Largo   F 8.55   3.52  9.34    NA       May 2013.0
## 178  C.corindum North_Key_Largo   M 6.74   3.40  8.45    NA       May 2013.0
## 179  C.corindum North_Key_Largo   F 9.50   4.08 10.59    NA       May 2013.0
## 180  C.corindum North_Key_Largo   M 5.72   3.01  8.40    NA       May 2013.0
## 181  C.corindum North_Key_Largo   M 6.66   3.15  8.69    NA       May 2013.0
## 182  C.corindum North_Key_Largo   F 5.53   2.43  4.21    NA       May 2013.0
## 183  C.corindum North_Key_Largo   M 6.48   3.31  8.73    NA       May 2013.0
## 184  C.corindum North_Key_Largo   M 5.37   2.39  4.87    NA       May 2013.0
## 185  C.corindum North_Key_Largo   F 9.17   3.79  9.76    NA       May 2013.0
## 186  C.corindum North_Key_Largo   M 6.28   3.27  8.96    NA       May 2013.0
## 187  C.corindum North_Key_Largo   F 7.62   3.41  9.10    NA       May 2013.0
## 188  C.corindum North_Key_Largo   M 6.12   3.42  8.83    NA       May 2013.0
## 189  C.corindum North_Key_Largo   F 6.75   2.98  4.80    NA       May 2013.0
## 190  C.corindum North_Key_Largo   F 7.15   3.28  5.33    NA       May 2013.0
## 191  C.corindum North_Key_Largo   F 8.72   3.47  9.97    NA       May 2013.0
## 192  C.corindum North_Key_Largo   F 7.83   2.98  8.04    NA       May 2013.0
## 193  C.corindum North_Key_Largo   F 7.06   3.17  5.71    NA       May 2013.0
## 194  C.corindum North_Key_Largo   M 5.83   2.77  5.47    NA       May 2013.0
## 195  C.corindum North_Key_Largo   M 7.17   3.56  9.01    NA       May 2013.0
## 196  C.corindum North_Key_Largo   M 6.39   3.28  9.18    NA       May 2013.0
## 197  C.corindum North_Key_Largo   M 6.47   3.33  9.09    NA       May 2013.0
## 198  C.corindum North_Key_Largo   M 6.49   3.38  8.78    NA       May 2013.0
## 199  C.corindum North_Key_Largo   F 8.83   3.78 10.03    NA       May 2013.0
## 200  C.corindum North_Key_Largo   F 7.15   3.10  8.00    NA       May 2013.0
## 201   K.elegans      Lake_Wales   M 5.42   3.11  7.96 10.93     April 2013.0
## 202   K.elegans      Lake_Wales   M 5.41   2.58  6.25  9.22     April 2013.0
## 203   K.elegans      Lake_Wales   M 5.35   3.13  8.25 11.79     April 2013.0
## 204   K.elegans      Lake_Wales   F 6.78   3.12  9.25 12.07     April 2013.0
## 205   K.elegans      Lake_Wales   M 5.32   2.71  7.66 10.66     April 2013.0
## 206   K.elegans      Lake_Wales   M 5.05   2.49  7.04  9.80     April 2013.0
## 207   K.elegans      Lake_Wales   F 7.63   3.35  9.12 12.38     April 2013.0
## 208   K.elegans      Lake_Wales   M 5.17   2.76  8.25 11.17     April 2013.0
## 209   K.elegans      Lake_Wales   M 5.48   2.51  6.23  9.12     April 2013.0
## 210   K.elegans      Lake_Wales   M 5.19   3.06  7.75 10.76     April 2013.0
## 211   K.elegans      Lake_Wales   F 6.81   3.49  9.76 13.51     April 2013.0
## 212   K.elegans      Lake_Wales   M 5.02   2.80  7.27 10.41     April 2013.0
## 213   K.elegans      Lake_Wales   F 7.56   3.20  8.07 11.65     April 2013.0
## 214   K.elegans      Lake_Wales   M 5.22   2.63  4.96    NA     April 2013.0
## 215   K.elegans      Lake_Wales   M 5.47   3.08  7.38 10.46     April 2013.0
## 216   K.elegans      Lake_Wales   M 4.80   2.35  4.63    NA     April 2013.0
## 217   K.elegans      Lake_Wales   F 6.18   2.91  7.77 11.11     April 2013.0
## 218   K.elegans      Lake_Wales   M 5.15   2.76  5.26    NA     April 2013.0
## 219   K.elegans      Lake_Wales   M 5.03   2.62  7.19  9.84     April 2013.0
## 220   K.elegans      Lake_Wales   M 5.68   2.79  7.41 10.24     April 2013.0
## 221   K.elegans      Lake_Wales   M 5.60   3.32  8.64 11.70     April 2013.0
## 222   K.elegans      Lake_Wales   M 5.28   2.98  8.16 11.12     April 2013.0
## 223   K.elegans      Lake_Wales   M 5.50   2.83  8.09 10.65     April 2013.0
## 224   K.elegans      Lake_Wales   F 6.47   3.02  8.00 11.03     April 2013.0
## 225   K.elegans      Lake_Wales   M 5.19   2.47  4.78    NA     April 2013.0
## 226   K.elegans      Lake_Wales   M 5.28   3.17  8.68 11.62     April 2013.0
## 227   K.elegans      Lake_Wales   M 5.53   3.14  8.19 11.18     April 2013.0
## 228   K.elegans      Lake_Wales   M 5.56   2.98  7.89 10.90     April 2013.0
## 229   K.elegans      Lake_Wales   M 5.15   2.74  4.56    NA     April 2013.0
## 230   K.elegans      Lake_Wales   M 5.40   2.60  7.23    NA       May 2013.0
## 231   K.elegans      Lake_Wales   M 5.31   2.97  8.10    NA       May 2013.0
## 232   K.elegans      Lake_Wales   F 6.48   3.17  8.64    NA       May 2013.0
## 233   K.elegans      Lake_Wales   F 6.59   3.27  9.18    NA       May 2013.0
## 234   K.elegans      Lake_Wales   M 5.25   2.77  7.91    NA       May 2013.0
## 235   K.elegans      Lake_Wales   M 5.37   2.88  8.09    NA       May 2013.0
## 236   K.elegans      Lake_Wales   F 7.12   3.52  9.23    NA       May 2013.0
## 237   K.elegans      Lake_Wales   F 7.22   3.30  9.01    NA       May 2013.0
## 238   K.elegans      Lake_Wales   M 5.52   2.73  8.05    NA       May 2013.0
## 239   K.elegans      Lake_Wales   F 6.40   2.90  8.01    NA       May 2013.0
## 240   K.elegans      Lake_Wales   F 6.28   2.72  7.65    NA       May 2013.0
## 241   K.elegans      Lake_Wales   M 5.13   2.68  7.03    NA       May 2013.0
## 242   K.elegans      Lake_Wales   M 4.95   2.62  4.52    NA       May 2013.0
## 243   K.elegans      Lake_Wales   F 6.51   3.51  9.02    NA       May 2013.0
## 244   K.elegans      Lake_Wales   M 5.72   3.14  8.40    NA       May 2013.0
## 245   K.elegans      Lake_Wales   F 7.69   3.29  9.71    NA       May 2013.0
## 246   K.elegans      Lake_Wales   F 6.77   3.30  9.85    NA       May 2013.0
## 247   K.elegans      Lake_Wales   F 6.60   2.93  8.70    NA       May 2013.0
## 248   K.elegans      Lake_Wales   F 6.34   3.02  8.18    NA       May 2013.0
## 249   K.elegans      Lake_Wales   F 7.35   3.20  8.75    NA       May 2013.0
## 250   K.elegans      Lake_Wales   M 5.51   3.04  8.48    NA       May 2013.0
## 251   K.elegans      Lake_Wales   M 5.15   3.04  8.22    NA       May 2013.0
## 252   K.elegans      Lake_Wales   M 5.49   2.69  7.16    NA       May 2013.0
## 253   K.elegans      Lake_Wales   M 6.51   3.04  8.23    NA       May 2013.0
## 254   K.elegans      Lake_Wales   M 5.22   2.58  6.82    NA       May 2013.0
## 255   K.elegans      Lake_Wales   M 5.11   2.48  7.28    NA       May 2013.0
## 256   K.elegans      Lake_Wales   M 5.17   2.63  7.47    NA       May 2013.0
## 257   K.elegans      Lake_Wales   F 6.73   3.53 10.06    NA       May 2013.0
## 258   K.elegans      Lake_Wales   M 5.29   2.62  5.35    NA       May 2013.0
## 259   K.elegans      Lake_Wales   F 6.94   3.70  9.88    NA       May 2013.0
## 260   K.elegans      Lake_Wales   M 5.44   2.58  7.68    NA       May 2013.0
## 261   K.elegans        Leesburg   M 5.13   2.56  5.34    NA       May 2013.0
## 262   K.elegans        Leesburg   M 5.35   2.59  5.00    NA       May 2013.0
## 263   K.elegans        Leesburg   F 6.25   3.80  9.33    NA       May 2013.0
## 264   K.elegans        Leesburg   M 5.13   2.64  4.63    NA       May 2013.0
## 265   K.elegans        Leesburg   F 6.17   2.97  7.20    NA       May 2013.0
## 266   K.elegans        Leesburg   M 4.69   2.20  4.22    NA       May 2013.0
## 267   K.elegans        Leesburg   M 5.21   2.69  7.37    NA       May 2013.0
## 268   K.elegans        Leesburg   F 6.63   3.08  8.28    NA       May 2013.0
## 269   K.elegans        Leesburg   M 6.07   3.04  8.80    NA       May 2013.0
## 270   K.elegans        Leesburg   M 5.62   2.82  8.59    NA       May 2013.0
## 271   K.elegans        Leesburg   F 7.60   3.45  9.20    NA       May 2013.0
## 272   K.elegans        Leesburg   M 5.66   2.97  8.71    NA       May 2013.0
## 273   K.elegans        Leesburg   F 6.29   3.28  8.58    NA       May 2013.0
## 274   K.elegans        Leesburg   M 5.09   2.81  5.39    NA       May 2013.0
## 275   K.elegans        Leesburg   M 5.00   2.42  7.03    NA       May 2013.0
## 276   K.elegans        Leesburg   F 7.44   3.32  8.99    NA       May 2013.0
## 277   K.elegans        Leesburg   M 5.70   2.90  7.74    NA       May 2013.0
## 278   K.elegans        Leesburg   M 5.52   2.97  8.38    NA       May 2013.0
## 279   K.elegans        Leesburg   F 7.41   3.36  9.00    NA       May 2013.0
## 280   K.elegans        Leesburg   M 5.80   3.21  8.52    NA       May 2013.0
## 281   K.elegans        Leesburg   F 6.20   3.14  5.60    NA       May 2013.0
## 282   K.elegans        Leesburg   M 6.95   3.19  8.37    NA       May 2013.0
## 283   K.elegans        Leesburg   F 7.52   3.43  8.91    NA       May 2013.0
## 284   K.elegans        Leesburg   F 5.90   2.77  5.22    NA       May 2013.0
## 285   K.elegans        Leesburg   F 5.54   2.72  6.84    NA       May 2013.0
## 286  C.corindum  Plantation_Key   M 6.31   3.13  8.50    NA       May 2013.0
## 287  C.corindum  Plantation_Key   F 6.99   3.13  5.39    NA       May 2013.0
## 288  C.corindum  Plantation_Key   M 6.03   3.10  8.85    NA       May 2013.0
## 289  C.corindum  Plantation_Key   M 5.84   3.10  8.70    NA       May 2013.0
## 290  C.corindum  Plantation_Key   M 6.41   3.15  8.88    NA       May 2013.0
## 291  C.corindum  Plantation_Key   F 8.36   3.14  8.97    NA       May 2013.0
## 292  C.corindum  Plantation_Key   M 5.19   2.98  8.59    NA       May 2013.0
## 293  C.corindum  Plantation_Key   M 5.59   2.60  4.58    NA       May 2013.0
## 294  C.corindum  Plantation_Key   M 5.82   2.85  7.65    NA       May 2013.0
## 295  C.corindum  Plantation_Key   F 7.02   3.07  6.45    NA       May 2013.0
## 296  C.corindum  Plantation_Key   F 6.56   2.83  4.45    NA       May 2013.0
## 297  C.corindum  Plantation_Key   M 5.31   2.60  4.22    NA       May 2013.0
## 298  C.corindum  Plantation_Key   M 5.72   2.69  6.65    NA       May 2013.0
## 299  C.corindum  Plantation_Key   F 6.68   2.99  5.16    NA       May 2013.0
## 300  C.corindum  Plantation_Key   M 6.55   3.24  8.89    NA       May 2013.0
## 301  C.corindum  Plantation_Key   M 5.81   2.70  7.17    NA       May 2013.0
## 302  C.corindum  Plantation_Key   M 5.53   2.83  6.99    NA       May 2013.0
## 303  C.corindum  Plantation_Key   M 5.63   2.94  7.60    NA       May 2013.0
## 304  C.corindum  Plantation_Key   M 5.90   2.73  5.33    NA       May 2013.0
## 305  C.corindum  Plantation_Key   F 8.64   3.72 10.00    NA       May 2013.0
## 306  C.corindum  Plantation_Key   M 5.95   3.07  8.13    NA       May 2013.0
## 307  C.corindum  Plantation_Key   F 6.60   2.89  5.29    NA       May 2013.0
## 308  C.corindum  Plantation_Key   F 7.03   3.44  5.56    NA       May 2013.0
## 309  C.corindum  Plantation_Key   F 8.08   3.31  8.68    NA       May 2013.0
## 310  C.corindum  Plantation_Key   F 7.87   3.29  6.48    NA       May 2013.0
## 311  C.corindum  Plantation_Key   M 5.53   2.63  5.50    NA       May 2013.0
## 312  C.corindum  Plantation_Key   F 7.15   3.20  6.29    NA       May 2013.0
## 313  C.corindum  Plantation_Key   M 5.80   2.85  7.19    NA       May 2013.0
## 314  C.corindum  Plantation_Key   M 6.31   3.23  8.61    NA       May 2013.0
## 315  C.corindum  Plantation_Key   M 6.17   3.21  8.01    NA       May 2013.0
## 316  C.corindum  Plantation_Key   F 7.64   3.46  8.75    NA       May 2013.0
## 317  C.corindum  Plantation_Key   F 7.86   3.31  6.52    NA       May 2013.0
## 318  C.corindum  Plantation_Key   F 7.56   3.11  6.08    NA       May 2013.0
## 319  C.corindum  Plantation_Key   M 6.13   2.97  8.26    NA       May 2013.0
## 320  C.corindum  Plantation_Key   F 7.55   3.35  5.47    NA       May 2013.0
## 321  C.corindum  Plantation_Key   M 6.38   2.92  7.74    NA       May 2013.0
## 322   K.elegans        Ft.Myers   M 5.61   3.27  8.21    NA  December 2013.6
## 323   K.elegans        Ft.Myers   F 7.89   3.85 10.60    NA  December 2013.6
## 324   K.elegans        Ft.Myers   F 7.00   3.93  9.80    NA  December 2013.6
## 325   K.elegans        Ft.Myers   F 6.97   3.71  9.66    NA  December 2013.6
## 326   K.elegans        Ft.Myers   F 7.78   3.68 10.01    NA  December 2013.6
## 327   K.elegans        Ft.Myers   M 5.74   3.19  8.29    NA  December 2013.6
## 328   K.elegans        Ft.Myers   F 7.99   3.75  9.52    NA  December 2013.6
## 329   K.elegans        Ft.Myers   F 8.44   3.68  9.83    NA  December 2013.6
## 330   K.elegans        Ft.Myers   F 7.35   3.82 10.34    NA  December 2013.6
## 331   K.elegans        Ft.Myers   M 5.55   3.31  8.94    NA  December 2013.6
## 332   K.elegans        Ft.Myers   F 6.73   3.48  9.70    NA  December 2013.6
## 333   K.elegans        Ft.Myers   F 6.23   3.98  7.21    NA  December 2013.6
## 334   K.elegans        Ft.Myers   M 5.57   3.51  9.16    NA  December 2013.6
## 335   K.elegans        Ft.Myers   F 7.38   3.48  9.51    NA  December 2013.6
## 336   K.elegans        Ft.Myers   F 7.74   3.59  9.71    NA  December 2013.6
## 337   K.elegans        Ft.Myers   M 5.38   3.25  8.87    NA  December 2013.6
## 338   K.elegans        Ft.Myers   M 4.96   3.08  7.92    NA  December 2013.6
## 339   K.elegans        Ft.Myers   F 7.57   3.49  9.29    NA  December 2013.6
## 340   K.elegans        Ft.Myers   F 7.94   3.92  9.82    NA  December 2013.6
## 341   K.elegans        Ft.Myers   F 6.85   3.76 10.04    NA  December 2013.6
## 342   K.elegans        Ft.Myers   F 6.57   3.71  9.58    NA  December 2013.6
## 343   K.elegans        Ft.Myers   F 7.70   3.74 10.23    NA  December 2013.6
## 344   K.elegans        Ft.Myers   F 6.43   4.11  9.85    NA  December 2013.6
## 345   K.elegans        Ft.Myers   F 7.54   3.61 10.24    NA  December 2013.6
## 346   K.elegans        Ft.Myers   M 5.48   2.93  8.49    NA  December 2013.6
## 347   K.elegans        Ft.Myers   F 8.20   3.51  8.76    NA  December 2013.6
## 348   K.elegans        Ft.Myers   F 7.45   3.58  9.17    NA  December 2013.6
## 349   K.elegans        Ft.Myers   F 6.96   3.61  9.94    NA  December 2013.6
## 350   K.elegans        Ft.Myers   F 7.73   3.77 10.19    NA  December 2013.6
## 351   K.elegans        Ft.Myers   F 6.77   3.53 10.18    NA  December 2013.6
## 352   K.elegans        Ft.Myers   F 7.17   3.46  9.29    NA  December 2013.6
## 353   K.elegans        Ft.Myers   F 8.09   3.50  9.63    NA  December 2013.6
## 354   K.elegans        Ft.Myers   F 8.13   3.69  9.94    NA  December 2013.6
## 355   K.elegans        Ft.Myers   F 7.98   3.85  9.81    NA  December 2013.6
## 356   K.elegans        Ft.Myers   M 5.59   3.13  8.60    NA  December 2013.6
## 357   K.elegans        Ft.Myers   F 6.35   3.47  9.51    NA  December 2013.6
## 358   K.elegans        Ft.Myers   M 5.96   2.99  8.44    NA  December 2013.6
## 359   K.elegans        Ft.Myers   F 7.43   3.58  9.26    NA  December 2013.6
## 360   K.elegans        Ft.Myers   M 5.66   2.88  8.40    NA  December 2013.6
## 361   K.elegans        Ft.Myers   F 7.76   3.62  9.42    NA  December 2013.6
## 362   K.elegans        Ft.Myers   F 7.77   3.73  9.87    NA  December 2013.6
## 363   K.elegans        Ft.Myers   F 7.18   3.52  9.96    NA  December 2013.6
## 364   K.elegans        Ft.Myers   F 6.76   3.68  9.85    NA  December 2013.6
## 365   K.elegans        Ft.Myers   F 7.51   3.86 10.25    NA  December 2013.6
## 366   K.elegans        Ft.Myers   M 5.95   3.14  8.55    NA  December 2013.6
## 367   K.elegans        Ft.Myers   F 8.61   3.92 10.35    NA  December 2013.6
## 368   K.elegans        Ft.Myers   M 5.72   2.97  8.51    NA  December 2013.6
## 369   K.elegans        Ft.Myers   F 8.31   3.62  9.70    NA  December 2013.6
## 370   K.elegans        Ft.Myers   M 5.30   2.82  8.16    NA  December 2013.6
## 371   K.elegans        Ft.Myers   M 5.94   2.94  8.67    NA  December 2013.6
## 372   K.elegans        Ft.Myers   M 5.31   3.29  8.87    NA  December 2013.6
## 373   K.elegans        Ft.Myers   F 7.72   3.55 10.09    NA  December 2013.6
## 374   K.elegans        Ft.Myers   F 7.14   3.53  9.39    NA  December 2013.6
## 375   K.elegans        Ft.Myers   F 8.35   3.61  9.66    NA  December 2013.6
## 376   K.elegans        Ft.Myers   M 5.91   3.20  8.87    NA  December 2013.6
## 377   K.elegans        Ft.Myers   F 7.14   3.69 10.11    NA  December 2013.6
## 378   K.elegans        Ft.Myers   F 7.51   3.63 10.53    NA  December 2013.6
## 379   K.elegans        Ft.Myers   F 7.98   3.58  9.69    NA  December 2013.6
## 380   K.elegans        Ft.Myers   M 5.89   3.14  8.36    NA  December 2013.6
## 381   K.elegans        Ft.Myers   F 8.11   3.76 10.40    NA  December 2013.6
## 382   K.elegans        Ft.Myers   M 5.77   3.04  8.16    NA  December 2013.6
## 383   K.elegans        Ft.Myers   F 7.59   3.63 10.28    NA  December 2013.6
## 384   K.elegans        Ft.Myers   F 8.46   3.87 10.21    NA  December 2013.6
## 385   K.elegans        Ft.Myers   F 8.05   3.44  9.83    NA  December 2013.6
## 386   K.elegans        Ft.Myers   F 7.19   3.67  9.74    NA  December 2013.6
## 387   K.elegans        Ft.Myers   F 7.09   3.67  9.87    NA  December 2013.6
## 388   K.elegans        Ft.Myers   M 5.19   2.74  7.71    NA  December 2013.6
## 389   K.elegans        Ft.Myers   M 5.73   3.12  8.30    NA  December 2013.6
## 390   K.elegans        Ft.Myers   F 7.07   3.72 10.43    NA  December 2013.6
## 391   K.elegans        Ft.Myers   F 7.15   3.66  9.96    NA  December 2013.6
## 392   K.elegans        Ft.Myers   F 7.46   3.53  9.28    NA  December 2013.6
## 393   K.elegans        Ft.Myers   F 8.05   3.81 10.15    NA  December 2013.6
## 394   K.elegans        Ft.Myers   F 7.21   3.78 10.17    NA  December 2013.6
## 395   K.elegans        Ft.Myers   F 7.19   3.25  9.50    NA  December 2013.6
## 396   K.elegans        Ft.Myers   F 6.89   3.75  9.57    NA  December 2013.6
## 397   K.elegans     Gainesville   M 5.89   3.05  8.32    NA  December 2013.6
## 398   K.elegans     Gainesville   M 5.66   3.22  8.79    NA  December 2013.6
## 399   K.elegans     Gainesville   F 8.38   3.59  9.78    NA  December 2013.6
## 400   K.elegans     Gainesville   M 5.62   3.20  8.32    NA  December 2013.6
## 401   K.elegans     Gainesville   M 5.64   2.96  8.22    NA  December 2013.6
## 402   K.elegans     Gainesville   M 5.70   3.12  8.30    NA  December 2013.6
## 403   K.elegans     Gainesville   M 5.38   3.08  7.91    NA  December 2013.6
## 404   K.elegans     Gainesville   M 5.74   2.73  7.48    NA  December 2013.6
## 405   K.elegans     Gainesville   M 6.46   3.10  8.13    NA  December 2013.6
## 406   K.elegans     Gainesville   M 6.69   3.02  8.44    NA  December 2013.6
## 407   K.elegans     Gainesville   F 7.84   3.45  9.33    NA  December 2013.6
## 408   K.elegans     Gainesville   M 5.60   2.96  8.64    NA  December 2013.6
## 409   K.elegans     Gainesville   F 8.14   3.42  9.08    NA  December 2013.6
## 410   K.elegans     Gainesville   F 7.46   3.38  9.13    NA  December 2013.6
## 411  C.corindum       Homestead   F 6.75   3.33  6.07    NA  December 2013.6
## 412  C.corindum       Homestead   F 6.76   3.40  6.22    NA  December 2013.6
## 413  C.corindum       Homestead   F 7.10   3.75  9.06    NA  December 2013.6
## 414  C.corindum       Homestead   F 6.82   3.63  8.91    NA  December 2013.6
## 415  C.corindum       Homestead   M 5.13   2.84  5.64    NA  December 2013.6
## 416  C.corindum       Homestead   F 6.42   3.22  5.74    NA  December 2013.6
## 417  C.corindum       Homestead   M 5.34   3.24  9.26    NA  December 2013.6
## 418  C.corindum       Homestead   F 7.14   3.63  9.23    NA  December 2013.6
## 419  C.corindum       Homestead   F 6.74   3.36  5.53    NA  December 2013.6
## 420  C.corindum       Homestead   F 6.73   3.84  9.56    NA  December 2013.6
## 421  C.corindum       Homestead   F 6.61   3.64  7.79    NA  December 2013.6
## 422  C.corindum       Homestead   M 5.28   3.23  7.83    NA  December 2013.6
## 423  C.corindum       Homestead   F 7.11   3.35  6.58    NA  December 2013.6
## 424  C.corindum       Homestead   F 6.25   3.32  5.41    NA  December 2013.6
## 425  C.corindum       Homestead   M 5.99   3.21  8.94    NA  December 2013.6
## 426  C.corindum       Homestead   F 6.49   3.59  9.37    NA  December 2013.6
## 427  C.corindum       Homestead   F 6.67   3.46  6.01    NA  December 2013.6
## 428  C.corindum       Homestead   M 5.49   2.84  4.83    NA  December 2013.6
## 429  C.corindum       Homestead   F 6.36   3.48  6.22    NA  December 2013.6
## 430  C.corindum       Homestead   M 5.56   3.25  8.21    NA  December 2013.6
## 431  C.corindum       Homestead   M 5.33   3.05  8.21    NA  December 2013.6
## 432  C.corindum       Homestead   M 5.49   2.99  8.27    NA  December 2013.6
## 433  C.corindum       Homestead   F 7.96   3.96  9.73    NA  December 2013.6
## 434   K.elegans       Homestead   M 5.49   2.93  7.06    NA  December 2013.6
## 435   K.elegans       Homestead   F 6.23   3.36  5.70    NA  December 2013.6
## 436   K.elegans       Homestead   M 5.24   2.90  7.64    NA  December 2013.6
## 437   K.elegans       Homestead   F 6.59   3.33  6.98    NA  December 2013.6
## 438   K.elegans       Homestead   F 6.44   3.48  7.00    NA  December 2013.6
## 439   K.elegans       Homestead   M 5.79   3.15  8.90    NA  December 2013.6
## 440   K.elegans       Homestead   F 6.92   3.67  8.95    NA  December 2013.6
## 441   K.elegans       Homestead   M 5.72   3.18  8.02    NA  December 2013.6
## 442   K.elegans       Homestead   M 5.47   3.12  8.04    NA  December 2013.6
## 443   K.elegans       Homestead   M 5.82   3.24  7.94    NA  December 2013.6
## 444   K.elegans       Homestead   F 6.20   3.20  6.28    NA  December 2013.6
## 445   K.elegans       Homestead   F 7.45   3.83 10.15    NA  December 2013.6
## 446   K.elegans       Homestead   M 5.67   3.35  9.08    NA  December 2013.6
## 447   K.elegans       Homestead   F 7.28   3.85 10.20    NA  December 2013.6
## 448   K.elegans       Homestead   M 5.12   2.95  5.64    NA  December 2013.6
## 449   K.elegans       Homestead   F 6.58   3.60  7.28    NA  December 2013.6
## 450   K.elegans       Homestead   M 5.88   3.23  8.97    NA  December 2013.6
## 451   K.elegans       Homestead   F 5.98   3.19  5.69    NA  December 2013.6
## 452   K.elegans       Homestead   M 5.34   2.92  5.92    NA  December 2013.6
## 453   K.elegans       Homestead   M 5.66   3.18  8.93    NA  December 2013.6
## 454   K.elegans       Homestead   F 7.35   3.91 10.00    NA  December 2013.6
## 455   K.elegans       Homestead   F 7.18   3.72  8.10    NA  December 2013.6
## 456   K.elegans       Homestead   M 5.17   2.98  7.42    NA  December 2013.6
## 457   K.elegans       Homestead   F 7.28   3.76  9.51    NA  December 2013.6
## 458   K.elegans       Homestead   M 6.21   3.33  5.69    NA  December 2013.6
## 459   K.elegans       Homestead   F 7.45   3.88 10.30    NA  December 2013.6
## 460   K.elegans       Homestead   F 6.86   3.63 10.13    NA  December 2013.6
## 461   K.elegans       Homestead   F 7.16   3.36  8.81    NA  December 2013.6
## 462   K.elegans       Homestead   M 5.92   3.17  8.61    NA  December 2013.6
## 463  C.corindum       Key_Largo   M 6.38   3.07  8.20    NA  December 2013.6
## 464  C.corindum       Key_Largo   F 9.82   3.78  9.86    NA  December 2013.6
## 465  C.corindum       Key_Largo   F 7.17   3.20  5.04    NA  December 2013.6
## 466  C.corindum       Key_Largo   M 5.96   2.80  7.59    NA  December 2013.6
## 467  C.corindum       Key_Largo   F 8.94   3.96 10.23    NA  December 2013.6
## 468  C.corindum       Key_Largo   F 8.06   3.24  8.29    NA  December 2013.6
## 469  C.corindum       Key_Largo   M 6.60   3.00  8.28    NA  December 2013.6
## 470  C.corindum       Key_Largo   F 6.77   2.84  4.96    NA  December 2013.6
## 471  C.corindum       Key_Largo   F 8.97   3.83  9.86    NA  December 2013.6
## 472  C.corindum       Key_Largo   M 5.93   2.80  4.80    NA  December 2013.6
## 473  C.corindum       Key_Largo   M 6.26   3.03  8.02    NA  December 2013.6
## 474  C.corindum       Key_Largo   F 9.44   3.74  9.88    NA  December 2013.6
## 475  C.corindum       Key_Largo   M 6.07   3.04  7.34    NA  December 2013.6
## 476  C.corindum       Key_Largo   M 6.56   3.01  7.90    NA  December 2013.6
## 477  C.corindum       Key_Largo   M 6.15   3.15  8.26    NA  December 2013.6
## 478  C.corindum       Key_Largo   F 7.40   3.05  5.15    NA  December 2013.6
## 479  C.corindum       Key_Largo   M 6.02   2.81  5.32    NA  December 2013.6
## 480  C.corindum       Key_Largo   F 9.06   3.55  8.90    NA  December 2013.6
## 481  C.corindum       Key_Largo   M 6.56   3.21  7.89    NA  December 2013.6
## 482  C.corindum       Key_Largo   M 6.81   3.31  8.51    NA  December 2013.6
## 483  C.corindum       Key_Largo   F 7.90   3.25  8.78    NA  December 2013.6
## 484  C.corindum       Key_Largo   M 6.56   2.99  8.11    NA  December 2013.6
## 485  C.corindum       Key_Largo   F 7.92   3.36  8.71    NA  December 2013.6
## 486  C.corindum       Key_Largo   M 5.53   3.29  8.64    NA  December 2013.6
## 487  C.corindum       Key_Largo   F 7.20   3.90 10.34    NA  December 2013.6
## 488  C.corindum       Key_Largo   F 7.75   3.63  9.98    NA  December 2013.6
## 489  C.corindum       Key_Largo   F 7.66   3.39  9.49    NA  December 2013.6
## 490  C.corindum       Key_Largo   M 5.65   3.13  8.94    NA  December 2013.6
## 491  C.corindum       Key_Largo   F 8.15   3.73  9.46    NA  December 2013.6
## 492  C.corindum       Key_Largo   F 7.61   3.39  8.89    NA  December 2013.6
## 493  C.corindum       Key_Largo   M 5.90   2.76  4.51    NA  December 2013.6
## 494  C.corindum       Key_Largo   F 7.86   3.78  9.82    NA  December 2013.6
## 495   K.elegans      Lake_Wales   F 7.24   3.15  8.80    NA  December 2013.6
## 496   K.elegans      Lake_Wales   M 6.18   2.92  8.41    NA  December 2013.6
## 497   K.elegans      Lake_Wales   F 7.48   3.21  8.92    NA  December 2013.6
## 498   K.elegans      Lake_Wales   F 7.34   3.30  8.97    NA  December 2013.6
## 499   K.elegans      Lake_Wales   F 7.86   3.59  9.21    NA  December 2013.6
## 500   K.elegans      Lake_Wales   M 5.39   2.96  8.09    NA  December 2013.6
## 501   K.elegans      Lake_Wales   F 8.37   3.52  9.95    NA  December 2013.6
## 502   K.elegans      Lake_Wales   M 5.58   2.99  7.85    NA  December 2013.6
## 503   K.elegans      Lake_Wales   F 7.21   2.99  7.93    NA  December 2013.6
## 504   K.elegans      Lake_Wales   F 7.99   3.54  9.23    NA  December 2013.6
## 505   K.elegans      Lake_Wales   M 5.68   3.06  7.84    NA  December 2013.6
## 506   K.elegans      Lake_Wales   F 6.90   3.25  8.91    NA  December 2013.6
## 507   K.elegans      Lake_Wales   M 5.88   3.19  8.63    NA  December 2013.6
## 508   K.elegans      Lake_Wales   F 7.48   3.42  9.94    NA  December 2013.6
## 509   K.elegans      Lake_Wales   M 5.58   2.71  8.02    NA  December 2013.6
## 510   K.elegans      Lake_Wales   M 6.02   3.17  8.11    NA  December 2013.6
## 511   K.elegans      Lake_Wales   M 5.74   3.16  8.17    NA  December 2013.6
## 512   K.elegans      Lake_Wales   F 7.25   3.64  9.70    NA  December 2013.6
## 513   K.elegans      Lake_Wales   M 5.80   2.92  8.24    NA  December 2013.6
## 514   K.elegans      Lake_Wales   M 5.72   3.11  8.58    NA  December 2013.6
## 515   K.elegans      Lake_Wales   M 5.83   2.87  8.31    NA  December 2013.6
## 516   K.elegans      Lake_Wales   F 8.16   3.65 10.65    NA  December 2013.6
## 517   K.elegans      Lake_Wales   F 8.38   3.68 10.06    NA  December 2013.6
## 518   K.elegans      Lake_Wales   F 7.14   3.43  9.42    NA  December 2013.6
## 519   K.elegans      Lake_Wales   M 5.74   3.12  8.29    NA  December 2013.6
## 520   K.elegans      Lake_Wales   M 5.75   2.97  7.66    NA  December 2013.6
## 521   K.elegans      Lake_Wales   M 5.65   2.94  8.44    NA  December 2013.6
## 522   K.elegans      Lake_Wales   M 5.79   3.07  8.51    NA  December 2013.6
## 523   K.elegans      Lake_Wales   M 5.29   3.09  7.97    NA  December 2013.6
## 524   K.elegans      Lake_Wales   F 7.43   3.87 10.44    NA  December 2013.6
## 525   K.elegans      Lake_Wales   M 5.77   3.06  8.37    NA  December 2013.6
## 526   K.elegans      Lake_Wales   M 5.27   2.72  7.93    NA  December 2013.6
## 527   K.elegans      Lake_Wales   F 6.91   3.66  9.75    NA  December 2013.6
## 528   K.elegans      Lake_Wales   M 5.27   2.84  7.88    NA  December 2013.6
## 529   K.elegans      Lake_Wales   M 5.70   2.99  8.73    NA  December 2013.6
## 530   K.elegans      Lake_Wales   M 5.57   2.96  8.59    NA  December 2013.6
## 531   K.elegans      Lake_Wales   M 5.51   2.87  7.90    NA  December 2013.6
## 532   K.elegans      Lake_Wales   M 5.46   3.04  8.30    NA  December 2013.6
## 533   K.elegans      Lake_Wales   F 7.24   3.36  9.19    NA  December 2013.6
## 534   K.elegans      Lake_Wales   M 5.63   2.74  7.77    NA  December 2013.6
## 535   K.elegans      Lake_Wales   F 7.61   3.43  9.11    NA  December 2013.6
## 536   K.elegans      Lake_Wales   M 6.49   3.24  8.82    NA  December 2013.6
## 537   K.elegans      Lake_Wales   F 8.53   3.48  8.92    NA  December 2013.6
## 538   K.elegans      Lake_Wales   F 7.97   3.34  8.98    NA  December 2013.6
## 539   K.elegans      Lake_Wales   F 7.38   3.35  8.50    NA  December 2013.6
## 540   K.elegans      Lake_Wales   M 5.53   3.08  8.03    NA  December 2013.6
## 541   K.elegans      Lake_Wales   M 5.86   3.06  7.78    NA  December 2013.6
## 542   K.elegans      Lake_Wales   M 5.44   2.79  6.72    NA  December 2013.6
## 543   K.elegans      Lake_Wales   F 6.86   3.19  8.83    NA  December 2013.6
## 544   K.elegans      Lake_Wales   M 6.13   2.87  8.16    NA  December 2013.6
## 545   K.elegans      Lake_Wales   F 7.36   3.27  8.74    NA  December 2013.6
## 546   K.elegans      Lake_Wales   M 5.49   2.75  7.60    NA  December 2013.6
## 547   K.elegans      Lake_Wales   F 7.45   2.37  7.86    NA  December 2013.6
## 548   K.elegans      Lake_Wales   F 7.28   3.54  8.51    NA  December 2013.6
## 549   K.elegans      Lake_Wales   F 8.05   3.82  9.27    NA  December 2013.6
## 550   K.elegans      Lake_Wales   M 5.23   2.92  7.47    NA  December 2013.6
## 551   K.elegans      Lake_Wales   M 5.66   3.07  7.64    NA  December 2013.6
## 552   K.elegans      Lake_Wales   F 7.51   3.56  9.20    NA  December 2013.6
## 553   K.elegans      Lake_Wales   M 5.63   2.80  7.92    NA  December 2013.6
## 554   K.elegans      Lake_Wales   M 5.64   2.91  7.95    NA  December 2013.6
## 555   K.elegans      Lake_Wales   M 5.78   3.27  8.64    NA  December 2013.6
## 556   K.elegans      Lake_Wales   F 7.36   2.88  8.40    NA  December 2013.6
## 557   K.elegans      Lake_Wales   F 7.43   3.21  7.62    NA  December 2013.6
## 558   K.elegans      Lake_Wales   M 5.90   3.10  7.85    NA  December 2013.6
## 559   K.elegans      Lake_Wales   M 5.63   3.24  8.97    NA  December 2013.6
## 560   K.elegans      Lake_Wales   F 8.67   3.61  9.20    NA  December 2013.6
## 561   K.elegans      Lake_Wales   M 5.56   2.82  8.03    NA  December 2013.6
## 562   K.elegans      Lake_Wales   M 5.91   3.05  8.13    NA  December 2013.6
## 563   K.elegans      Lake_Wales   M 6.09   3.37  8.08    NA  December 2013.6
## 564   K.elegans      Lake_Wales   M 5.35   2.86  7.53    NA  December 2013.6
## 565   K.elegans      Lake_Wales   M 6.20   3.27  8.40    NA  December 2013.6
## 566   K.elegans      Lake_Wales   M 5.55   3.21  8.64    NA  December 2013.6
## 567   K.elegans      Lake_Wales   M 5.73   2.85  7.11    NA  December 2013.6
## 568   K.elegans      Lake_Wales   M 5.43   2.94  8.49    NA  December 2013.6
## 569   K.elegans      Lake_Wales   M 5.53   3.03  7.77    NA  December 2013.6
## 570   K.elegans      Lake_Wales   F 8.30   3.61  8.95    NA  December 2013.6
## 571   K.elegans      Lake_Wales   M 5.79   2.81  7.58    NA  December 2013.6
## 572   K.elegans      Lake_Wales   M 5.62   2.90  7.19    NA  December 2013.6
## 573   K.elegans      Lake_Wales   F 8.12   3.45  9.65    NA  December 2013.6
## 574   K.elegans      Lake_Wales   M 6.04   3.15  8.74    NA  December 2013.6
## 575   K.elegans      Lake_Wales   M 5.68   2.95  7.50    NA  December 2013.6
## 576   K.elegans      Lake_Wales   F 7.09   3.51  8.53    NA  December 2013.6
## 577   K.elegans      Lake_Wales   M 5.96   3.08  8.12    NA  December 2013.6
## 578   K.elegans      Lake_Wales   M 5.98   2.94  7.66    NA  December 2013.6
## 579   K.elegans        Leesburg   F 7.34   3.42  8.59    NA  December 2013.6
## 580   K.elegans        Leesburg   F 8.19   3.66  8.95    NA  December 2013.6
## 581   K.elegans        Leesburg   F 7.05   3.44  8.24    NA  December 2013.6
## 582   K.elegans        Leesburg   F 7.74   3.55  9.05    NA  December 2013.6
## 583   K.elegans        Leesburg   M 5.34   3.11  8.59    NA  December 2013.6
## 584   K.elegans        Leesburg   M 5.71   2.97  7.84    NA  December 2013.6
## 585   K.elegans        Leesburg   F 7.67   3.14  8.01    NA  December 2013.6
## 586   K.elegans        Leesburg   F 7.79   3.66  8.90    NA  December 2013.6
## 587   K.elegans        Leesburg   M 5.75   3.02  8.08    NA  December 2013.6
## 588   K.elegans        Leesburg   M 6.16   3.28  7.89    NA  December 2013.6
## 589   K.elegans        Leesburg   F 6.82   3.49  9.02    NA  December 2013.6
## 590   K.elegans        Leesburg   M 6.06   3.34  8.17    NA  December 2013.6
## 591   K.elegans        Leesburg   F 6.97   3.49  9.94    NA  December 2013.6
## 592   K.elegans        Leesburg   F 7.40   3.35  9.25    NA  December 2013.6
## 593   K.elegans        Leesburg   M 5.30   3.32  8.84    NA  December 2013.6
## 594   K.elegans        Leesburg   M 5.81   2.66  8.19    NA  December 2013.6
## 595   K.elegans        Leesburg   F 7.94   3.45  8.26    NA  December 2013.6
## 596   K.elegans        Leesburg   F 7.46   3.12  9.10    NA  December 2013.6
## 597   K.elegans        Leesburg   F 7.87   3.64  9.72    NA  December 2013.6
## 598   K.elegans        Leesburg   F 7.72   3.35  7.99    NA  December 2013.6
## 599   K.elegans        Leesburg   F 8.28   3.88  9.88    NA  December 2013.6
## 600   K.elegans        Leesburg   F 8.06   3.55  8.44    NA  December 2013.6
## 601   K.elegans        Leesburg   M 6.27   2.95  8.89    NA  December 2013.6
## 602   K.elegans        Leesburg   F 7.67   3.62  8.78    NA  December 2013.6
## 603   K.elegans        Leesburg   F 8.42   3.54  8.76    NA  December 2013.6
## 604   K.elegans        Leesburg   M 6.05   3.17  8.05    NA  December 2013.6
## 605   K.elegans        Leesburg   M 6.01   3.11  7.97    NA  December 2013.6
## 606   K.elegans        Leesburg   M 5.49   3.02  7.67    NA  December 2013.6
## 607   K.elegans        Leesburg   M 5.69   3.14  8.81    NA  December 2013.6
## 608   K.elegans        Leesburg   F 7.64   3.57  9.38    NA  December 2013.6
## 609   K.elegans        Leesburg   F 6.49   3.21  7.94    NA  December 2013.6
## 610   K.elegans        Leesburg   M 5.78   3.08  8.45    NA  December 2013.6
## 611   K.elegans        Leesburg   F 7.65   3.51  9.34    NA  December 2013.6
## 612   K.elegans        Leesburg   F 8.17   3.45  8.39    NA  December 2013.6
## 613   K.elegans        Leesburg   F 7.56   2.98  8.72    NA  December 2013.6
## 614   K.elegans        Leesburg   F 7.29   3.57 10.10    NA  December 2013.6
## 615   K.elegans        Leesburg   F 6.78   3.49  8.33    NA  December 2013.6
## 616   K.elegans        Leesburg   M 5.76   3.06  8.10    NA  December 2013.6
## 617   K.elegans        Leesburg   M 5.84   2.82  7.75    NA  December 2013.6
## 618   K.elegans        Leesburg   M 4.99   2.89  7.35    NA  December 2013.6
## 619   K.elegans        Leesburg   F 7.95   3.43  8.86    NA  December 2013.6
## 620   K.elegans        Leesburg   F 8.01   3.27  9.54    NA  December 2013.6
## 621   K.elegans        Leesburg   M 5.32   2.89  7.60    NA  December 2013.6
## 622   K.elegans        Leesburg   M 6.09   3.00  8.61    NA  December 2013.6
## 623   K.elegans        Leesburg   M 5.89   3.32  8.07    NA  December 2013.6
## 624   K.elegans        Leesburg   M 5.82   3.11  8.03    NA  December 2013.6
## 625   K.elegans        Leesburg   M 5.57   2.87  7.12    NA  December 2013.6
## 626   K.elegans        Leesburg   M 6.10   2.86  8.28    NA  December 2013.6
## 627   K.elegans        Leesburg   F 5.94   3.48  7.44    NA  December 2013.6
## 628   K.elegans        Leesburg   F 7.48   3.36  8.32    NA  December 2013.6
## 629   K.elegans        Leesburg   F 7.89   3.27  8.19    NA  December 2013.6
## 630   K.elegans        Leesburg   M 5.65   3.34  8.62    NA  December 2013.6
## 631   K.elegans        Leesburg   M 5.80   2.91  8.83    NA  December 2013.6
## 632   K.elegans        Leesburg   F 7.96   3.47  8.72    NA  December 2013.6
## 633   K.elegans        Leesburg   M 5.85   2.96  8.32    NA  December 2013.6
## 634   K.elegans        Leesburg   M 5.68   3.05  8.05    NA  December 2013.6
## 635   K.elegans        Leesburg   F 7.56   3.33  9.16    NA  December 2013.6
## 636   K.elegans        Leesburg   M 5.91   3.17  8.65    NA  December 2013.6
## 637   K.elegans        Leesburg   M 5.43   3.08  8.00    NA  December 2013.6
## 638   K.elegans        Leesburg   M 5.74   3.03  8.12    NA  December 2013.6
## 639   K.elegans        Leesburg   F 7.78   3.21  9.21    NA  December 2013.6
## 640   K.elegans        Leesburg   M 5.55   2.88  7.67    NA  December 2013.6
## 641   K.elegans        Leesburg   F 8.19   3.64  9.13    NA  December 2013.6
## 642   K.elegans        Leesburg   M 6.04   2.89  8.07    NA  December 2013.6
## 643   K.elegans        Leesburg   M 5.08   2.98  7.52    NA  December 2013.6
## 644   K.elegans        Leesburg   M 4.94   2.79  7.43    NA  December 2013.6
## 645   K.elegans        Leesburg   M 5.53   3.02  7.82    NA  December 2013.6
## 646   K.elegans        Leesburg   F 7.37   2.98  8.66    NA  December 2013.6
## 647   K.elegans        Leesburg   M 5.97   2.85  7.75    NA  December 2013.6
## 648   K.elegans        Leesburg   M 6.31   2.99  7.62    NA  December 2013.6
## 649   K.elegans        Leesburg   M 5.67   2.86  7.73    NA  December 2013.6
## 650   K.elegans        Leesburg   F 8.04   3.52  8.73    NA  December 2013.6
## 651   K.elegans        Leesburg   F 7.31   3.30  7.82    NA  December 2013.6
## 652   K.elegans        Leesburg   F 6.91   3.37  9.80    NA  December 2013.6
## 653   K.elegans        Leesburg   M 5.66   2.95  7.83    NA  December 2013.6
## 654   K.elegans        Leesburg   M 5.77   3.11  7.67    NA  December 2013.6
## 655   K.elegans        Leesburg   M 5.74   3.23  7.99    NA  December 2013.6
## 656   K.elegans        Leesburg   M 5.68   2.97  7.95    NA  December 2013.6
## 657   K.elegans        Leesburg   M 5.63   2.82  8.00    NA  December 2013.6
## 658   K.elegans        Leesburg   M 5.60   3.09  8.07    NA  December 2013.6
## 659   K.elegans        Leesburg   M 5.74   2.81  7.42    NA  December 2013.6
## 660   K.elegans        Leesburg   M 5.61   2.65  7.53    NA  December 2013.6
## 661   K.elegans        Leesburg   F 7.77   3.13  8.82    NA  December 2013.6
## 662   K.elegans        Leesburg   M 6.36   3.10  7.44    NA  December 2013.6
## 663   K.elegans        Leesburg   F 7.45   3.34  8.61    NA  December 2013.6
## 664   K.elegans        Leesburg   F 7.63   3.58  9.46    NA  December 2013.6
## 665   K.elegans        Leesburg   M 5.33   2.34  4.59    NA  December 2013.6
## 666   K.elegans        Leesburg   M 6.21   2.83  7.22    NA  December 2013.6
## 667   K.elegans        Leesburg   F 7.33   3.75  9.43    NA  December 2013.6
## 668   K.elegans        Leesburg   M 5.68   3.13  8.52    NA  December 2013.6
## 669   K.elegans        Leesburg   M 5.72   2.85  7.53    NA  December 2013.6
## 670  C.corindum  Plantation_Key   M 6.40   3.23  8.29    NA  December 2013.6
## 671  C.corindum  Plantation_Key   F 7.13   3.24  8.68    NA  December 2013.6
## 672  C.corindum  Plantation_Key   F 7.23   3.09  8.38    NA  December 2013.6
## 673  C.corindum  Plantation_Key   M 5.50   2.86  7.84    NA  December 2013.6
## 674  C.corindum  Plantation_Key   M 6.22   2.94  8.46    NA  December 2013.6
## 675  C.corindum  Plantation_Key   F 8.87   3.87  9.81    NA  December 2013.6
## 676  C.corindum  Plantation_Key   M 6.00   3.03  8.16    NA  December 2013.6
## 677  C.corindum  Plantation_Key   F 7.77   3.45  9.76    NA  December 2013.6
## 678  C.corindum  Plantation_Key   F 8.28   3.51  9.19    NA  December 2013.6
## 679  C.corindum  Plantation_Key   M 5.74   2.70  5.45    NA  December 2013.6
## 680  C.corindum  Plantation_Key   F 6.64   3.05  8.28    NA  December 2013.6
## 681  C.corindum  Plantation_Key   F 8.06   3.41  9.03    NA  December 2013.6
## 682  C.corindum  Plantation_Key   F 7.52   3.36  8.83    NA  December 2013.6
## 683  C.corindum  Plantation_Key   M 6.03   2.81  8.39    NA  December 2013.6
## 684  C.corindum  Plantation_Key   M 5.94   2.84  8.11    NA  December 2013.6
## 685  C.corindum  Plantation_Key   M 5.80   2.93  7.92    NA  December 2013.6
## 686  C.corindum  Plantation_Key   F 7.65   3.46  9.21    NA  December 2013.6
## 687  C.corindum  Plantation_Key   F 7.31   3.57  9.54    NA  December 2013.6
## 688  C.corindum  Plantation_Key   F 9.35   3.82 10.58    NA  December 2013.6
## 689  C.corindum  Plantation_Key   F 9.29   3.74  9.85    NA  December 2013.6
## 690  C.corindum  Plantation_Key   F 8.28   4.03 11.06    NA  December 2013.6
## 691  C.corindum  Plantation_Key   M 5.42   2.73  7.61    NA  December 2013.6
## 692  C.corindum  Plantation_Key   F 6.68   3.20  8.49    NA  December 2013.6
## 693  C.corindum  Plantation_Key   M 6.09   2.94  8.56    NA  December 2013.6
## 694  C.corindum  Plantation_Key   F 6.76   3.22  8.79    NA  December 2013.6
## 695  C.corindum  Plantation_Key   M 6.12   3.12  8.26    NA  December 2013.6
## 696  C.corindum  Plantation_Key   M 5.34   2.57  4.32    NA  December 2013.6
## 697  C.corindum  Plantation_Key   F 7.97   3.58  9.88    NA  December 2013.6
## 698  C.corindum  Plantation_Key   M 5.74   2.76  8.73    NA  December 2013.6
## 699  C.corindum  Plantation_Key   M 5.98   3.02  8.31    NA  December 2013.6
## 700  C.corindum  Plantation_Key   F 7.29   3.25  8.61    NA  December 2013.6
## 701  C.corindum  Plantation_Key   M 5.67   2.88  5.71    NA  December 2013.6
## 702  C.corindum  Plantation_Key   M 5.96   2.90  8.57    NA  December 2013.6
## 703  C.corindum  Plantation_Key   M 5.39   2.37  4.41    NA  December 2013.6
## 704  C.corindum  Plantation_Key   F 7.45   3.41 10.25    NA  December 2013.6
## 705   K.elegans     Gainesville   F 6.30   3.40  8.82    NA     April 2014.0
## 706   K.elegans     Gainesville   M 5.15   2.78  7.41    NA     April 2014.0
## 707   K.elegans     Gainesville   M 5.38   3.04  8.15    NA     April 2014.0
## 708   K.elegans     Gainesville   M 5.01   3.05  8.09    NA     April 2014.0
## 709   K.elegans     Gainesville   F 6.34   3.24  9.06    NA     April 2014.0
## 710   K.elegans     Gainesville   F 6.68   3.66  9.54    NA     April 2014.0
## 711   K.elegans     Gainesville   F 6.25   3.47  9.65    NA     April 2014.0
## 712   K.elegans     Gainesville   F 6.05   3.62  9.41    NA     April 2014.0
## 713   K.elegans     Gainesville   M 5.66   2.86  8.42    NA     April 2014.0
## 714   K.elegans     Gainesville   F 5.99   3.25  9.21    NA     April 2014.0
## 715   K.elegans     Gainesville   M 5.47   2.88  7.86    NA     April 2014.0
## 716   K.elegans     Gainesville   F 7.42   3.30  9.09    NA     April 2014.0
## 717   K.elegans     Gainesville   F 6.20   3.10  8.26    NA     April 2014.0
## 718   K.elegans     Gainesville   M 5.07   2.99  7.50    NA     April 2014.0
## 719   K.elegans     Gainesville   F 6.69   3.36  9.07    NA     April 2014.0
## 720   K.elegans     Gainesville   F 5.06   2.88  8.07    NA     April 2014.0
## 721   K.elegans     Gainesville   M 5.18   3.03  8.01    NA     April 2014.0
## 722   K.elegans     Gainesville   F 5.69   3.01  7.72    NA     April 2014.0
## 723   K.elegans     Gainesville   F 6.46   3.18  8.39    NA     April 2014.0
## 724   K.elegans     Gainesville   F 7.45   3.53  9.19    NA     April 2014.0
## 725   K.elegans     Gainesville   M 4.64   2.72  7.27    NA     April 2014.0
## 726   K.elegans     Gainesville   M 5.26   2.53  4.63    NA     April 2014.0
## 727   K.elegans     Gainesville   F 6.37   3.35  8.75    NA     April 2014.0
## 728   K.elegans     Gainesville   F 6.26   3.43  8.65    NA     April 2014.0
## 729   K.elegans     Gainesville   M 5.36   2.94  8.22    NA     April 2014.0
## 730   K.elegans     Gainesville   M 5.82   3.14  8.50    NA     April 2014.0
## 731   K.elegans     Gainesville   F 6.60   3.54  9.43    NA     April 2014.0
## 732   K.elegans     Gainesville   F 6.13   3.31  5.98    NA     April 2014.0
## 733   K.elegans     Gainesville   F 6.62   3.42  8.79    NA     April 2014.0
## 734   K.elegans     Gainesville   M 5.73   2.87  8.46    NA     April 2014.0
## 735   K.elegans     Gainesville   F 6.35   3.47  9.15    NA     April 2014.0
## 736   K.elegans     Gainesville   F 6.44   3.34  9.24    NA     April 2014.0
## 737   K.elegans     Gainesville   F 6.88   3.25  9.10    NA     April 2014.0
## 738   K.elegans     Gainesville   M 5.31   2.85  7.68    NA     April 2014.0
## 739   K.elegans     Gainesville   F 6.13   3.10  8.35    NA     April 2014.0
## 740   K.elegans     Gainesville   F 7.04   3.24  8.98    NA     April 2014.0
## 741   K.elegans     Gainesville   F 6.56   2.97  8.06    NA     April 2014.0
## 742   K.elegans     Gainesville   M 5.03   2.96  7.99    NA     April 2014.0
## 743   K.elegans     Gainesville   F 6.33   3.38  8.92    NA     April 2014.0
## 744   K.elegans     Gainesville   M 5.34   2.85  8.18    NA     April 2014.0
## 745   K.elegans     Gainesville   M 5.40   2.89  7.46    NA     April 2014.0
## 746   K.elegans     Gainesville   F 6.66   3.36  9.07    NA     April 2014.0
## 747   K.elegans     Gainesville   M 5.60   3.04  8.27    NA     April 2014.0
## 748   K.elegans     Gainesville   F 6.78   3.09  8.51    NA     April 2014.0
## 749   K.elegans     Gainesville   M 5.25   2.90  7.63    NA     April 2014.0
## 750   K.elegans     Gainesville   F 6.40   3.41  8.83    NA     April 2014.0
## 751   K.elegans     Gainesville   M 5.70   2.99  7.76    NA     April 2014.0
## 752   K.elegans     Gainesville   M 5.31   2.59  7.24    NA     April 2014.0
## 753  C.corindum       Homestead   M 5.25   2.93  8.23    NA     April 2014.0
## 754  C.corindum       Homestead   M 5.74   3.33  8.44    NA     April 2014.0
## 755  C.corindum       Homestead   M 5.63   3.22  8.65    NA     April 2014.0
## 756  C.corindum       Homestead   F 7.43   3.86  9.77    NA     April 2014.0
## 757  C.corindum       Homestead   F 6.64   3.14  9.18    NA     April 2014.0
## 758  C.corindum       Homestead   F 6.63   3.34  5.77    NA     April 2014.0
## 759  C.corindum       Homestead   F 6.73   3.78  6.63    NA     April 2014.0
## 760  C.corindum       Homestead   M 5.42   2.98  4.80    NA     April 2014.0
## 761  C.corindum       Homestead   F 6.95   3.46  7.07    NA     April 2014.0
## 762  C.corindum       Homestead   M 5.53   2.77  4.58    NA     April 2014.0
## 763  C.corindum       Homestead   M 4.89   2.74  4.18    NA     April 2014.0
## 764  C.corindum       Homestead   F 6.84   3.48  6.73    NA     April 2014.0
## 765  C.corindum       Homestead   M 5.35   2.99  7.94    NA     April 2014.0
## 766  C.corindum       Homestead   F 6.76   3.40  8.94    NA     April 2014.0
## 767  C.corindum       Homestead   M 5.84   2.91  8.13    NA     April 2014.0
## 768  C.corindum       Homestead   M 5.67   3.23  8.31    NA     April 2014.0
## 769  C.corindum       Homestead   M 5.01   2.86  4.41    NA     April 2014.0
## 770  C.corindum       Key_Largo   F 7.67   3.61  5.86    NA     April 2014.0
## 771  C.corindum       Key_Largo   F 6.29   2.69  4.30    NA     April 2014.0
## 772  C.corindum       Key_Largo   F 6.45   2.85  5.05    NA     April 2014.0
## 773  C.corindum       Key_Largo   F 8.98   3.71  9.28    NA     April 2014.0
## 774  C.corindum       Key_Largo   F 7.81   3.48  5.45    NA     April 2014.0
## 775  C.corindum       Key_Largo   F 6.83   2.99  5.04    NA     April 2014.0
## 776  C.corindum       Key_Largo   F 7.95   3.37  8.27    NA     April 2014.0
## 777  C.corindum       Key_Largo   F 6.92   3.02  5.70    NA     April 2014.0
## 778  C.corindum       Key_Largo   F 7.35   3.71  9.28    NA     April 2014.0
## 779  C.corindum       Key_Largo   F 6.16   2.96  4.84    NA     April 2014.0
## 780  C.corindum       Key_Largo   F 6.14   2.96  4.23    NA     April 2014.0
## 781  C.corindum       Key_Largo   F 8.75   4.11 10.04    NA     April 2014.0
## 782  C.corindum       Key_Largo   F 6.36   3.20  4.88    NA     April 2014.0
## 783  C.corindum       Key_Largo   F 8.63   3.66  9.07    NA     April 2014.0
## 784  C.corindum       Key_Largo   F 7.68   3.46  8.56    NA     April 2014.0
## 785  C.corindum       Key_Largo   F 6.80   3.15  4.86    NA     April 2014.0
## 786  C.corindum       Key_Largo   F 5.75   2.83  4.24    NA     April 2014.0
## 787  C.corindum       Key_Largo   F 5.54   2.66  3.78    NA     April 2014.0
## 788  C.corindum       Key_Largo   F 7.88   3.40  8.68    NA     April 2014.0
## 789  C.corindum       Key_Largo   F 8.68   3.88 10.08    NA     April 2014.0
## 790  C.corindum       Key_Largo   F 6.30   2.96  5.06    NA     April 2014.0
## 791  C.corindum       Key_Largo   F 7.91   3.64  9.08    NA     April 2014.0
## 792  C.corindum       Key_Largo   F 7.93   3.42  8.97    NA     April 2014.0
## 793  C.corindum       Key_Largo   F 6.72   3.17  4.95    NA     April 2014.0
## 794  C.corindum       Key_Largo   F 7.28   3.37  7.03    NA     April 2014.0
## 795  C.corindum       Key_Largo   F 5.66   2.69  4.09    NA     April 2014.0
## 796  C.corindum       Key_Largo   F 8.33   3.86  9.24    NA     April 2014.0
## 797  C.corindum       Key_Largo   F 6.18   3.19  4.72    NA     April 2014.0
## 798  C.corindum       Key_Largo   F 7.50   3.42  8.07    NA     April 2014.0
## 799  C.corindum       Key_Largo   F 6.96   3.09  5.50    NA     April 2014.0
## 800  C.corindum       Key_Largo   F 6.26   2.87  4.95    NA     April 2014.0
## 801  C.corindum       Key_Largo   M 6.24   3.16  8.43 11.53     April 2014.0
## 802  C.corindum       Key_Largo   F 5.89   2.73  4.28    NA     April 2014.0
## 803  C.corindum       Key_Largo   M 6.33   2.94  7.88 10.42     April 2014.0
## 804  C.corindum       Key_Largo   F 9.10   3.89 10.23 13.93     April 2014.0
## 805  C.corindum       Key_Largo   F 8.80   3.67 10.09 14.11     April 2014.0
## 806  C.corindum       Key_Largo   F 6.93   2.80  4.80    NA     April 2014.0
## 807  C.corindum       Key_Largo   F 6.61   2.83  4.72    NA     April 2014.0
## 808  C.corindum       Key_Largo   M 5.89   2.85  7.94 10.64     April 2014.0
## 809  C.corindum       Key_Largo   M 5.43   2.76  7.23  9.99     April 2014.0
## 810   K.elegans      Lake_Wales   M 5.10   2.42  4.46    NA     April 2014.0
## 811   K.elegans      Lake_Wales   F 7.69   3.35  9.32 12.31     April 2014.0
## 812   K.elegans      Lake_Wales   M 5.48   2.89  7.73 10.89     April 2014.0
## 813   K.elegans      Lake_Wales   M 5.67   2.90  8.19 10.88     April 2014.0
## 814   K.elegans      Lake_Wales   F 7.49   3.23  8.70 12.01     April 2014.0
## 815   K.elegans      Lake_Wales   F 7.23   3.33  9.08 12.21     April 2014.0
## 816   K.elegans      Lake_Wales   M 5.64   3.10  8.21 11.37     April 2014.0
## 817   K.elegans      Lake_Wales   F 6.42   3.67  9.86 13.18     April 2014.0
## 818   K.elegans      Lake_Wales   M 5.60   3.26  8.33 11.17     April 2014.0
## 819   K.elegans      Lake_Wales   M 5.63   3.00  8.12 10.91     April 2014.0
## 820   K.elegans      Lake_Wales   F 6.95   3.07  8.72 11.88     April 2014.0
## 821   K.elegans      Lake_Wales   M 5.52   3.23  8.52 11.29     April 2014.0
## 822   K.elegans      Lake_Wales   M 5.19   3.12  7.88 10.94     April 2014.0
## 823   K.elegans      Lake_Wales   F 7.24   3.27  8.93 12.21     April 2014.0
## 824   K.elegans      Lake_Wales   F 6.57   2.93  8.39 11.45     April 2014.0
## 825   K.elegans      Lake_Wales   M 5.33   2.73  7.72 10.52     April 2014.0
## 826   K.elegans      Lake_Wales   F 6.78   3.29  8.92 11.99     April 2014.0
## 827   K.elegans      Lake_Wales   F 6.39   2.88  5.02    NA     April 2014.0
## 828   K.elegans      Lake_Wales   M 5.56   2.91  7.63 10.40     April 2014.0
## 829   K.elegans      Lake_Wales   F 6.38   3.26  8.47 11.94     April 2014.0
## 830   K.elegans      Lake_Wales   M 5.28   3.03  8.34 11.00     April 2014.0
## 831   K.elegans      Lake_Wales   F 7.65   3.52  9.26 12.82     April 2014.0
## 832   K.elegans      Lake_Wales   F 6.27   3.00  5.52    NA     April 2014.0
## 833   K.elegans      Lake_Wales   F 6.62   3.29  8.77 11.71     April 2014.0
## 834   K.elegans      Lake_Wales   M 5.51   3.04  8.92 11.85     April 2014.0
## 835   K.elegans      Lake_Wales   F 6.87   3.55  8.72 13.09     April 2014.0
## 836   K.elegans      Lake_Wales   F 7.66   3.67  9.99 13.62     April 2014.0
## 837   K.elegans      Lake_Wales   F 6.67   2.94  7.42 10.57     April 2014.0
## 838   K.elegans      Lake_Wales   M 5.78   3.29  9.04 11.88     April 2014.0
## 839   K.elegans      Lake_Wales   F 6.24   2.99  4.73    NA     April 2014.0
## 840   K.elegans      Lake_Wales   F 6.59   2.90  7.91 10.83     April 2014.0
## 841   K.elegans      Lake_Wales   F 6.75   2.94  8.15 11.25     April 2014.0
## 842   K.elegans      Lake_Wales   M 5.49   3.04  8.38 11.59     April 2014.0
## 843   K.elegans      Lake_Wales   F 6.91   3.09  8.56 11.72     April 2014.0
## 844   K.elegans      Lake_Wales   M 5.60   3.15  8.83 12.01     April 2014.0
## 845   K.elegans      Lake_Wales   F 5.56   2.94  7.27 10.51     April 2014.0
## 846   K.elegans      Lake_Wales   F 6.87   3.08  7.48 10.62     April 2014.0
## 847   K.elegans      Lake_Wales   M 5.47   2.99  7.77 10.85     April 2014.0
## 848   K.elegans      Lake_Wales   F 6.41   3.00  5.25    NA     April 2014.0
## 849   K.elegans      Lake_Wales   F 7.07   3.27  8.92 12.21     April 2014.0
## 850   K.elegans      Lake_Wales   M 5.48   2.88  8.48 11.29     April 2014.0
## 851   K.elegans      Lake_Wales   F 5.99   3.01  8.21 11.50     April 2014.0
## 852   K.elegans      Lake_Wales   F 6.62   3.15  8.58 11.77     April 2014.0
## 853   K.elegans      Lake_Wales   F 6.50   3.20  8.42 11.68     April 2014.0
## 854   K.elegans        Leesburg   F 7.09   3.47  9.74    NA     April 2014.0
## 855   K.elegans        Leesburg   M 5.56   2.86  8.21    NA     April 2014.0
## 856   K.elegans        Leesburg   M 5.38   3.10  8.21    NA     April 2014.0
## 857   K.elegans        Leesburg   F 7.60   3.27  8.92    NA     April 2014.0
## 858   K.elegans        Leesburg   M 5.58   2.89  8.05    NA     April 2014.0
## 859   K.elegans        Leesburg   M 5.29   3.05  8.06    NA     April 2014.0
## 860   K.elegans        Leesburg   F 6.92   3.43  9.35    NA     April 2014.0
## 861   K.elegans        Leesburg   F 7.17   3.39  9.19    NA     April 2014.0
## 862   K.elegans        Leesburg   M 5.34   2.89  8.42    NA     April 2014.0
## 863   K.elegans        Leesburg   M 5.49   3.00  8.49    NA     April 2014.0
## 864   K.elegans        Leesburg   F 6.59   3.59  9.48    NA     April 2014.0
## 865   K.elegans        Leesburg   F 6.95   3.33  9.13    NA     April 2014.0
## 866   K.elegans        Leesburg   F 6.86   3.12  8.01    NA     April 2014.0
## 867   K.elegans        Leesburg   F 6.27   3.12  9.10    NA     April 2014.0
## 868  C.corindum  Plantation_Key   F 8.25   3.36  9.37 12.76     April 2014.0
## 869  C.corindum  Plantation_Key   M 5.52   2.56  4.82    NA     April 2014.0
## 870  C.corindum  Plantation_Key   M 5.56   2.88  7.86 10.70     April 2014.0
## 871  C.corindum  Plantation_Key   F 6.55   3.03  5.90    NA     April 2014.0
## 872  C.corindum  Plantation_Key   M 5.44   2.36  4.83    NA     April 2014.0
## 873  C.corindum  Plantation_Key   M 5.23   2.50  4.69    NA     April 2014.0
## 874  C.corindum  Plantation_Key   F 7.76   3.23  8.71 12.22     April 2014.0
## 875  C.corindum  Plantation_Key   M 5.67   3.09  8.06 10.94     April 2014.0
## 876  C.corindum  Plantation_Key   F 6.37   2.83  5.21    NA     April 2014.0
## 877  C.corindum  Plantation_Key   F 6.42   3.01  6.37    NA     April 2014.0
## 878  C.corindum  Plantation_Key   F 8.65   3.00  8.48 11.74     April 2014.0
## 879  C.corindum  Plantation_Key   F 6.15   2.80  6.11    NA     April 2014.0
## 880  C.corindum  Plantation_Key   F 6.98   3.34  8.77 11.98     April 2014.0
## 881  C.corindum  Plantation_Key   F 6.30   2.89  8.07 11.27     April 2014.0
## 882  C.corindum  Plantation_Key   F 6.02   2.61  4.31    NA     April 2014.0
## 883  C.corindum  Plantation_Key   M 6.09   2.99  8.11    NA     April 2014.0
## 884  C.corindum  Plantation_Key   F 8.41   3.56  9.33    NA     April 2014.0
## 885  C.corindum  Plantation_Key   M 5.18   2.33  3.91    NA     April 2014.0
## 886  C.corindum  Plantation_Key   M 5.86   2.93  8.41    NA     April 2014.0
## 887  C.corindum  Plantation_Key   M 5.74   3.08  8.52    NA     April 2014.0
## 888  C.corindum  Plantation_Key   M 5.72   2.67  5.45    NA     April 2014.0
## 889  C.corindum  Plantation_Key   F 7.29   3.28  8.26    NA     April 2014.0
## 890  C.corindum  Plantation_Key   F 7.56   3.13  8.37    NA     April 2014.0
## 891  C.corindum  Plantation_Key   M 6.50   3.23  8.05    NA     April 2014.0
## 892  C.corindum  Plantation_Key   M 6.02   2.93  8.14    NA     April 2014.0
## 893  C.corindum  Plantation_Key   F 6.52   2.99  4.74    NA     April 2014.0
## 894  C.corindum  Plantation_Key   M 5.61   2.77  7.25    NA     April 2014.0
## 895  C.corindum  Plantation_Key   F 6.16   2.66  4.89    NA     April 2014.0
## 896  C.corindum  Plantation_Key   M 5.71   2.91  7.96    NA     April 2014.0
## 897  C.corindum  Plantation_Key   M 6.21   3.13  8.09    NA     April 2014.0
## 898  C.corindum  Plantation_Key   M 5.57   2.70  5.87    NA     April 2014.0
## 899  C.corindum  Plantation_Key   M 5.77   2.91  5.15    NA     April 2014.0
## 900  C.corindum  Plantation_Key   M 5.52   2.47  4.15    NA     April 2014.0
## 901  C.corindum  Plantation_Key   F 6.38   2.82  5.36    NA     April 2014.0
## 902  C.corindum  Plantation_Key   F 6.48   3.04  4.89    NA     April 2014.0
## 903  C.corindum  Plantation_Key   M 6.22   3.20  8.42    NA     April 2014.0
## 904  C.corindum  Plantation_Key   F 8.61   3.34  9.23    NA     April 2014.0
## 905  C.corindum  Plantation_Key   M 5.53   2.68  4.67    NA     April 2014.0
## 906  C.corindum  Plantation_Key   M 5.95   2.77  7.40    NA     April 2014.0
## 907  C.corindum  Plantation_Key   F 8.84   3.54  9.38    NA     April 2014.0
## 908  C.corindum  Plantation_Key   M 6.71   3.33  8.67    NA     April 2014.0
## 909  C.corindum  Plantation_Key   F 5.33   2.42  3.87    NA     April 2014.0
## 910  C.corindum  Plantation_Key   M 5.66   3.15  8.44    NA     April 2014.0
## 911  C.corindum  Plantation_Key   M 5.30   2.73  6.66    NA     April 2014.0
## 912  C.corindum       Key_Largo   F 5.79   2.82  4.38    NA     April 2015.0
## 913  C.corindum       Key_Largo   M 5.55   2.58  4.63    NA     April 2015.0
## 914  C.corindum       Key_Largo   M 5.24   2.59  4.36    NA     April 2015.0
## 915  C.corindum       Key_Largo   F 8.72   3.77  9.74 13.58     April 2015.0
## 916  C.corindum       Key_Largo   M 5.28   2.65  4.94    NA     April 2015.0
## 917  C.corindum       Key_Largo   F 6.81   2.89  4.68    NA     April 2015.0
## 918  C.corindum       Key_Largo   M 6.49   3.10  8.72 12.13     April 2015.0
## 919  C.corindum       Key_Largo   M 5.72   2.68  5.71    NA     April 2015.0
## 920  C.corindum       Key_Largo   M 5.49   2.29  3.89    NA     April 2015.0
## 921  C.corindum       Key_Largo   F 6.45   3.19  5.40    NA     April 2015.0
## 922  C.corindum       Key_Largo   F 6.34   2.85  5.02    NA     April 2015.0
## 923  C.corindum       Key_Largo   F 7.12   3.37  5.77    NA     April 2015.0
## 924  C.corindum       Key_Largo   F 7.10   3.21  5.70    NA     April 2015.0
## 925  C.corindum       Key_Largo   F 6.35   3.08  5.10    NA     April 2015.0
## 926  C.corindum       Key_Largo   F 7.51   3.09  8.36 11.87     April 2015.0
## 927  C.corindum       Key_Largo   F 6.52   2.95  5.12    NA     April 2015.0
## 928  C.corindum       Key_Largo   M 5.11   2.51  4.26    NA     April 2015.0
## 929  C.corindum       Key_Largo   F 5.84   2.87  4.61    NA     April 2015.0
## 930  C.corindum       Key_Largo   M 5.61   2.99  8.00 10.98     April 2015.0
## 931  C.corindum       Key_Largo   F 7.15   3.15  5.80    NA     April 2015.0
## 932  C.corindum       Key_Largo   M 5.62   2.77  4.75    NA     April 2015.0
## 933  C.corindum       Key_Largo   M 6.01   2.89  7.56 10.56     April 2015.0
## 934  C.corindum       Key_Largo   F 6.11   2.85  4.41    NA     April 2015.0
## 935  C.corindum       Key_Largo   M 5.62   2.58  6.48  9.26     April 2015.0
## 936  C.corindum       Key_Largo   F 8.37   3.39  8.73 12.00     April 2015.0
## 937  C.corindum       Key_Largo   M 6.54   2.98  7.88 10.44     April 2015.0
## 938  C.corindum       Key_Largo   M 5.96   2.70  4.62    NA     April 2015.0
## 939  C.corindum       Key_Largo   M 5.25   2.45  4.24    NA     April 2015.0
## 940  C.corindum       Key_Largo   M 5.83   2.68  4.98    NA     April 2015.0
## 941  C.corindum       Key_Largo   M 6.42   3.10  8.05 11.16     April 2015.0
## 942  C.corindum       Key_Largo   F 6.94   3.17  5.32    NA     April 2015.0
## 943  C.corindum       Key_Largo   M 5.72   2.63  4.64    NA     April 2015.0
## 944  C.corindum       Key_Largo   M 5.27   2.61  4.75    NA     April 2015.0
## 945  C.corindum       Key_Largo   F 7.08   2.85  4.94    NA     April 2015.0
## 946  C.corindum       Key_Largo   F 6.81   3.03  4.99    NA     April 2015.0
## 947  C.corindum       Key_Largo   M 5.19   2.46  4.20    NA     April 2015.0
## 948  C.corindum       Key_Largo   F 5.99   2.73  4.94    NA     April 2015.0
## 949  C.corindum       Key_Largo   M 5.04   2.41  4.36    NA     April 2015.0
## 950  C.corindum       Key_Largo   F 5.37   2.41  3.93    NA     April 2015.0
## 951  C.corindum       Key_Largo   F 6.60   3.00  5.40    NA     April 2015.0
## 952  C.corindum       Key_Largo   F 6.26   3.06  8.12 11.84     April 2015.0
## 953  C.corindum       Key_Largo   F 6.18   2.76  5.24 12.11     April 2015.0
## 954  C.corindum       Key_Largo   F 8.38   3.33  8.53    NA     April 2015.0
## 955  C.corindum       Key_Largo   M 5.43   2.34  4.38    NA     April 2015.0
## 956  C.corindum       Key_Largo   F 6.57   3.25  5.21 11.65     April 2015.0
## 957  C.corindum       Key_Largo   M 6.42   3.02  8.22 11.73     April 2015.0
## 958  C.corindum       Key_Largo   F 7.34   3.06  8.00    NA     April 2015.0
## 959  C.corindum       Key_Largo   M 5.57   2.66  4.73    NA     April 2015.0
## 960  C.corindum       Key_Largo   M 5.30   2.52  4.61    NA     April 2015.0
## 961  C.corindum       Key_Largo   F 6.12   2.79  4.93    NA     April 2015.0
## 962  C.corindum       Key_Largo   F 7.04   3.13  5.67    NA     April 2015.0
## 963   K.elegans      Lake_Wales   M 5.69   3.21  8.55 11.70     April 2015.0
## 964   K.elegans      Lake_Wales   M 5.36   3.07  8.30 11.87     April 2015.0
## 965   K.elegans      Lake_Wales   F 7.58   3.72 10.72 13.96     April 2015.0
## 966   K.elegans      Lake_Wales   M 5.72   3.09  8.44 11.72     April 2015.0
## 967   K.elegans      Lake_Wales   F 7.98   3.85  9.90 13.90     April 2015.0
## 968   K.elegans      Lake_Wales   M 5.41   3.27  8.33 11.73     April 2015.0
## 969   K.elegans      Lake_Wales   M 5.71   3.16  8.45 11.75     April 2015.0
## 970   K.elegans      Lake_Wales   F 7.41   3.97 10.22 14.70     April 2015.0
## 971   K.elegans      Lake_Wales   M 5.68   3.07  8.26 11.68     April 2015.0
## 972   K.elegans      Lake_Wales   F 6.58   3.44  9.07 12.32     April 2015.0
## 973   K.elegans      Lake_Wales   M 5.16   3.29  8.39 11.17     April 2015.0
## 974   K.elegans      Lake_Wales   M 5.78   2.91  8.54 11.50     April 2015.0
## 975   K.elegans      Lake_Wales   M 5.39   3.30  8.71 11.77     April 2015.0
## 976   K.elegans      Lake_Wales   F 7.43   3.99  9.71 13.85     April 2015.0
## 977   K.elegans      Lake_Wales   M 5.47   3.00  7.91 11.06     April 2015.0
## 978   K.elegans      Lake_Wales   F 8.04   3.74  9.98 13.34     April 2015.0
## 979   K.elegans      Lake_Wales   F 8.07   3.58  9.80 13.50     April 2015.0
## 980   K.elegans      Lake_Wales   F 7.00   3.58  9.63 12.80     April 2015.0
## 981   K.elegans      Lake_Wales   F 6.12   3.38  8.34 12.07     April 2015.0
## 982   K.elegans      Lake_Wales   M 5.18   3.01  8.07 11.43     April 2015.0
## 983   K.elegans      Lake_Wales   F 6.95   3.57  9.18 12.41     April 2015.0
## 984   K.elegans      Lake_Wales   M 5.08   2.86  7.36 10.51     April 2015.0
## 985   K.elegans      Lake_Wales   M 5.34   3.08  8.07 11.58     April 2015.0
## 986   K.elegans      Lake_Wales   F 6.39   3.39  9.17 12.89     April 2015.0
## 987   K.elegans      Lake_Wales   F 6.96   3.60  9.92 12.90     April 2015.0
## 988   K.elegans      Lake_Wales   F 7.27   3.52 10.37 14.36     April 2015.0
## 989   K.elegans      Lake_Wales   M 5.73   3.28  8.74 11.77     April 2015.0
## 990   K.elegans      Lake_Wales   F 6.44   3.65  9.55 12.93     April 2015.0
## 991   K.elegans      Lake_Wales   M 5.51   3.15  8.52 11.53     April 2015.0
## 992   K.elegans      Lake_Wales   M 5.52   3.13  8.55 12.09     April 2015.0
## 993   K.elegans      Lake_Wales   M 5.74   3.17  8.66 12.32     April 2015.0
## 994   K.elegans      Lake_Wales   M 5.73   3.13  8.35 11.64     April 2015.0
## 995   K.elegans      Lake_Wales   F 6.61   3.79  9.87 13.86     April 2015.0
## 996   K.elegans      Lake_Wales   F 7.83   3.76 10.02 13.39     April 2015.0
## 997   K.elegans      Lake_Wales   F 6.76   3.65  9.83 13.23     April 2015.0
## 998   K.elegans      Lake_Wales   F 6.51   3.55  9.43 12.79     April 2015.0
## 999   K.elegans      Lake_Wales   F 7.41   3.52  9.35 12.72     April 2015.0
## 1000  K.elegans      Lake_Wales   M 5.79   3.27  8.72 11.89     April 2015.0
## 1001  K.elegans      Lake_Wales   F 6.89   3.78  9.65 13.05     April 2015.0
## 1002  K.elegans      Lake_Wales   M 5.52   3.19  8.49 11.61     April 2015.0
## 1003  K.elegans      Lake_Wales   M 5.69   3.20  8.51 12.22     April 2015.0
## 1004  K.elegans      Lake_Wales   F 6.97   3.80 10.40 14.15     April 2015.0
## 1005  K.elegans      Lake_Wales   F 6.15   3.54  9.34 12.69       May 2015.0
## 1006  K.elegans      Lake_Wales   M 5.36   3.04  8.26 11.22       May 2015.0
## 1007  K.elegans      Lake_Wales   F 6.51   3.64  9.63 12.93       May 2015.0
## 1008  K.elegans      Lake_Wales   F 6.33   3.36  9.37 12.57       May 2015.0
## 1009  K.elegans      Lake_Wales   M 5.20   3.23  8.21 11.34       May 2015.0
## 1010  K.elegans      Lake_Wales   F 7.71   3.75  9.77 13.89       May 2015.0
## 1011  K.elegans      Lake_Wales   M 5.85   3.16  8.68 12.14       May 2015.0
## 1012  K.elegans      Lake_Wales   F 6.97   3.78 10.06 13.64       May 2015.0
## 1013  K.elegans      Lake_Wales   M 5.86   3.26  8.90 12.17       May 2015.0
## 1014  K.elegans      Lake_Wales   M 5.70   3.08  8.48 11.41       May 2015.0
## 1015  K.elegans      Lake_Wales   F 7.30   3.63 10.48 14.11       May 2015.0
## 1016  K.elegans        Leesburg   F 6.51   3.62  9.11 13.07     April 2015.0
## 1017  K.elegans        Leesburg   M 5.60   3.15  8.81 12.21     April 2015.0
## 1018  K.elegans        Leesburg   M 5.61   3.27  8.95 12.32     April 2015.0
## 1019  K.elegans        Leesburg   F 6.70   3.59  9.92 13.62     April 2015.0
## 1020  K.elegans        Leesburg   F 6.55   3.31 10.00 13.92     April 2015.0
## 1021  K.elegans        Leesburg   F 6.24   3.03  7.78 11.69     April 2015.0
## 1022  K.elegans        Leesburg   M 5.61   3.24  8.84 12.04     April 2015.0
## 1023  K.elegans        Leesburg   M 5.43   3.10  8.81 11.92     April 2015.0
## 1024  K.elegans        Leesburg   M 5.24   2.99  8.75 11.91     April 2015.0
## 1025  K.elegans        Leesburg   F 7.62   3.90  9.97 14.01     April 2015.0
## 1026  K.elegans        Leesburg   F 6.30   3.25  5.92    NA     April 2015.0
## 1027  K.elegans        Leesburg   M 5.08   2.91  8.48 11.56     April 2015.0
## 1028  K.elegans        Leesburg   M 5.57   2.98  8.34 11.42     April 2015.0
## 1029  K.elegans        Leesburg   M 5.36   3.06  8.61 11.84     April 2015.0
## 1030  K.elegans        Leesburg   F 6.61   3.52  9.48 12.67     April 2015.0
## 1031  K.elegans        Leesburg   M 5.58   3.18  9.14 12.34     April 2015.0
## 1032  K.elegans        Leesburg   M 5.81   2.85  8.06 11.18     April 2015.0
## 1033  K.elegans        Leesburg   F 6.37   3.19  8.79 12.44     April 2015.0
## 1034  K.elegans        Leesburg   M 5.56   3.01  8.32 11.28     April 2015.0
## 1035  K.elegans        Leesburg   F 6.00   3.64  9.33 13.11     April 2015.0
## 1036  K.elegans        Leesburg   F 6.38   3.54  9.14 12.76     April 2015.0
## 1037  K.elegans        Leesburg   F 7.39   3.32  9.34 13.13     April 2015.0
## 1038  K.elegans        Leesburg   M 5.84   3.25  9.04 11.79     April 2015.0
## 1039  K.elegans        Leesburg   F 6.18   3.47  9.20 12.49     April 2015.0
## 1040  K.elegans        Leesburg   M 5.09   2.86  7.79 10.79     April 2015.0
## 1041  K.elegans        Leesburg   F 6.47   3.60  7.30    NA     April 2015.0
## 1042  K.elegans        Leesburg   F 7.10   3.45  9.44 13.45     April 2015.0
## 1043  K.elegans        Leesburg   F 6.49   3.63  9.37 12.63     April 2015.0
## 1044  K.elegans        Leesburg   F 6.57   3.63  8.17 12.03     April 2015.0
## 1045  K.elegans        Leesburg   M 5.31   3.08  8.47 11.77     April 2015.0
## 1046  K.elegans        Leesburg   M 5.53   2.80  7.45 10.40     April 2015.0
## 1047  K.elegans        Leesburg   M 5.67   2.87  8.09 11.34     April 2015.0
## 1048  K.elegans        Leesburg   F 5.76   2.74  4.70    NA     April 2015.0
## 1049  K.elegans        Leesburg   M 5.47   3.09  9.42 11.46     April 2015.0
## 1050  K.elegans        Leesburg   M 5.36   3.05  8.37 11.35     April 2015.0
## 1051  K.elegans        Leesburg   M 5.45   3.06  7.94 10.81     April 2015.0
## 1052 C.corindum  Plantation_Key   F 6.79   3.09  5.22 12.33     April 2015.0
## 1053 C.corindum  Plantation_Key   M 6.12   3.34  8.96    NA     April 2015.0
## 1054 C.corindum  Plantation_Key   F 6.39   3.04  4.87    NA     April 2015.0
## 1055 C.corindum  Plantation_Key   F 6.99   3.36  5.82    NA     April 2015.0
## 1056 C.corindum  Plantation_Key   F 6.48   3.05  7.76 11.35     April 2015.0
## 1057 C.corindum  Plantation_Key   F 7.56   3.69  9.26 13.69     April 2015.0
## 1058 C.corindum  Plantation_Key   F 6.79   3.78 10.13 14.07     April 2015.0
## 1059 C.corindum  Plantation_Key   F 6.21   2.77  4.52    NA     April 2015.0
## 1060 C.corindum  Plantation_Key   F 7.57   3.48  9.05 12.59     April 2015.0
## 1061 C.corindum  Plantation_Key   F 7.61   3.33  8.63 11.71     April 2015.0
## 1062 C.corindum  Plantation_Key   F 6.16   2.89  4.26    NA     April 2015.0
## 1063 C.corindum  Plantation_Key   F 7.87   3.56  9.22 12.86     April 2015.0
## 1064  K.elegans     Gainesville   M 5.50   3.26  8.36 11.36  December 2016.0
## 1065  K.elegans     Gainesville   F 7.43   3.47  9.52 12.91  December 2016.0
## 1066  K.elegans     Gainesville   M 5.75   3.09  9.29 12.33  December 2016.0
## 1067  K.elegans     Gainesville   M 5.60   3.01  8.10 11.15  December 2016.0
## 1068  K.elegans     Gainesville   F 7.71   3.15  8.96 12.43  December 2016.0
## 1069  K.elegans     Gainesville   F 7.84   3.89  9.88 13.32  December 2016.0
## 1070  K.elegans     Gainesville   F 7.93   3.79  9.76 13.09  December 2016.0
## 1071  K.elegans     Gainesville   F 8.02   3.56  9.45 12.86  December 2016.0
## 1072  K.elegans     Gainesville   F 7.54   3.59  9.43 13.10  December 2016.0
## 1073  K.elegans     Gainesville   F 7.62   3.59  9.46 13.32  December 2016.0
## 1074  K.elegans     Gainesville   M 5.54   2.99  7.96 10.99  December 2016.0
## 1075  K.elegans     Gainesville   F 7.64   3.57  9.79 13.28  December 2016.0
## 1076  K.elegans     Gainesville   M 6.06   3.24  8.84 12.09  December 2016.0
## 1077  K.elegans     Gainesville   M   NA   3.18  8.62 11.44  December 2016.0
## 1078  K.elegans     Gainesville   M 5.58   3.26  8.89 11.86  December 2016.0
## 1079  K.elegans     Gainesville   F 7.74   3.55  9.97 13.78  December 2016.0
## 1080  K.elegans     Gainesville   M 5.59   2.84  7.59 10.08  December 2016.0
## 1081  K.elegans     Gainesville   F 8.38   3.66  9.55 12.85  December 2016.0
## 1082  K.elegans     Gainesville   F 7.80   3.66  9.47 13.11  December 2016.0
## 1083  K.elegans     Gainesville   M 5.66   2.93  7.91 10.86  December 2016.0
## 1084  K.elegans     Gainesville   F 8.39   3.82 10.53 14.08  December 2016.0
## 1085  K.elegans     Gainesville   F 8.44   3.55  9.76 12.86  December 2016.0
## 1086  K.elegans     Gainesville   M 5.85   3.28  8.91 12.00  December 2016.0
## 1087  K.elegans     Gainesville   M 5.69   3.34  8.93 11.73  December 2016.0
## 1088  K.elegans     Gainesville   M 5.69   3.11  8.10 11.15  December 2016.0
## 1089  K.elegans     Gainesville   M 5.98   3.39  8.57 11.88  December 2016.0
## 1090  K.elegans     Gainesville   M 5.71   3.17  8.54 11.36  December 2016.0
## 1091  K.elegans     Gainesville   F 7.78   3.53  9.61 13.09  December 2016.0
## 1092  K.elegans     Gainesville   M 5.69   3.25  8.40 11.05  December 2016.0
## 1093  K.elegans     Gainesville   M 5.92   3.26  8.76 12.19  December 2016.0
## 1094  K.elegans     Gainesville   F 7.61   3.76  9.96 13.48  December 2016.0
## 1095  K.elegans     Gainesville   F 7.79   3.41  9.13 12.47  December 2016.0
## 1096  K.elegans     Gainesville   M 5.82   3.14  7.81 10.89  December 2016.0
## 1097  K.elegans     Gainesville   F 7.81   3.52  9.29 12.46  December 2016.0
## 1098  K.elegans     Gainesville   M 5.49   3.03  6.39  9.49  December 2016.0
## 1099  K.elegans     Gainesville   M 6.00   3.40  8.84 12.06  December 2016.0
## 1100  K.elegans     Gainesville   M 5.55   2.86  7.60 10.66  December 2016.0
## 1101  K.elegans     Gainesville   F 8.03   3.73  9.82 13.22  December 2016.0
## 1102  K.elegans     Gainesville   M 5.63   3.13  8.80 12.03  December 2016.0
## 1103  K.elegans     Gainesville   F 7.57   3.50  9.12 12.60  December 2016.0
## 1104  K.elegans     Gainesville   M 5.78   3.09  8.61 11.58  December 2016.0
## 1105  K.elegans     Gainesville   F 7.35   3.31  8.74 12.00  December 2016.0
## 1106  K.elegans     Gainesville   F 7.97   3.30  8.81 11.89  December 2016.0
## 1107  K.elegans     Gainesville   F 6.77   3.05  4.89  8.06  December 2016.0
## 1108  K.elegans     Gainesville   F 8.01   3.82 10.64 13.75  December 2016.0
## 1109  K.elegans     Gainesville   F 7.95   3.51  9.81 13.29  December 2016.0
## 1110  K.elegans     Gainesville   M 5.65   2.57  5.91  8.84  December 2016.0
## 1111  K.elegans     Gainesville   M 6.16   3.07  8.29 12.09  December 2016.0
## 1112  K.elegans     Gainesville   F 7.89   3.60  9.79 13.37  December 2016.0
## 1113  K.elegans     Gainesville   F 7.81   3.42  8.80 12.17  December 2016.0
## 1114  K.elegans     Gainesville   F 7.03   2.96  7.49 10.72  December 2016.0
## 1115  K.elegans     Gainesville   M 5.83   3.01  9.26 12.29  December 2016.0
## 1116  K.elegans     Gainesville   M 6.14   3.14  8.97 11.88  December 2016.0
## 1117  K.elegans     Gainesville   M 5.62   3.00  8.66 11.48  December 2016.0
## 1118  K.elegans     Gainesville   M 5.94   3.45  9.39 11.96  December 2016.0
## 1119  K.elegans     Gainesville   F 7.90   3.51  9.57 13.03  December 2016.0
## 1120  K.elegans     Gainesville   M 5.59   2.88  7.90 10.79  December 2016.0
## 1121  K.elegans       Homestead   M 5.32   3.20  8.96 11.63  December 2016.0
## 1122  K.elegans       Homestead   M 5.16   2.87  4.64    NA  December 2016.0
## 1123  K.elegans       Homestead   M 5.09   2.89  4.92    NA  December 2016.0
## 1124  K.elegans       Homestead   M 5.90   3.28  8.73 11.63  December 2016.0
## 1125  K.elegans       Homestead   M 5.60   3.29  9.05 12.18  December 2016.0
## 1126  K.elegans       Homestead   F 5.91   3.39  5.65    NA  December 2016.0
## 1127  K.elegans       Homestead   F 6.73   3.66 10.21 13.65  December 2016.0
## 1128  K.elegans       Homestead   M 5.42   2.95  8.12 10.88  December 2016.0
## 1129  K.elegans       Homestead   M 5.26   2.85  4.74    NA  December 2016.0
## 1130  K.elegans       Homestead   M 5.18   3.14  8.57 11.31  December 2016.0
## 1131  K.elegans       Homestead   M 5.25   3.16  9.13 11.74  December 2016.0
## 1132  K.elegans       Homestead   M 5.43   3.20  9.02 11.83  December 2016.0
## 1133  K.elegans       Homestead   M 5.45   3.23  8.83 11.76  December 2016.0
## 1134 C.corindum North_Key_Largo   F 8.39   3.65  9.64 13.45  December 2016.0
## 1135 C.corindum North_Key_Largo   F 9.02   3.49  9.08 12.69  December 2016.0
## 1136 C.corindum North_Key_Largo   M 7.09   3.51  9.34 12.27  December 2016.0
## 1137 C.corindum North_Key_Largo   M 5.43   2.76  4.78  7.69  December 2016.0
## 1138 C.corindum North_Key_Largo   M 6.06   2.96  8.25 11.32  December 2016.0
## 1139 C.corindum North_Key_Largo   F 6.88   3.00  5.55  8.81  December 2016.0
## 1140 C.corindum North_Key_Largo   M 5.89   2.96  8.23 11.47  December 2016.0
## 1141 C.corindum North_Key_Largo   F 8.44   3.67  9.36 13.11  December 2016.0
## 1142 C.corindum North_Key_Largo   F 8.02   3.48  9.47 12.89  December 2016.0
## 1143 C.corindum North_Key_Largo   F 8.10   3.24  7.81 11.16  December 2016.0
## 1144 C.corindum North_Key_Largo   F 7.77   3.94 10.13 13.51  December 2016.0
## 1145 C.corindum North_Key_Largo   F 6.96   2.96  5.47  8.81  December 2016.0
## 1146 C.corindum North_Key_Largo   F 6.13   2.74  6.20  9.51  December 2016.0
## 1147 C.corindum North_Key_Largo   M 5.94   2.80  7.88 10.75  December 2016.0
## 1148 C.corindum North_Key_Largo   M 6.60   3.22  8.14 11.48  December 2016.0
## 1149 C.corindum North_Key_Largo   M 6.54   3.34  8.72 11.91  December 2016.0
## 1150 C.corindum North_Key_Largo   M 6.39   3.11  8.44 11.63  December 2016.0
## 1151 C.corindum North_Key_Largo   M 5.87   3.00  7.74 10.71  December 2016.0
## 1152 C.corindum North_Key_Largo   F 7.32   3.56  9.48 12.67  December 2016.0
## 1153 C.corindum North_Key_Largo   M 6.45   3.02  7.67 11.22  December 2016.0
## 1154 C.corindum North_Key_Largo   M 6.21   3.21  8.72 11.74  December 2016.0
## 1155 C.corindum North_Key_Largo   F 6.84   3.12  5.16  8.64  December 2016.0
## 1156 C.corindum North_Key_Largo   M 6.24   3.51  8.32 11.68  December 2016.0
## 1157 C.corindum North_Key_Largo   F 7.23   3.17  5.37  8.72  December 2016.0
## 1158 C.corindum North_Key_Largo   F 8.77   3.47  9.25 12.35  December 2016.0
## 1159 C.corindum North_Key_Largo   M 5.56   2.80  5.64  8.63  December 2016.0
## 1160 C.corindum North_Key_Largo   F 7.70   3.78  9.35 12.94  December 2016.0
## 1161 C.corindum North_Key_Largo   F 6.89   3.68  9.41 12.99  December 2016.0
## 1162 C.corindum North_Key_Largo   M 6.34   3.02  8.09 11.21  December 2016.0
## 1163 C.corindum North_Key_Largo   M 6.36   3.24  8.55 11.83  December 2016.0
## 1164 C.corindum North_Key_Largo   M 6.78   3.41  8.51 11.84  December 2016.0
## 1165 C.corindum North_Key_Largo   M 6.45   3.33  8.36 11.34  December 2016.0
## 1166 C.corindum North_Key_Largo   F 8.79   3.56  9.04 12.25  December 2016.0
## 1167 C.corindum North_Key_Largo   F 6.61   3.60  9.55 13.07  December 2016.0
## 1168 C.corindum North_Key_Largo   F 6.49   2.69  4.59  7.81  December 2016.0
## 1169 C.corindum North_Key_Largo   M 6.46   3.11  8.67 11.52  December 2016.0
## 1170 C.corindum North_Key_Largo   F 7.08   2.89  4.92  7.86  December 2016.0
## 1171 C.corindum North_Key_Largo   M 5.40   2.15  4.80  7.50  December 2016.0
## 1172 C.corindum North_Key_Largo   F 6.85   3.12  5.25  8.55  December 2016.0
## 1173 C.corindum North_Key_Largo   M 6.18   3.27  8.45 11.48  December 2016.0
## 1174 C.corindum North_Key_Largo   F 9.26   3.59  9.31 12.57  December 2016.0
## 1175 C.corindum North_Key_Largo   F 7.59   3.30  7.22 10.41  December 2016.0
## 1176 C.corindum North_Key_Largo   F 7.96   3.35  8.84 12.22  December 2016.0
## 1177 C.corindum North_Key_Largo   F 7.10   3.53  8.77 12.39  December 2016.0
## 1178 C.corindum North_Key_Largo   M 5.56   3.25  8.62 11.38  December 2016.0
## 1179 C.corindum North_Key_Largo   M 5.42   2.84  4.81  7.95  December 2016.0
## 1180 C.corindum North_Key_Largo   M 6.37   3.24  9.04 12.10  December 2016.0
## 1181 C.corindum North_Key_Largo   M 6.05   2.87  6.30  9.29  December 2016.0
## 1182 C.corindum North_Key_Largo   F 7.45   3.32  8.24 11.54  December 2016.0
## 1183 C.corindum North_Key_Largo   M 5.98   2.89  7.77 10.64  December 2016.0
## 1184 C.corindum North_Key_Largo   M 6.25   3.11  8.29 11.44  December 2016.0
## 1185 C.corindum North_Key_Largo   M 5.69   2.80  7.57 10.44  December 2016.0
## 1186 C.corindum North_Key_Largo   M 6.84   3.11  8.11 11.37  December 2016.0
## 1187 C.corindum       Key_Largo   F 8.39   3.69  8.74 12.48  December 2016.0
## 1188 C.corindum       Key_Largo   M 5.92   2.95  8.19 11.18  December 2016.0
## 1189 C.corindum       Key_Largo   M 6.25   3.00  7.84 10.85  December 2016.0
## 1190 C.corindum       Key_Largo   M 6.08   3.02  6.15    NA  December 2016.0
## 1191 C.corindum       Key_Largo   M 6.12   3.17  7.80 10.84  December 2016.0
## 1192 C.corindum       Key_Largo   M 6.82   3.41  8.92 12.31  December 2016.0
## 1193 C.corindum       Key_Largo   F 6.73   3.78  8.17    NA  December 2016.0
## 1194 C.corindum       Key_Largo   F 7.61   3.45  9.18 12.22  December 2016.0
## 1195 C.corindum       Key_Largo   F 7.10   3.70  7.92    NA  December 2016.0
## 1196 C.corindum       Key_Largo   F 8.13   3.30  8.40 11.34  December 2016.0
## 1197 C.corindum       Key_Largo   M 6.81   3.21  8.61 11.55  December 2016.0
## 1198  K.elegans      Lake_Wales   F 7.24   3.30  8.97 12.51  December 2016.0
## 1199  K.elegans      Lake_Wales   F 7.11   3.30  8.52 11.84  December 2016.0
## 1200  K.elegans      Lake_Wales   M 5.59   2.83  7.86 10.91  December 2016.0
## 1201  K.elegans      Lake_Wales   F 7.37   3.22  9.18 12.54  December 2016.0
## 1202  K.elegans      Lake_Wales   M 5.35   2.80  8.07 10.90  December 2016.0
## 1203  K.elegans      Lake_Wales   M 5.64   3.11  8.36 11.22  December 2016.0
## 1204  K.elegans      Lake_Wales   F 7.45   3.45  9.46 12.48  December 2016.0
## 1205  K.elegans      Lake_Wales   F 6.72   3.47  6.50 10.22  December 2016.0
## 1206  K.elegans      Lake_Wales   M 5.58   3.17  8.70 11.49  December 2016.0
## 1207  K.elegans      Lake_Wales   M 5.37   3.06  8.67 11.34  December 2016.0
## 1208  K.elegans      Lake_Wales   F 7.08   3.27  8.67 11.97  December 2016.0
## 1209  K.elegans      Lake_Wales   M 5.36   2.76  7.69 10.28  December 2016.0
## 1210  K.elegans      Lake_Wales   M 5.97   3.01  8.45 11.27  December 2016.0
## 1211  K.elegans      Lake_Wales   M 5.67   2.85  8.04 10.79  December 2016.0
## 1212  K.elegans      Lake_Wales   M 5.68   2.90  7.99 10.83  December 2016.0
## 1213  K.elegans        Leesburg   M 5.91   3.23  8.92 11.90  December 2016.0
## 1214  K.elegans        Leesburg   F 7.76   3.37  9.75 13.01  December 2016.0
## 1215  K.elegans        Leesburg   F 7.25   3.33  8.91 12.45  December 2016.0
## 1216  K.elegans        Leesburg   M 5.28   2.82  8.22 10.79  December 2016.0
## 1217  K.elegans        Leesburg   F 6.42   3.38  9.35 12.13  December 2016.0
## 1218  K.elegans        Leesburg   M 5.69   3.01  8.40 11.07  December 2016.0
## 1219  K.elegans        Leesburg   M 5.47   2.70  8.12 10.89  December 2016.0
## 1220  K.elegans        Leesburg   F 6.87   3.44  9.77 13.39  December 2016.0
## 1221  K.elegans        Leesburg   M 5.54   2.87  8.35 11.27  December 2016.0
## 1222  K.elegans        Leesburg   M 5.43   2.73  8.08 10.65  December 2016.0
## 1223  K.elegans        Leesburg   M 5.61   3.02  8.57 11.34  December 2016.0
## 1224  K.elegans        Leesburg   M 5.32   2.89  8.12 10.62  December 2016.0
## 1225  K.elegans        Leesburg   M 5.84   3.24  9.18 11.99  December 2016.0
## 1226  K.elegans        Leesburg   M 5.62   3.02  9.06 12.18  December 2016.0
## 1227  K.elegans        Leesburg   M 5.82   3.11  9.08 12.40  December 2016.0
## 1228  K.elegans        Leesburg   M 5.19   2.58  8.07 10.78  December 2016.0
## 1229  K.elegans        Leesburg   M 5.69   3.07  8.80 11.87  December 2016.0
## 1230  K.elegans        Leesburg   F 7.25   3.32  9.00 12.03  December 2016.0
## 1231  K.elegans        Leesburg   M 5.36   3.03  8.27 11.44  December 2016.0
## 1232  K.elegans        Leesburg   M 5.58   2.91  8.73 11.47  December 2016.0
## 1233  K.elegans        Leesburg   M 5.83   3.45  8.51 11.70  December 2016.0
## 1234  K.elegans        Leesburg   F 7.66   3.54  9.83 13.52  December 2016.0
## 1235  K.elegans        Leesburg   F 7.81   3.45  9.01 12.58  December 2016.0
## 1236  K.elegans        Leesburg   F 7.62   3.66  9.26 12.79  December 2016.0
## 1237  K.elegans        Leesburg   F 7.63   3.58  9.32 12.70  December 2016.0
## 1238  K.elegans        Leesburg   F 7.37   3.45  9.65 13.04  December 2016.0
## 1239  K.elegans        Leesburg   F 7.47   3.84 10.54 14.37  December 2016.0
## 1240  K.elegans        Leesburg   M 5.64   3.05  8.83 11.81  December 2016.0
## 1241  K.elegans        Leesburg   F 7.67   3.45  9.38 12.64  December 2016.0
## 1242  K.elegans        Leesburg   F 7.54   3.30  9.39 12.72  December 2016.0
## 1243  K.elegans        Leesburg   F 6.91   3.40  9.19 12.07  December 2016.0
## 1244  K.elegans        Leesburg   F 5.87   3.27  5.86  9.44  December 2016.0
## 1245  K.elegans        Leesburg   M 5.78   3.28  8.31 11.40  December 2016.0
## 1246  K.elegans        Leesburg   M 5.94   2.86  8.10 10.60  December 2016.0
## 1247  K.elegans        Leesburg   F 7.38   3.26  9.00 12.16  December 2016.0
## 1248  K.elegans        Leesburg   M 5.71   2.96  8.19 11.03  December 2016.0
## 1249  K.elegans        Leesburg   M 5.56   3.10  7.93 10.61  December 2016.0
## 1250  K.elegans        Leesburg   F 7.57   3.48  9.30 12.87  December 2016.0
## 1251  K.elegans        Leesburg   F 7.84   3.63  9.71 13.17  December 2016.0
## 1252  K.elegans        Leesburg   F 6.96   3.18  9.46 12.48  December 2016.0
## 1253  K.elegans        Leesburg   F 6.59   3.05    NA    NA  December 2016.0
## 1254  K.elegans        Leesburg   M 5.57   3.25  8.13 11.07  December 2016.0
## 1255  K.elegans        Leesburg   M 5.77   3.38  9.54 12.29  December 2016.0
## 1256  K.elegans        Leesburg   F 8.46   3.99 10.60 14.32  December 2016.0
## 1257  K.elegans        Leesburg   M 5.29   2.84  7.65 10.39  December 2016.0
## 1258  K.elegans        Leesburg   M 5.65   3.24  8.16 11.31  December 2016.0
## 1259  K.elegans        Leesburg   F 7.78   3.48  9.32 12.56  December 2016.0
## 1260  K.elegans        Leesburg   F 7.74   3.47  9.79 13.20  December 2016.0
## 1261  K.elegans        Leesburg   F 7.44   3.29  8.65 12.28  December 2016.0
## 1262  K.elegans        Leesburg   F 7.95   3.90  9.89 13.58  December 2016.0
## 1263  K.elegans        Leesburg   F 7.03   3.24  8.41 11.73  December 2016.0
## 1264  K.elegans        Leesburg   M 5.34   3.01  8.24 11.57  December 2016.0
## 1265  K.elegans        Leesburg   F 7.85   3.49  9.56 12.87  December 2016.0
## 1266  K.elegans        Leesburg   M 5.51   3.10  8.46 11.39  December 2016.0
## 1267  K.elegans        Leesburg   M 5.53   2.93  7.87 10.89  December 2016.0
## 1268  K.elegans        Leesburg   F 8.14   3.60  9.86 13.38  December 2016.0
## 1269  K.elegans        Leesburg   F 7.57   3.59  9.45 12.59  December 2016.0
## 1270  K.elegans        Leesburg   M 5.75   2.99  8.31 11.22  December 2016.0
## 1271  K.elegans        Leesburg   F 7.08   3.28  8.82 12.31  December 2016.0
## 1272  K.elegans        Leesburg   M 5.80   3.02  8.09 11.35  December 2016.0
## 1273  K.elegans        Leesburg   M 5.71   3.11  8.65 11.50  December 2016.0
## 1274  K.elegans        Leesburg   M 5.96   3.13  9.04 11.73  December 2016.0
## 1275  K.elegans        Leesburg   M 5.80   3.16  8.35 11.48  December 2016.0
## 1276  K.elegans        Leesburg   M 5.76   3.13  8.55 11.54  December 2016.0
## 1277  K.elegans        Leesburg   M 5.36   3.01  8.16 11.00  December 2016.0
## 1278 C.corindum  Plantation_Key   M 5.74   2.88  5.84  8.81  December 2016.0
## 1279 C.corindum  Plantation_Key   M 6.08   3.07  8.34 11.39  December 2016.0
## 1280 C.corindum  Plantation_Key   M 6.01   2.91  8.53 11.43  December 2016.0
## 1281 C.corindum  Plantation_Key   M 5.52   2.71  4.53  7.49  December 2016.0
## 1282 C.corindum  Plantation_Key   F 7.97   3.46  9.34 12.57  December 2016.0
## 1283 C.corindum  Plantation_Key   M 5.99   3.11  8.52 11.44  December 2016.0
## 1284 C.corindum  Plantation_Key   F 6.38   2.93  5.27  8.78  December 2016.0
## 1285 C.corindum  Plantation_Key   M 5.29   2.81  7.84 10.53  December 2016.0
## 1286 C.corindum  Plantation_Key   F 8.61   3.57  9.31 12.50  December 2016.0
## 1287 C.corindum  Plantation_Key   F 6.55   2.91  5.08  8.44  December 2016.0
## 1288 C.corindum  Plantation_Key   F 7.50   3.12  8.53 11.87  December 2016.0
## 1289 C.corindum  Plantation_Key   F 6.41   3.04  5.56  8.70  December 2016.0
## 1290 C.corindum  Plantation_Key   M 5.67   2.83  4.47  7.95  December 2016.0
## 1291 C.corindum  Plantation_Key   F 6.24   2.86  5.17  8.67  December 2016.0
## 1292 C.corindum  Plantation_Key   F 6.58   3.13  5.72  9.55  December 2016.0
## 1293 C.corindum  Plantation_Key   F 8.05   3.24  8.63 12.11  December 2016.0
## 1294 C.corindum  Plantation_Key   M 5.74   3.03  7.24 10.23  December 2016.0
## 1295 C.corindum  Plantation_Key   F 8.89   3.63  9.78 13.30  December 2016.0
## 1296 C.corindum  Plantation_Key   F 7.93   3.22  9.41 12.58  December 2016.0
## 1297 C.corindum  Plantation_Key   F 7.88   3.61 10.08 13.71  December 2016.0
## 1298 C.corindum  Plantation_Key   F 6.72   3.19  4.89  8.62  December 2016.0
## 1299 C.corindum  Plantation_Key   F 6.28   2.93  5.10  8.38  December 2016.0
## 1300 C.corindum  Plantation_Key   M 5.89   2.82  8.18 11.14  December 2016.0
## 1301 C.corindum  Plantation_Key   F 7.34   3.20  6.99 10.12  December 2016.0
## 1302 C.corindum  Plantation_Key   M 5.58   2.72  4.67  7.77  December 2016.0
## 1303 C.corindum  Plantation_Key   M 5.88   2.65  7.23  9.97  December 2016.0
## 1304 C.corindum  Plantation_Key   M 6.04   3.03  7.82 10.65  December 2016.0
## 1305 C.corindum  Plantation_Key   F 6.54   2.94  6.09  9.37  December 2016.0
## 1306 C.corindum  Plantation_Key   F 7.30   3.30  8.84 12.17  December 2016.0
## 1307 C.corindum  Plantation_Key   M 5.92   2.99  7.88 10.97  December 2016.0
## 1308 C.corindum  Plantation_Key   M 6.73   3.45  8.99 12.31  December 2016.0
## 1309 C.corindum  Plantation_Key   M 5.37   2.69  7.03  9.69  December 2016.0
## 1310 C.corindum  Plantation_Key   M 6.31   3.06  8.33 11.30  December 2016.0
## 1311 C.corindum  Plantation_Key   M 6.11   2.97  7.86 10.74  December 2016.0
## 1312 C.corindum  Plantation_Key   M 5.30   2.29  3.79  6.71  December 2016.0
## 1313 C.corindum  Plantation_Key   F 6.54   3.02  4.94  8.47  December 2016.0
## 1314 C.corindum  Plantation_Key   M 5.90   2.89  7.57 10.37  December 2016.0
## 1315  K.elegans     Gainesville   M 5.92   3.08  8.53 11.48    August 2017.0
## 1316  K.elegans     Gainesville   M 5.57   2.98  8.21 11.43    August 2017.0
## 1317  K.elegans     Gainesville   F 7.84   3.57  9.31 12.80    August 2017.0
## 1318  K.elegans     Gainesville   F 6.76   2.97  6.83 10.16    August 2017.0
## 1319  K.elegans     Gainesville   M 5.73   3.10  8.73 11.91    August 2017.0
## 1320  K.elegans     Gainesville   M 5.59   2.67  7.42 10.22    August 2017.0
## 1321  K.elegans     Gainesville   F 6.62   2.79  6.21  9.58    August 2017.0
## 1322  K.elegans     Gainesville   F 6.40   3.22  8.52 11.83    August 2017.0
## 1323  K.elegans     Gainesville   F 6.84   3.61  9.66 12.85    August 2017.0
## 1324  K.elegans     Gainesville   M 5.80   3.18  8.77 12.05    August 2017.0
## 1325  K.elegans     Gainesville   M 5.69   3.05  8.19 11.34    August 2017.0
## 1326  K.elegans     Gainesville   M 5.44   2.80  7.65 10.58    August 2017.0
## 1327  K.elegans     Gainesville   F 7.53   3.33  8.69 11.96    August 2017.0
## 1328  K.elegans     Gainesville   F 6.69   3.51  9.35 12.90    August 2017.0
## 1329  K.elegans     Gainesville   M 5.67   2.87  8.20 11.05    August 2017.0
## 1330  K.elegans     Gainesville   M 5.48   2.96  7.91 10.97    August 2017.0
## 1331  K.elegans     Gainesville   F 6.75   2.99  6.25  9.72    August 2017.0
## 1332  K.elegans     Gainesville   F 7.34   3.51  9.05 12.46    August 2017.0
## 1333  K.elegans     Gainesville   F 6.73   3.35  8.46 12.03    August 2017.0
## 1334  K.elegans     Gainesville   F 7.18   3.16  8.60 12.03    August 2017.0
## 1335  K.elegans     Gainesville   F 8.99   3.80 10.70 14.25    August 2017.0
## 1336  K.elegans     Gainesville   F 7.06   3.34  8.79 12.06    August 2017.0
## 1337  K.elegans     Gainesville   M 5.39   2.81  7.89 10.62    August 2017.0
## 1338  K.elegans     Gainesville   M 5.56   2.92  7.81 10.51    August 2017.0
## 1339  K.elegans     Gainesville   M 5.66   2.98  8.13 11.11    August 2017.0
## 1340  K.elegans     Gainesville   M 5.67   2.83  6.07  9.21    August 2017.0
## 1341  K.elegans     Gainesville   F 7.65   3.46  9.35 12.88    August 2017.0
## 1342  K.elegans     Gainesville   F 7.47   3.27  7.99 11.70    August 2017.0
## 1343  K.elegans     Gainesville   M 5.60   2.97  8.06 10.96    August 2017.0
## 1344  K.elegans     Gainesville   F 7.11   3.19  8.55 11.78    August 2017.0
## 1345  K.elegans     Gainesville   F 7.03   3.30  8.85 12.31    August 2017.0
## 1346  K.elegans     Gainesville   F 7.48   3.55  9.14 12.64    August 2017.0
## 1347  K.elegans     Gainesville   M 5.87   3.17  8.08 11.19    August 2017.0
## 1348  K.elegans     Gainesville   M 5.50   3.04  8.48 11.37    August 2017.0
## 1349  K.elegans     Gainesville   M 5.95   3.27  8.95 12.13    August 2017.0
## 1350  K.elegans     Gainesville   M 5.25   2.90  7.83 11.04    August 2017.0
## 1351  K.elegans     Gainesville   F 6.84   3.58  9.81 13.52    August 2017.0
## 1352  K.elegans     Gainesville   F 7.43   3.45  9.42 12.99    August 2017.0
## 1353  K.elegans     Gainesville   M 5.46   3.03  8.37 11.48    August 2017.0
## 1354  K.elegans     Gainesville   M 5.92   2.91  7.79 10.71    August 2017.0
## 1355  K.elegans     Gainesville   F 7.82   3.55  9.68 13.31    August 2017.0
## 1356  K.elegans     Gainesville   M 5.68   3.31  8.98 12.32    August 2017.0
## 1357  K.elegans     Gainesville   F 7.85   3.54  9.65 12.38    August 2017.0
## 1358  K.elegans     Gainesville   F 6.38   2.84  4.82  8.36    August 2017.0
## 1359  K.elegans     Gainesville   M 5.37   3.03  8.44 11.02    August 2017.0
## 1360  K.elegans     Gainesville   F 8.10   3.60  9.91 13.67    August 2017.0
## 1361  K.elegans     Gainesville   M 5.48   2.97  8.37 11.40    August 2017.0
## 1362  K.elegans     Gainesville   M 5.62   2.93  8.18 11.02    August 2017.0
## 1363  K.elegans     Gainesville   F 7.08   3.33  8.85 12.11    August 2017.0
## 1364  K.elegans     Gainesville   M 5.44   2.86  7.20  9.91    August 2017.0
## 1365  K.elegans     Gainesville   M 5.47   3.14  8.59 11.77    August 2017.0
## 1366  K.elegans     Gainesville   F 7.67   3.49  9.80 13.48    August 2017.0
## 1367  K.elegans     Gainesville   M 5.67   3.08  8.41 11.17    August 2017.0
## 1368  K.elegans     Gainesville   F 8.56   3.55  9.73 13.25    August 2017.0
## 1369  K.elegans     Gainesville   F 6.92   3.44  8.95 12.66    August 2017.0
## 1370  K.elegans     Gainesville   M 5.83   2.87  7.83 10.82    August 2017.0
## 1371  K.elegans     Gainesville   F 7.11   3.42  8.95 12.28    August 2017.0
## 1372  K.elegans     Gainesville   F 7.46   3.51  9.30 12.71    August 2017.0
## 1373  K.elegans     Gainesville   M 5.28   2.68  7.70 10.47    August 2017.0
## 1374  K.elegans     Gainesville   M 5.34   2.68  5.96  8.92    August 2017.0
## 1375  K.elegans       Homestead   M 5.80   3.21  8.46 11.62    August 2017.0
## 1376  K.elegans       Homestead   F 7.05   3.04  6.30  9.60    August 2017.0
## 1377  K.elegans       Homestead   F 7.39   3.46  9.09 12.39    August 2017.0
## 1378  K.elegans       Homestead   M 6.02   3.24  8.55 11.33    August 2017.0
## 1379  K.elegans       Homestead   F 6.39   2.96  4.93  8.04    August 2017.0
## 1380  K.elegans       Homestead   F 7.83   3.43  9.25 12.60    August 2017.0
## 1381  K.elegans       Homestead   F 8.89   3.90  9.99 13.76    August 2017.0
## 1382  K.elegans       Homestead   F 7.86   3.58  8.99 12.49    August 2017.0
## 1383  K.elegans       Homestead   M 5.68   3.00  8.08 10.99    August 2017.0
## 1384  K.elegans       Homestead   M 5.48   2.79  7.98 10.65    August 2017.0
## 1385  K.elegans       Homestead   M 5.78   2.99  8.22 11.16    August 2017.0
## 1386  K.elegans       Homestead   F 8.81   3.74 10.08 13.82    August 2017.0
## 1387  K.elegans       Homestead   M 5.90   3.18  8.18 11.30    August 2017.0
## 1388  K.elegans       Homestead   F 7.85   3.46  9.00 12.34    August 2017.0
## 1389  K.elegans       Homestead   M 5.99   3.22  8.19 11.34    August 2017.0
## 1390  K.elegans       Homestead   M 5.89   3.14  8.51 11.60    August 2017.0
## 1391  K.elegans       Homestead   M 5.68   2.84  7.25 10.43    August 2017.0
## 1392  K.elegans       Homestead   M 5.71   2.95  7.97 10.84    August 2017.0
## 1393  K.elegans       Homestead   F 6.05   2.96  5.20  8.49    August 2017.0
## 1394  K.elegans       Homestead   M 5.95   3.20  8.29 11.55    August 2017.0
## 1395  K.elegans       Homestead   M 5.88   3.31  9.01 12.33    August 2017.0
## 1396  K.elegans       Homestead   F 7.43   3.14  8.55 11.90    August 2017.0
## 1397  K.elegans       Homestead   M 6.10   3.28  8.68 11.80    August 2017.0
## 1398  K.elegans       Homestead   M 6.02   3.29  8.93 12.16    August 2017.0
## 1399  K.elegans       Homestead   F 7.89   3.54  9.28 12.84    August 2017.0
## 1400  K.elegans       Homestead   M 6.08   3.46  8.94 11.94    August 2017.0
## 1401  K.elegans       Homestead   M 6.29   3.49  9.01 12.29    August 2017.0
## 1402  K.elegans       Homestead   M 5.63   3.10  7.92 10.91    August 2017.0
## 1403  K.elegans       Homestead   M 5.84   2.71  4.63  7.42    August 2017.0
## 1404  K.elegans       Homestead   M 5.95   3.18  8.97 12.01    August 2017.0
## 1405  K.elegans       Homestead   F 7.95   3.48  9.70 13.37    August 2017.0
## 1406  K.elegans       Homestead   F 7.56   3.40  8.15 12.18    August 2017.0
## 1407  K.elegans       Homestead   M 5.38   2.92  6.92  9.71    August 2017.0
## 1408  K.elegans       Homestead   M 5.36   2.74  5.75  8.76    August 2017.0
## 1409  K.elegans       Homestead   F 8.61   3.86 10.35 13.76    August 2017.0
## 1410  K.elegans       Homestead   F 7.69   3.44  9.22 12.66    August 2017.0
## 1411  K.elegans       Homestead   M 6.06   2.83  7.57 10.48    August 2017.0
## 1412  K.elegans       Homestead   M 6.13   3.27  9.02 11.98    August 2017.0
## 1413  K.elegans       Homestead   F 7.26   3.26  8.58 11.58    August 2017.0
## 1414  K.elegans       Homestead   F 8.12   3.49  9.35 13.06    August 2017.0
## 1415  K.elegans       Homestead   M 5.61   2.89  7.78 10.63    August 2017.0
## 1416  K.elegans       Homestead   F 8.63   3.88 10.09 13.61    August 2017.0
## 1417  K.elegans       Homestead   F 7.59   3.72  9.17 12.71    August 2017.0
## 1418  K.elegans       Homestead   F 5.97   2.82  4.48  7.75    August 2017.0
## 1419  K.elegans       Homestead   M 5.42   2.81  7.66 10.58    August 2017.0
## 1420  K.elegans       Homestead   F 7.54   3.30  9.21 12.52    August 2017.0
## 1421  K.elegans       Homestead   F 8.03   3.55  9.33 12.75    August 2017.0
## 1422  K.elegans       Homestead   M 5.71   2.93  7.47 10.63    August 2017.0
## 1423  K.elegans       Homestead   F 8.36   3.54  9.73 13.10    August 2017.0
## 1424  K.elegans       Homestead   F 8.13   3.57  9.59 12.98    August 2017.0
## 1425  K.elegans       Homestead   M 5.96   3.22  8.88 11.78    August 2017.0
## 1426  K.elegans       Homestead   F 7.46   3.39  9.62 12.76    August 2017.0
## 1427  K.elegans       Homestead   M 5.65   3.13  8.47 11.50    August 2017.0
## 1428  K.elegans       Homestead   F 7.49   3.43  9.13 12.26    August 2017.0
## 1429  K.elegans       Homestead   F 8.49   3.95 10.46 14.13    August 2017.0
## 1430  K.elegans       Homestead   F 7.61   3.53  9.00 11.89    August 2017.0
## 1431  K.elegans       Homestead   F 6.95   3.32  8.99 12.18    August 2017.0
## 1432  K.elegans       Homestead   M 5.76   3.12  8.63 11.80    August 2017.0
## 1433  K.elegans       Homestead   F 8.66   3.94 10.97 14.80    August 2017.0
## 1434  K.elegans       Homestead   F 8.79   3.92 10.20 13.80    August 2017.0
## 1435  K.elegans       Homestead   F 8.29   3.95 10.72 14.11    August 2017.0
## 1436  K.elegans       Homestead   M 5.81   3.40  9.35 12.42    August 2017.0
## 1437  K.elegans       Homestead   M 5.88   3.37  8.93 11.73    August 2017.0
## 1438  K.elegans       Homestead   F 8.76   4.02 10.54 14.41    August 2017.0
## 1439  K.elegans       Homestead   M 6.02   3.10  8.54 11.67    August 2017.0
## 1440  K.elegans       Homestead   M 6.07   3.26  8.94 12.04    August 2017.0
## 1441  K.elegans       Homestead   M 6.10   3.25  8.98 12.14    August 2017.0
## 1442  K.elegans       Homestead   M 6.11   3.29  8.55 11.61    August 2017.0
## 1443  K.elegans       Homestead   M 5.71   3.09  8.73 11.55    August 2017.0
## 1444  K.elegans       Homestead   M 5.88   3.11  8.59 11.26    August 2017.0
## 1445  K.elegans       Homestead   F 8.35   4.13 10.51 13.98    August 2017.0
## 1446  K.elegans       Homestead   F 8.46   3.81 10.46 14.05    August 2017.0
## 1447  K.elegans       Homestead   M 5.63   3.03  7.93 10.62    August 2017.0
## 1448  K.elegans       Homestead   M 5.70   3.17  8.76 11.99    August 2017.0
## 1449  K.elegans       Homestead   F 8.05   3.95 10.64 13.99    August 2017.0
## 1450  K.elegans       Homestead   M 5.79   3.21  8.85 12.08    August 2017.0
## 1451  K.elegans       Homestead   F 8.38   3.55 10.41 13.74    August 2017.0
## 1452  K.elegans       Homestead   M 5.78   3.30  8.95 12.07    August 2017.0
## 1453  K.elegans       Homestead   F 8.62   3.70  9.84 13.65    August 2017.0
## 1454  K.elegans       Homestead   M 5.74   2.80  8.00 10.92    August 2017.0
## 1455  K.elegans       Homestead   M 5.64   3.27  8.67 11.82    August 2017.0
## 1456  K.elegans       Homestead   F 7.66   3.72 10.19 13.52    August 2017.0
## 1457  K.elegans       Homestead   M 5.73   3.26  8.71 11.80    August 2017.0
## 1458  K.elegans       Homestead   M 5.73   3.14  8.46 11.66    August 2017.0
## 1459  K.elegans       Homestead   F 8.41   4.06 10.39 14.07    August 2017.0
## 1460  K.elegans       Homestead   F 8.06   3.58  9.77 12.98    August 2017.0
## 1461  K.elegans       Homestead   M 5.62   3.05  8.23 10.99    August 2017.0
## 1462  K.elegans       Homestead   F 8.02   3.69  9.92 14.00    August 2017.0
## 1463  K.elegans       Homestead   M 5.82   3.42  9.26 12.24    August 2017.0
## 1464  K.elegans       Homestead   F 7.96   3.87 10.32 13.76    August 2017.0
## 1465  K.elegans       Homestead   F 8.24   3.63  9.63 13.12    August 2017.0
## 1466  K.elegans       Homestead   F 8.15   3.85 10.44 13.75    August 2017.0
## 1467  K.elegans       Homestead   F 8.17   3.61 10.16 13.78    August 2017.0
## 1468  K.elegans       Homestead   M 5.81   3.22  8.71 11.87    August 2017.0
## 1469  K.elegans       Homestead   F 8.02   3.54  9.53 12.87    August 2017.0
## 1470  K.elegans       Homestead   M 5.69   3.15  8.83 11.59    August 2017.0
## 1471  K.elegans       Homestead   M 5.53   2.78  7.84 10.78    August 2017.0
## 1472  K.elegans       Homestead   M 6.04   3.25  8.95 12.14    August 2017.0
## 1473  K.elegans       Homestead   F 8.48   4.09 10.25 13.57    August 2017.0
## 1474  K.elegans       Homestead   F 8.25   3.75  9.95 13.07    August 2017.0
## 1475  K.elegans       Homestead   M 6.04   3.43  8.84 11.98    August 2017.0
## 1476  K.elegans       Homestead   F 7.96   3.54  9.45 12.63    August 2017.0
## 1477  K.elegans       Homestead   F 8.14   3.76 10.05 13.51    August 2017.0
## 1478  K.elegans       Homestead   F 8.05   3.71  9.58 13.32    August 2017.0
## 1479  K.elegans       Homestead   F 8.42   3.68  9.65 13.50    August 2017.0
## 1480  K.elegans       Homestead   F 7.85   3.82  9.99 13.14    August 2017.0
## 1481  K.elegans       Homestead   M 5.89   3.22  8.52 11.31    August 2017.0
## 1482  K.elegans       Homestead   F 7.97   3.98 10.60 14.21    August 2017.0
## 1483  K.elegans       Homestead   F 8.57   3.78  9.82 13.34    August 2017.0
## 1484  K.elegans       Homestead   F 8.02   3.36  9.43 12.81    August 2017.0
## 1485  K.elegans       Homestead   F 7.97   3.73 10.15 13.65    August 2017.0
## 1486  K.elegans       Homestead   F 8.81   3.85 10.26 13.62    August 2017.0
## 1487  K.elegans       Homestead   M 5.69   2.92  8.13 10.95    August 2017.0
## 1488  K.elegans       Homestead   M 6.14   3.27  9.00 12.19    August 2017.0
## 1489  K.elegans       Homestead   M 5.95   3.23  8.92 12.04    August 2017.0
## 1490  K.elegans       Homestead   F 7.60   3.07  8.50 11.54    August 2017.0
## 1491  K.elegans       Homestead   M 6.06   3.27  8.80 12.00    August 2017.0
## 1492  K.elegans       Homestead   M 5.85   3.26  8.84 11.70    August 2017.0
## 1493  K.elegans       Homestead   F 8.24   3.62  9.87 13.35    August 2017.0
## 1494  K.elegans       Homestead   M 5.85   3.15  8.50 11.34    August 2017.0
## 1495  K.elegans       Homestead   F 8.39   3.73 10.50 14.35    August 2017.0
## 1496  K.elegans       Homestead   M 6.05   3.10  8.79 11.74    August 2017.0
## 1497  K.elegans       Homestead   M 5.65   3.33  9.08 11.91    August 2017.0
## 1498  K.elegans       Homestead   F 8.62   3.78  9.92 13.67    August 2017.0
## 1499  K.elegans       Homestead   M 5.99   3.13  8.54 11.67    August 2017.0
## 1500  K.elegans       Homestead   M 5.99   3.26  9.14 12.08    August 2017.0
## 1501  K.elegans       Homestead   M 5.71   2.97  8.82 11.42    August 2017.0
## 1502 C.corindum       Key_Largo   F 8.89   3.62  9.34 12.55    August 2017.0
## 1503 C.corindum       Key_Largo   M 5.97   3.01  8.30 10.89    August 2017.0
## 1504 C.corindum       Key_Largo   M 6.20   2.90  8.36 11.30    August 2017.0
## 1505 C.corindum       Key_Largo   M 5.63   2.66  4.76  7.86    August 2017.0
## 1506 C.corindum       Key_Largo   F 7.90   3.12  8.64 12.02    August 2017.0
## 1507 C.corindum       Key_Largo   M 6.29   3.10  8.06 11.34    August 2017.0
## 1508 C.corindum       Key_Largo   M 5.79   2.74  7.53 10.50    August 2017.0
## 1509 C.corindum       Key_Largo   M 5.31   2.75  7.39 10.03    August 2017.0
## 1510 C.corindum       Key_Largo   F 8.29   3.47  9.34 12.95    August 2017.0
## 1511 C.corindum       Key_Largo   M 5.86   2.94  7.64 10.65    August 2017.0
## 1512 C.corindum       Key_Largo   F 7.95   3.34  9.20 12.71    August 2017.0
## 1513 C.corindum       Key_Largo   M 5.41   2.71  4.76  7.88    August 2017.0
## 1514 C.corindum       Key_Largo   M 6.08   3.07  8.14 11.48    August 2017.0
## 1515 C.corindum       Key_Largo   M 6.24   3.05  7.92 10.78    August 2017.0
## 1516 C.corindum       Key_Largo   M 6.35   2.89  8.13 11.08    August 2017.0
## 1517 C.corindum       Key_Largo   F 7.33   3.32  8.24 11.52    August 2017.0
## 1518 C.corindum       Key_Largo   M 6.07   3.10  7.99 11.07    August 2017.0
## 1519 C.corindum       Key_Largo   M 5.80   3.08  8.58 11.59    August 2017.0
## 1520 C.corindum       Key_Largo   F 8.03   3.44  9.05 12.44    August 2017.0
## 1521 C.corindum       Key_Largo   F 7.96   3.33  8.46 11.96    August 2017.0
## 1522 C.corindum       Key_Largo   F 8.09   3.43  8.98 12.46    August 2017.0
## 1523 C.corindum       Key_Largo   F 7.86   3.62  9.39 13.27    August 2017.0
## 1524 C.corindum       Key_Largo   M 5.28   2.59  4.69  7.45    August 2017.0
## 1525 C.corindum       Key_Largo   M 5.00   2.52  4.50  7.44    August 2017.0
## 1526 C.corindum       Key_Largo   F 7.96   3.04  8.80 11.94    August 2017.0
## 1527 C.corindum       Key_Largo   F 8.38   3.67 10.16 13.81    August 2017.0
## 1528 C.corindum       Key_Largo   M 5.90   3.21  8.31 11.65    August 2017.0
## 1529 C.corindum       Key_Largo   M 5.50   2.63  6.79  9.59    August 2017.0
## 1530 C.corindum       Key_Largo   F 9.01   3.67  9.96 13.60    August 2017.0
## 1531 C.corindum       Key_Largo   F 7.00   3.54  9.55 12.94    August 2017.0
## 1532 C.corindum       Key_Largo   M 5.90   3.09  8.13 11.13    August 2017.0
## 1533 C.corindum       Key_Largo   M 5.79   2.73  7.36 10.02    August 2017.0
## 1534 C.corindum       Key_Largo   M 6.20   2.82  7.73 10.70    August 2017.0
## 1535 C.corindum       Key_Largo   M 5.38   2.73  5.32  7.98    August 2017.0
## 1536 C.corindum       Key_Largo   M 6.11   2.88  7.90 10.99    August 2017.0
## 1537 C.corindum North_Key_Largo   M 6.85   3.40  9.18 12.30    August 2017.0
## 1538 C.corindum North_Key_Largo   F 8.90   3.48  9.10 12.57    August 2017.0
## 1539 C.corindum North_Key_Largo   M 6.32   3.03  8.02 10.63    August 2017.0
## 1540 C.corindum North_Key_Largo   F 8.16   3.47  9.17 12.60    August 2017.0
## 1541 C.corindum North_Key_Largo   M 5.60   2.65  4.81  7.93    August 2017.0
## 1542 C.corindum North_Key_Largo   M 6.36   3.26  8.97 12.28    August 2017.0
## 1543 C.corindum North_Key_Largo   F 8.04   3.78 10.20 13.79    August 2017.0
## 1544 C.corindum North_Key_Largo   F 7.49   3.14  8.41 11.86    August 2017.0
## 1545 C.corindum North_Key_Largo   F 6.76   2.79  4.87  8.08    August 2017.0
## 1546 C.corindum North_Key_Largo   F 6.31   2.90  4.91  8.42    August 2017.0
## 1547 C.corindum North_Key_Largo   M 6.01   3.29  8.20 11.51    August 2017.0
## 1548 C.corindum North_Key_Largo   F 8.72   3.48  9.27 12.82    August 2017.0
## 1549 C.corindum North_Key_Largo   F 6.86   2.83  4.91  8.11    August 2017.0
## 1550 C.corindum North_Key_Largo   M 6.65   3.04  8.49 11.63    August 2017.0
## 1551 C.corindum North_Key_Largo   M 5.48   2.54  4.81  7.75    August 2017.0
## 1552 C.corindum North_Key_Largo   M 5.20   2.47  4.68  7.55    August 2017.0
## 1553 C.corindum North_Key_Largo   F 9.40   3.65  9.76 13.39    August 2017.0
## 1554 C.corindum North_Key_Largo   M 6.01   3.04  8.89 11.88    August 2017.0
## 1555 C.corindum North_Key_Largo   F 6.70   2.93  4.98  8.52    August 2017.0
## 1556 C.corindum North_Key_Largo   M 6.20   2.99  7.84 10.77    August 2017.0
## 1557 C.corindum North_Key_Largo   M 5.65   2.79  7.59 10.45    August 2017.0
## 1558 C.corindum North_Key_Largo   F 9.17   3.99 10.33 14.32    August 2017.0
## 1559 C.corindum North_Key_Largo   M 5.94   3.00  8.39 11.52    August 2017.0
## 1560 C.corindum North_Key_Largo   F 6.79   2.93  5.15  8.35    August 2017.0
## 1561 C.corindum North_Key_Largo   M 6.88   3.26  9.02 12.12    August 2017.0
## 1562 C.corindum North_Key_Largo   M 5.53   2.62  4.89  7.85    August 2017.0
## 1563 C.corindum North_Key_Largo   M 5.21   2.32  3.98  6.88    August 2017.0
## 1564 C.corindum North_Key_Largo   M 5.26   2.33  4.33  7.29    August 2017.0
## 1565 C.corindum North_Key_Largo   M 5.13   2.56  4.48  7.58    August 2017.0
## 1566 C.corindum North_Key_Largo   M 5.33   2.55  4.31  7.06    August 2017.0
## 1567 C.corindum North_Key_Largo   F 8.15   3.22  6.24  9.71    August 2017.0
## 1568 C.corindum North_Key_Largo   M 5.98   2.64  7.43 10.46    August 2017.0
## 1569 C.corindum North_Key_Largo   M 5.66   2.74  4.67  7.68    August 2017.0
## 1570 C.corindum North_Key_Largo   M 5.68   2.87  7.89 10.77    August 2017.0
## 1571 C.corindum North_Key_Largo   M 5.28   2.43  5.52  8.46    August 2017.0
## 1572 C.corindum North_Key_Largo   F 6.84   2.85  5.20  8.67    August 2017.0
## 1573 C.corindum North_Key_Largo   M 6.01   3.01  8.24 11.47    August 2017.0
## 1574 C.corindum North_Key_Largo   F 8.52   3.71  9.07 12.95    August 2017.0
## 1575 C.corindum North_Key_Largo   F 8.07   3.64 10.06 13.91    August 2017.0
## 1576 C.corindum North_Key_Largo   F 8.40   3.32  8.88 12.19    August 2017.0
## 1577 C.corindum North_Key_Largo   M 5.78   2.89  8.58 11.32    August 2017.0
## 1578 C.corindum North_Key_Largo   F 8.38   3.30  9.07 12.35    August 2017.0
## 1579 C.corindum North_Key_Largo   F 8.47   3.57  9.89 13.69    August 2017.0
## 1580 C.corindum North_Key_Largo   F 7.40   3.14  8.50 11.70    August 2017.0
## 1581 C.corindum North_Key_Largo   M 6.27   3.31  8.77 11.71    August 2017.0
## 1582 C.corindum North_Key_Largo   M 5.51   2.79  7.09 10.07    August 2017.0
## 1583 C.corindum North_Key_Largo   F 8.70   3.58  9.94 13.77    August 2017.0
## 1584 C.corindum North_Key_Largo   M 5.63   3.07  9.36 12.35    August 2017.0
## 1585 C.corindum North_Key_Largo   M 6.37   2.90  7.77 10.61    August 2017.0
## 1586 C.corindum North_Key_Largo   M 5.24   2.49  4.45  7.23    August 2017.0
## 1587 C.corindum North_Key_Largo   M 5.29   2.43  6.82  9.57    August 2017.0
## 1588 C.corindum North_Key_Largo   M 5.26   2.53  4.50  7.49    August 2017.0
## 1589 C.corindum North_Key_Largo   F 7.79   3.24  8.43 11.77    August 2017.0
## 1590 C.corindum North_Key_Largo   M 5.64   2.75  7.54 10.07    August 2017.0
## 1591 C.corindum North_Key_Largo   F 8.38   3.31  9.40 12.82    August 2017.0
## 1592 C.corindum North_Key_Largo   F 6.40   3.00  7.98 11.03    August 2017.0
## 1593 C.corindum North_Key_Largo   M 5.54   2.48  4.60  7.57    August 2017.0
## 1594  K.elegans      Lake_Wales   M 5.60   3.09  8.75 11.98    August 2017.0
## 1595  K.elegans      Lake_Wales   F 7.54   3.79  9.84 13.27    August 2017.0
## 1596  K.elegans      Lake_Wales   F 7.18   3.33  9.00 12.33    August 2017.0
## 1597  K.elegans      Lake_Wales   M 5.52   3.01  7.97 10.92    August 2017.0
## 1598  K.elegans      Lake_Wales   F 7.29   3.36  8.95 12.59    August 2017.0
## 1599  K.elegans      Lake_Wales   M 5.52   3.10  8.26 11.30    August 2017.0
## 1600  K.elegans      Lake_Wales   F 7.53   3.44  9.56 12.97    August 2017.0
## 1601  K.elegans      Lake_Wales   M 5.85   3.06  8.25 11.23    August 2017.0
## 1602  K.elegans      Lake_Wales   F 8.08   3.66  9.70 13.37    August 2017.0
## 1603  K.elegans      Lake_Wales   M 5.58   2.74  7.81 10.65    August 2017.0
## 1604  K.elegans      Lake_Wales   M 5.79   2.87  7.94 10.97    August 2017.0
## 1605  K.elegans      Lake_Wales   M 5.71   3.04  8.45 11.55    August 2017.0
## 1606  K.elegans      Lake_Wales   F 8.23   3.64  9.75 13.28    August 2017.0
## 1607  K.elegans      Lake_Wales   F 7.58   3.53  9.39 12.81    August 2017.0
## 1608  K.elegans      Lake_Wales   F 7.55   3.48  9.09 12.45    August 2017.0
## 1609  K.elegans      Lake_Wales   F 5.96   2.66  4.88  7.94    August 2017.0
## 1610  K.elegans      Lake_Wales   F 7.82   3.49  9.23 12.49    August 2017.0
## 1611  K.elegans      Lake_Wales   M 5.19   2.81  4.99  7.95    August 2017.0
## 1612  K.elegans      Lake_Wales   M 5.32   2.98  7.59 10.58    August 2017.0
## 1613  K.elegans      Lake_Wales   F 7.72   3.47  9.48 13.06    August 2017.0
## 1614  K.elegans      Lake_Wales   M 6.03   3.22  8.52 11.54    August 2017.0
## 1615  K.elegans      Lake_Wales   M 5.68   3.14  8.26 10.91    August 2017.0
## 1616  K.elegans      Lake_Wales   M 5.86   3.12  8.50 11.28    August 2017.0
## 1617  K.elegans      Lake_Wales   F 7.45   3.63  9.27 12.65    August 2017.0
## 1618  K.elegans      Lake_Wales   M 5.69   3.26  8.49 11.99    August 2017.0
## 1619  K.elegans      Lake_Wales   F 6.05   2.84  6.19  9.64    August 2017.0
## 1620  K.elegans      Lake_Wales   F 7.71   3.61  9.40 12.95    August 2017.0
## 1621  K.elegans      Lake_Wales   M 5.63   2.88  7.81 10.49    August 2017.0
## 1622  K.elegans      Lake_Wales   M 5.68   3.26  8.37 11.14    August 2017.0
## 1623  K.elegans      Lake_Wales   M 5.51   2.83  7.89 10.83    August 2017.0
## 1624  K.elegans      Lake_Wales   F 7.21   3.31  9.06 12.56    August 2017.0
## 1625  K.elegans      Lake_Wales   M 5.71   3.30  8.83 12.12    August 2017.0
## 1626  K.elegans      Lake_Wales   F 8.49   3.70 10.05 14.07    August 2017.0
## 1627  K.elegans      Lake_Wales   M 5.47   2.98  8.13 11.14    August 2017.0
## 1628  K.elegans      Lake_Wales   F 7.32   2.84  6.04  9.60    August 2017.0
## 1629  K.elegans      Lake_Wales   F 6.78   3.09  6.87 10.42    August 2017.0
## 1630  K.elegans      Lake_Wales   M 5.51   3.16  8.89 12.16    August 2017.0
## 1631  K.elegans      Lake_Wales   F 7.78   3.51  9.07 12.70    August 2017.0
## 1632  K.elegans      Lake_Wales   F 7.71     NA  9.59 13.19    August 2017.0
## 1633  K.elegans      Lake_Wales   M 5.26   2.65  5.38  8.32    August 2017.0
## 1634  K.elegans      Lake_Wales   F 5.71   2.73  4.71  7.93    August 2017.0
## 1635  K.elegans      Lake_Wales   M 5.48   2.88  8.10 11.41    August 2017.0
## 1636  K.elegans      Lake_Wales   M 5.83   3.18  8.51 11.70    August 2017.0
## 1637  K.elegans      Lake_Wales   M 5.85   2.87  5.82  8.51    August 2017.0
## 1638  K.elegans      Lake_Wales   F 6.59   2.90  5.61  8.87    August 2017.0
## 1639  K.elegans      Lake_Wales   M 5.26   3.03  8.57 11.48    August 2017.0
## 1640  K.elegans      Lake_Wales   M 5.09   2.50  4.73  7.49    August 2017.0
## 1641  K.elegans      Lake_Wales   M 5.75   2.59  5.49  8.38    August 2017.0
## 1642  K.elegans      Lake_Wales   F 8.71   3.87 10.51 14.12    August 2017.0
## 1643  K.elegans      Lake_Wales   F 7.29   3.11  6.69 10.22    August 2017.0
## 1644  K.elegans      Lake_Wales   M 5.60   3.07  8.46 11.46    August 2017.0
## 1645  K.elegans      Lake_Wales   M 5.19   2.65  5.14  7.91    August 2017.0
## 1646  K.elegans      Lake_Wales   F 6.69   3.64  9.40 13.15    August 2017.0
## 1647  K.elegans      Lake_Wales   M 5.83   3.08  8.87 11.86    August 2017.0
## 1648  K.elegans      Lake_Wales   F 7.05   3.22  6.81 10.34    August 2017.0
## 1649  K.elegans      Lake_Wales   M 5.71   3.34  9.49 12.62    August 2017.0
## 1650  K.elegans      Lake_Wales   M 5.62   3.19  8.79 11.93    August 2017.0
## 1651  K.elegans      Lake_Wales   F 6.93   2.94  5.53  9.02    August 2017.0
## 1652  K.elegans      Lake_Wales   F 6.54   3.33  9.59 13.00    August 2017.0
## 1653  K.elegans      Lake_Wales   M 5.24   3.34  8.06 11.17    August 2017.0
## 1654  K.elegans      Lake_Wales   M 4.85   2.54  4.61  7.56    August 2017.0
## 1655  K.elegans      Lake_Wales   F 7.73   3.87  9.78 13.24    August 2017.0
## 1656  K.elegans      Lake_Wales   M 4.93   2.40  5.02  7.89    August 2017.0
## 1657  K.elegans      Lake_Wales   F 6.46   2.83  4.89  8.09    August 2017.0
## 1658  K.elegans      Lake_Wales   M 5.32   2.70  5.31  8.24    August 2017.0
## 1659  K.elegans      Lake_Wales   F 6.68   3.12  6.69 10.35    August 2017.0
## 1660  K.elegans      Lake_Wales   M 5.32   2.95  7.95 11.17    August 2017.0
## 1661  K.elegans      Lake_Wales   F 6.71   3.22  7.08 10.51    August 2017.0
## 1662  K.elegans      Lake_Wales   M 5.26   3.02  8.62 11.69    August 2017.0
## 1663  K.elegans      Lake_Wales   M 5.40   3.06  8.37 11.57    August 2017.0
## 1664  K.elegans      Lake_Wales   M 5.86   2.90  7.61 10.53    August 2017.0
## 1665  K.elegans      Lake_Wales   M 5.65   3.01  8.17 11.16    August 2017.0
## 1666  K.elegans      Lake_Wales   F 6.76   3.12  8.47 11.78    August 2017.0
## 1667  K.elegans      Lake_Wales   F 6.53   2.92  5.80  9.28    August 2017.0
## 1668  K.elegans      Lake_Wales   M 5.31   2.45  4.45  7.35    August 2017.0
## 1669  K.elegans      Lake_Wales   F 7.35   3.32  8.86 12.26    August 2017.0
## 1670  K.elegans      Lake_Wales   F 6.09   2.79  5.46  8.85    August 2017.0
## 1671  K.elegans      Lake_Wales   F 6.32   2.85  4.83  8.10    August 2017.0
## 1672  K.elegans      Lake_Wales   M 5.35   2.71  4.86  7.93    August 2017.0
## 1673  K.elegans      Lake_Wales   M 5.60     NA  8.65 11.87    August 2017.0
## 1674  K.elegans      Lake_Wales   M 5.69   2.88  5.26  8.42    August 2017.0
## 1675  K.elegans      Lake_Wales   M 4.97   2.69  7.22 10.15    August 2017.0
## 1676  K.elegans      Lake_Wales   F 6.44   2.80  5.54  8.70    August 2017.0
## 1677  K.elegans      Lake_Wales   M 5.27   2.76  6.37  9.32    August 2017.0
## 1678  K.elegans      Lake_Wales   M 5.31   2.63  6.03  8.99    August 2017.0
## 1679  K.elegans      Lake_Wales   M 5.37   2.71  5.25  8.20    August 2017.0
## 1680  K.elegans      Lake_Wales   M 5.49   3.03  7.89 10.80    August 2017.0
## 1681  K.elegans      Lake_Wales   F 6.72   3.03  5.44  8.78    August 2017.0
## 1682  K.elegans      Lake_Wales   M 5.81   3.19  8.97 12.09    August 2017.0
## 1683  K.elegans      Lake_Wales   M 5.37   2.54  6.17  9.14    August 2017.0
## 1684  K.elegans      Lake_Wales   M 5.15   2.38  5.22  7.87    August 2017.0
## 1685  K.elegans        Leesburg   M 5.23   3.05  8.75 11.43    August 2017.0
## 1686  K.elegans        Leesburg   F 7.20   3.29  9.05 12.30    August 2017.0
## 1687  K.elegans        Leesburg   F 6.22   3.12  5.57  8.95    August 2017.0
## 1688  K.elegans        Leesburg   F 5.89   2.44  4.28  7.34    August 2017.0
## 1689  K.elegans        Leesburg   F 6.66   2.69  4.63  7.87    August 2017.0
## 1690  K.elegans        Leesburg   M 6.05   3.26  8.61 11.63    August 2017.0
## 1691  K.elegans        Leesburg   F 7.11   3.20  9.13 12.30    August 2017.0
## 1692  K.elegans        Leesburg   M 5.78   2.86  8.16 11.39    August 2017.0
## 1693  K.elegans        Leesburg   M 5.72   2.89  7.89 10.72    August 2017.0
## 1694  K.elegans        Leesburg   M 5.22   2.49  4.59  7.43    August 2017.0
## 1695  K.elegans        Leesburg   M 5.35   2.80  7.71 10.49    August 2017.0
## 1696  K.elegans        Leesburg   F 7.77   3.82 10.22 13.70    August 2017.0
## 1697  K.elegans        Leesburg   F 8.44   3.66  9.83 13.58    August 2017.0
## 1698  K.elegans        Leesburg   M 5.60   2.64  7.39 10.28    August 2017.0
## 1699  K.elegans        Leesburg   F 6.12   2.82  5.54  8.80    August 2017.0
## 1700  K.elegans        Leesburg   M 5.60   2.85  6.24  8.89    August 2017.0
## 1701  K.elegans        Leesburg   F 7.75   3.48  9.70 13.37    August 2017.0
## 1702  K.elegans        Leesburg   M 5.09   2.63  5.04  7.87    August 2017.0
## 1703  K.elegans        Leesburg   F 8.14   3.70  9.78 13.30    August 2017.0
## 1704  K.elegans        Leesburg   M 5.39   2.96  8.40 11.39    August 2017.0
## 1705  K.elegans        Leesburg   M 5.87   3.00  8.18 11.47    August 2017.0
## 1706  K.elegans        Leesburg   M 5.30   2.81  7.67 10.40    August 2017.0
## 1707  K.elegans        Leesburg   M 5.17   2.72  7.45  9.98    August 2017.0
## 1708  K.elegans        Leesburg   M 5.52   2.19  4.76  7.42    August 2017.0
## 1709  K.elegans        Leesburg   M 5.36   2.75  7.85 10.61    August 2017.0
## 1710  K.elegans        Leesburg   F 7.14   3.37  9.21 12.69    August 2017.0
## 1711  K.elegans        Leesburg   F 6.05   2.69  5.12  8.21    August 2017.0
## 1712  K.elegans        Leesburg   M 5.56   2.81  8.31 11.24    August 2017.0
## 1713  K.elegans        Leesburg   F 7.01   3.15  8.52 11.79    August 2017.0
## 1714  K.elegans        Leesburg   M 5.58   2.96  8.22 11.14    August 2017.0
## 1715  K.elegans        Leesburg   M 5.55   3.00  8.20 11.17    August 2017.0
## 1716  K.elegans        Leesburg   F 7.35   3.49  9.39 12.62    August 2017.0
## 1717  K.elegans        Leesburg   M 5.41   3.07  8.53 11.59    August 2017.0
## 1718  K.elegans        Leesburg   M 5.05   2.40  4.72  7.52    August 2017.0
## 1719  K.elegans        Leesburg   F 7.22   2.92  6.21  9.71    August 2017.0
## 1720  K.elegans        Leesburg   M 5.41   2.65  7.65 10.62    August 2017.0
## 1721  K.elegans        Leesburg   M 5.27   2.87  8.08 11.12    August 2017.0
## 1722  K.elegans        Leesburg   M 5.52   2.52  5.08  7.69    August 2017.0
## 1723  K.elegans        Leesburg   M 6.27   2.84  7.42 10.06    August 2017.0
## 1724  K.elegans        Leesburg   F 7.14   3.37  9.52 12.83    August 2017.0
## 1725  K.elegans        Leesburg   M 5.13   2.53  5.36  8.26    August 2017.0
## 1726  K.elegans        Leesburg   M 5.69   2.87  8.18 11.20    August 2017.0
## 1727  K.elegans        Leesburg   F 7.82   3.43  9.52 13.21    August 2017.0
## 1728  K.elegans        Leesburg   M 5.62   3.22  8.76 11.80    August 2017.0
## 1729  K.elegans        Leesburg   F 6.54   2.73  4.81  7.94    August 2017.0
## 1730  K.elegans        Leesburg   M 4.77   2.28  3.76  6.50    August 2017.0
## 1731  K.elegans        Leesburg   M 5.86   2.74  7.90 10.71    August 2017.0
## 1732  K.elegans        Leesburg   M 5.15   2.59  7.16  9.86    August 2017.0
## 1733  K.elegans        Leesburg   M 5.52   3.09  7.91 10.68    August 2017.0
## 1734  K.elegans        Leesburg   M 5.41   2.63  5.81  8.72    August 2017.0
## 1735  K.elegans        Leesburg   M 5.09   2.67  4.86  7.78    August 2017.0
## 1736  K.elegans        Leesburg   F 5.87   2.62  4.78  7.77    August 2017.0
## 1737  K.elegans        Leesburg   M 5.30   2.55  5.91  8.91    August 2017.0
## 1738  K.elegans        Leesburg   M 5.49   2.55  4.57  7.33    August 2017.0
## 1739  K.elegans        Leesburg   M 5.07   2.39  4.33  7.14    August 2017.0
## 1740  K.elegans        Leesburg   F 5.87   2.57  4.71  7.83    August 2017.0
## 1741  K.elegans        Leesburg   F 6.72   3.05  8.26 11.43    August 2017.0
## 1742  K.elegans        Leesburg   F 6.34   2.88  4.84  7.98    August 2017.0
## 1743  K.elegans     Gainesville   M 5.59   2.77  7.70 10.83 September 2018.0
## 1744  K.elegans     Gainesville   M 5.48   2.89  8.43 11.23 September 2018.0
## 1745  K.elegans     Gainesville   M 5.66   3.02  8.78 11.95 September 2018.0
## 1746  K.elegans     Gainesville   F 8.29   3.85 10.26 14.18 September 2018.0
## 1747  K.elegans     Gainesville   F 7.54   3.42  9.12 12.19 September 2018.0
## 1748  K.elegans     Gainesville   M 5.32   2.66  7.37 10.08 September 2018.0
## 1749  K.elegans     Gainesville   M 5.72   3.14  8.98 11.90 September 2018.0
## 1750  K.elegans     Gainesville   F 7.12   3.30  9.11 12.36 September 2018.0
## 1751  K.elegans     Gainesville   F 6.43   3.40  9.34 12.37 September 2018.0
## 1752  K.elegans     Gainesville   F 7.25   3.65 10.40 13.81 September 2018.0
## 1753  K.elegans     Gainesville   F 7.36   3.25  8.89 12.16 September 2018.0
## 1754  K.elegans     Gainesville   F 8.03   3.55  9.73 13.38 September 2018.0
## 1755  K.elegans     Gainesville   F 7.21   3.01  8.60 11.69 September 2018.0
## 1756  K.elegans     Gainesville   F 6.93   3.49  9.82 13.11 September 2018.0
## 1757  K.elegans     Gainesville   F 6.06   3.22  9.32 12.63 September 2018.0
## 1758  K.elegans     Gainesville   F 7.68   3.50  9.42 13.15 September 2018.0
## 1759  K.elegans     Gainesville   F 6.15   2.80  4.84  8.21 September 2018.0
## 1760  K.elegans     Gainesville   M 5.66   2.94  8.45 11.49 September 2018.0
## 1761  K.elegans     Gainesville   M 5.78   3.04  8.60 11.67 September 2018.0
## 1762  K.elegans     Gainesville   M 5.58   2.95  8.59 11.56 September 2018.0
## 1763  K.elegans     Gainesville   M 5.32   2.94  8.11 10.81 September 2018.0
## 1764  K.elegans     Gainesville   M 5.50   3.07  8.05 11.26 September 2018.0
## 1765  K.elegans     Gainesville   F 6.59   3.26  8.64 11.64 September 2018.0
## 1766  K.elegans     Gainesville   M 5.42   2.87  8.27 11.08 September 2018.0
## 1767  K.elegans     Gainesville   F 6.51   3.47  9.26 13.25 September 2018.0
## 1768  K.elegans     Gainesville   F 6.61   3.19  8.67 11.67 September 2018.0
## 1769  K.elegans     Gainesville   M 5.11   2.70  7.81 10.50 September 2018.0
## 1770  K.elegans     Gainesville   M 5.52   2.97  8.48 11.46 September 2018.0
## 1771  K.elegans     Gainesville   M 5.93   2.89  7.87 11.04 September 2018.0
## 1772  K.elegans     Gainesville   M 5.29   2.96  7.68 10.94 September 2018.0
## 1773  K.elegans     Gainesville   F 7.80   3.32  9.45 12.82 September 2018.0
## 1774  K.elegans     Gainesville   F 6.42   3.46  9.10 12.45 September 2018.0
## 1775  K.elegans     Gainesville   F 7.69   3.74  9.71 13.17 September 2018.0
## 1776  K.elegans     Gainesville   M 5.51   2.79  8.34 11.01 September 2018.0
## 1777  K.elegans     Gainesville   F 7.16   3.24  8.73 11.84 September 2018.0
## 1778  K.elegans     Gainesville   M 5.79   3.09  8.78 12.04 September 2018.0
## 1779  K.elegans     Gainesville   M 5.78   3.25  9.07 12.37 September 2018.0
## 1780  K.elegans     Gainesville   M 5.89   3.10  8.75 11.86 September 2018.0
## 1781  K.elegans     Gainesville   F 6.68   3.53  9.45 12.73 September 2018.0
## 1782  K.elegans     Gainesville   M 5.49   2.71  7.55 10.66 September 2018.0
## 1783  K.elegans     Gainesville   F 7.69   3.51  9.63 13.27 September 2018.0
## 1784  K.elegans     Gainesville   F 7.26   3.68 10.03 13.45 September 2018.0
## 1785  K.elegans     Gainesville   F 7.26   3.72 10.29 13.78 September 2018.0
## 1786  K.elegans     Gainesville   M 5.53   2.76  8.02 10.72 September 2018.0
## 1787  K.elegans     Gainesville   M 5.61   2.98  8.17 11.09 September 2018.0
## 1788  K.elegans     Gainesville   F 7.42   3.47  9.64 12.99 September 2018.0
## 1789  K.elegans     Gainesville   M 5.71   2.79  7.95 11.04 September 2018.0
## 1790  K.elegans     Gainesville   M 5.28   2.95  7.96 11.14 September 2018.0
## 1791  K.elegans     Gainesville   M 5.84   3.01  8.33 11.29 September 2018.0
## 1792  K.elegans     Gainesville   F 7.98   3.40  9.51 13.08 September 2018.0
## 1793  K.elegans     Gainesville   F 7.10   3.17  9.26 12.82 September 2018.0
## 1794  K.elegans     Gainesville   F 7.69   3.34  9.78 13.10 September 2018.0
## 1795  K.elegans     Gainesville   M 6.15   3.03  8.56 11.63 September 2018.0
## 1796  K.elegans     Gainesville   M 5.07   2.68  7.40 10.06 September 2018.0
## 1797  K.elegans     Gainesville   F 7.15   3.51  9.40 13.13 September 2018.0
## 1798  K.elegans     Gainesville   F 5.89   2.63  4.63  7.73 September 2018.0
## 1799  K.elegans     Gainesville   F 7.32   3.28  8.69 11.92 September 2018.0
## 1800  K.elegans     Gainesville   F 6.43   3.40  9.11 12.58 September 2018.0
## 1801  K.elegans     Gainesville   M 5.47   2.81  7.82 10.70 September 2018.0
## 1802  K.elegans     Gainesville   M 5.65   3.01  8.76 11.76 September 2018.0
## 1803  K.elegans     Gainesville   M 5.55   2.57  4.42  7.24 September 2018.0
## 1804  K.elegans     Gainesville   M 5.41   2.92  8.00 10.86 September 2018.0
## 1805  K.elegans     Gainesville   F 7.94   3.54  9.18 12.89 September 2018.0
## 1806  K.elegans     Gainesville   M 6.00   2.95  8.46 11.51 September 2018.0
## 1807 C.corindum North_Key_Largo   M 6.19   3.10  8.67 11.95 September 2018.0
## 1808 C.corindum North_Key_Largo   M 6.02   3.19  8.47 11.62 September 2018.0
## 1809 C.corindum North_Key_Largo   M 6.20   2.82  7.96 11.07 September 2018.0
## 1810 C.corindum North_Key_Largo   F 7.07   3.01  7.82 10.87 September 2018.0
## 1811 C.corindum North_Key_Largo   F 7.67   3.09  5.40  8.77 September 2018.0
## 1812 C.corindum North_Key_Largo   F 6.37   2.68  5.15  8.64 September 2018.0
## 1813 C.corindum North_Key_Largo   F 7.80   3.40  6.94 10.59 September 2018.0
## 1814 C.corindum North_Key_Largo   F 7.86   3.23  6.79 10.05 September 2018.0
## 1815 C.corindum North_Key_Largo   F 9.38   3.80  9.79 13.56 September 2018.0
## 1816 C.corindum North_Key_Largo   M 5.29   2.53  4.42  7.22 September 2018.0
## 1817 C.corindum North_Key_Largo   M 5.52   2.52  4.47  7.31 September 2018.0
## 1818 C.corindum North_Key_Largo   F 7.25   2.81  7.74 10.73 September 2018.0
## 1819 C.corindum North_Key_Largo   F 6.68   2.78  4.65  8.04 September 2018.0
## 1820 C.corindum North_Key_Largo   F 6.37   2.80  4.45  7.28 September 2018.0
## 1821 C.corindum North_Key_Largo   M 5.74   2.80  7.61 10.59 September 2018.0
## 1822 C.corindum North_Key_Largo   M 5.52   2.58  4.84  7.52 September 2018.0
## 1823 C.corindum North_Key_Largo   F 8.48   3.51  9.53 13.02 September 2018.0
## 1824 C.corindum North_Key_Largo   F 7.58   3.36  6.94 10.41 September 2018.0
## 1825 C.corindum North_Key_Largo   F 7.67   3.16  7.74 11.51 September 2018.0
## 1826 C.corindum North_Key_Largo   M 6.53   3.15  8.60 11.85 September 2018.0
## 1827 C.corindum North_Key_Largo   M 6.00   3.07  8.55 11.57 September 2018.0
## 1828 C.corindum North_Key_Largo   F 6.04   2.53  4.16  6.88 September 2018.0
## 1829 C.corindum North_Key_Largo   F 7.87   3.14  5.60  9.16 September 2018.0
## 1830 C.corindum North_Key_Largo   F 8.75   3.49  9.08 12.79 September 2018.0
## 1831 C.corindum North_Key_Largo   F 7.07   2.85  5.31  8.51 September 2018.0
## 1832 C.corindum North_Key_Largo   F 8.61   3.60  9.76 13.37 September 2018.0
## 1833 C.corindum North_Key_Largo   M 6.31   3.22  8.62 11.85 September 2018.0
## 1834 C.corindum North_Key_Largo   M 5.75   2.66  4.42  7.35 September 2018.0
## 1835 C.corindum North_Key_Largo   F 7.35   3.29  5.77  9.47 September 2018.0
## 1836 C.corindum North_Key_Largo   M 5.53   2.71  5.44  8.47 September 2018.0
## 1837 C.corindum North_Key_Largo   F 9.36   3.55 10.00 13.64 September 2018.0
## 1838 C.corindum North_Key_Largo   F 7.45   3.07  5.19  8.83 September 2018.0
## 1839 C.corindum North_Key_Largo   M 5.69   2.77  7.57 10.38 September 2018.0
## 1840 C.corindum North_Key_Largo   M 5.77   2.94  7.41 10.66 September 2018.0
## 1841 C.corindum North_Key_Largo   F 6.67   2.94  7.33 10.69 September 2018.0
## 1842 C.corindum North_Key_Largo   F 7.77   3.09  5.20  8.86 September 2018.0
## 1843 C.corindum North_Key_Largo   M 5.75   2.67  4.60  7.43 September 2018.0
## 1844 C.corindum North_Key_Largo   M 5.20   2.22  4.22  6.67 September 2018.0
## 1845 C.corindum North_Key_Largo   F 6.35   2.87  4.91  8.30 September 2018.0
## 1846 C.corindum North_Key_Largo   M 5.44   2.52  4.25  6.93 September 2018.0
## 1847 C.corindum North_Key_Largo   F 8.61   3.55  9.45 12.97 September 2018.0
## 1848 C.corindum North_Key_Largo   F 6.23   2.68  4.42  7.73 September 2018.0
## 1849 C.corindum North_Key_Largo   F 7.83   3.32  8.77 12.27 September 2018.0
## 1850 C.corindum North_Key_Largo   M 6.35   3.15  8.35 11.45 September 2018.0
## 1851 C.corindum North_Key_Largo   F 8.51   3.64  9.26 12.66 September 2018.0
## 1852 C.corindum North_Key_Largo   M 5.85   2.49  4.77  7.68 September 2018.0
## 1853 C.corindum North_Key_Largo   M 6.41   3.15  8.69 12.03 September 2018.0
## 1854 C.corindum North_Key_Largo   M 5.58   2.80  7.70 10.39 September 2018.0
## 1855 C.corindum North_Key_Largo   F 7.95   3.21  8.78 12.09 September 2018.0
## 1856 C.corindum North_Key_Largo   F 7.65   3.28  9.35 12.44 September 2018.0
## 1857 C.corindum North_Key_Largo   F 6.93   2.82  4.47  7.89 September 2018.0
## 1858 C.corindum North_Key_Largo   M 5.38   2.72  5.40  8.13 September 2018.0
## 1859 C.corindum North_Key_Largo   F 7.78   3.24  8.32 11.75 September 2018.0
## 1860 C.corindum North_Key_Largo   M 5.33   2.43  5.23  7.68 September 2018.0
## 1861 C.corindum North_Key_Largo   F 7.59   3.03  5.32  8.72 September 2018.0
## 1862 C.corindum North_Key_Largo   M 5.41   2.63  7.44  9.94 September 2018.0
## 1863 C.corindum North_Key_Largo   F 8.36   3.45  9.23 12.76 September 2018.0
## 1864 C.corindum North_Key_Largo   F 7.83   3.14  5.84  9.37 September 2018.0
## 1865 C.corindum North_Key_Largo   F 7.89   3.19  9.47 12.89 September 2018.0
## 1866 C.corindum North_Key_Largo   F 7.45   3.07  5.77  9.21 September 2018.0
## 1867 C.corindum North_Key_Largo   M 5.56   2.75  7.86 10.83 September 2018.0
## 1868 C.corindum North_Key_Largo   F 6.71   3.02  5.56  8.70 September 2018.0
## 1869 C.corindum North_Key_Largo   F 7.95   3.27  8.61 11.85 September 2018.0
## 1870 C.corindum North_Key_Largo   F 7.73   3.08  5.81  9.22 September 2018.0
## 1871 C.corindum North_Key_Largo   M 6.30   2.91  8.45 11.32 September 2018.0
## 1872 C.corindum North_Key_Largo   F 6.99   2.91  5.41  8.53 September 2018.0
## 1873 C.corindum North_Key_Largo   M 5.40   2.54  4.70  7.41 September 2018.0
## 1874 C.corindum North_Key_Largo   M 5.57   2.45  4.28  6.89 September 2018.0
## 1875  K.elegans      Lake_Wales   F 7.16   3.29  9.14 12.49 September 2018.0
## 1876  K.elegans      Lake_Wales   F 7.02   3.13  8.44 11.80 September 2018.0
## 1877  K.elegans      Lake_Wales   F 7.60   3.45  9.26 12.71 September 2018.0
## 1878  K.elegans      Lake_Wales   M 5.84   3.05  8.23 11.43 September 2018.0
## 1879  K.elegans      Lake_Wales   M 5.52   2.69  7.76 10.47 September 2018.0
## 1880  K.elegans      Lake_Wales   F 6.83   3.11  8.94 12.27 September 2018.0
## 1881  K.elegans      Lake_Wales   F 6.88   3.13  9.10 12.47 September 2018.0
## 1882  K.elegans      Lake_Wales   M 5.15   2.37  4.48  7.26 September 2018.0
## 1883  K.elegans      Lake_Wales   F 6.70   3.09  8.36 11.61 September 2018.0
## 1884  K.elegans      Lake_Wales   M 5.71   3.00  8.08 11.00 September 2018.0
## 1885  K.elegans      Lake_Wales   F 7.48   3.12  9.41 12.66 September 2018.0
## 1886  K.elegans      Lake_Wales   F 7.83   3.42 10.21 14.19 September 2018.0
## 1887  K.elegans      Lake_Wales   M 5.61   3.09  8.59 11.67 September 2018.0
## 1888  K.elegans      Lake_Wales   F 7.46   3.65  9.93 13.34 September 2018.0
## 1889  K.elegans      Lake_Wales   M 5.77   2.94  8.22 11.27 September 2018.0
## 1890  K.elegans      Lake_Wales   F 7.51   3.26  9.33 12.56 September 2018.0
## 1891  K.elegans      Lake_Wales   F 7.35   3.26  8.73 12.22 September 2018.0
## 1892  K.elegans      Lake_Wales   M 5.81   3.07  8.68 11.71 September 2018.0
## 1893  K.elegans      Lake_Wales   F 8.47   3.64 10.07 14.02 September 2018.0
## 1894  K.elegans      Lake_Wales   F 7.32   3.58 10.19 13.51 September 2018.0
## 1895  K.elegans      Lake_Wales   F 7.19   3.30  9.02 12.47 September 2018.0
## 1896  K.elegans      Lake_Wales   M 5.68   2.65  7.56 10.60 September 2018.0
## 1897  K.elegans      Lake_Wales   M 5.82   3.25  8.65 11.71 September 2018.0
## 1898  K.elegans      Lake_Wales   F 6.05   3.08  8.14 11.49 September 2018.0
## 1899  K.elegans      Lake_Wales   M 5.57   2.86  7.89 11.03 September 2018.0
## 1900  K.elegans      Lake_Wales   F 7.47   3.25  5.91  9.40 September 2018.0
## 1901  K.elegans      Lake_Wales   M 5.26   2.79  7.97 10.73 September 2018.0
## 1902  K.elegans      Lake_Wales   F 6.80   3.15  8.74 11.85 September 2018.0
## 1903  K.elegans      Lake_Wales   F 6.00   2.56  4.90  7.92 September 2018.0
## 1904  K.elegans      Lake_Wales   F 7.82   3.76 10.17 14.19 September 2018.0
## 1905  K.elegans      Lake_Wales   M 5.85   3.12  8.64 12.00 September 2018.0
## 1906  K.elegans      Lake_Wales   F 7.78   3.50  9.32 13.17 September 2018.0
## 1907  K.elegans      Lake_Wales   F 7.55   3.38  9.58 12.82 September 2018.0
## 1908  K.elegans      Lake_Wales   F 7.58   3.60  9.69 13.14 September 2018.0
## 1909  K.elegans      Lake_Wales   F 7.43   3.45  9.56 12.91 September 2018.0
## 1910  K.elegans      Lake_Wales   F 7.29   3.23  9.22 12.56 September 2018.0
## 1911  K.elegans      Lake_Wales   F 7.75   3.66  9.87 13.53 September 2018.0
## 1912  K.elegans      Lake_Wales   M 5.57   2.79  7.56 10.74 September 2018.0
## 1913  K.elegans      Lake_Wales   M 5.79   3.29  8.68 11.50 September 2018.0
## 1914  K.elegans      Lake_Wales   M 5.40   2.75  7.60 10.55 September 2018.0
## 1915  K.elegans        Leesburg   M 5.45   2.98  8.12 11.05 September 2018.0
## 1916  K.elegans     Gainesville   F 7.48   3.44  9.12 12.60       May 2019.0
## 1917  K.elegans     Gainesville   F 7.66   3.58  9.94 13.63       May 2019.0
## 1918  K.elegans     Gainesville   M 5.14   2.63  7.51 10.21       May 2019.0
## 1919  K.elegans     Gainesville   F 7.68   3.73 10.13 13.47       May 2019.0
## 1920  K.elegans     Gainesville   M 5.91   3.31  8.83 12.47       May 2019.0
## 1921  K.elegans     Gainesville   M 5.09   2.98  5.41  8.43       May 2019.0
## 1922  K.elegans     Gainesville   F 7.87   3.75  9.93 13.35       May 2019.0
## 1923  K.elegans     Gainesville   M 5.22   2.73  7.10  9.88       May 2019.0
## 1924  K.elegans     Gainesville   M 5.34   2.86  8.11 10.90       May 2019.0
## 1925  K.elegans     Gainesville   F 7.60   3.95  9.67 13.80       May 2019.0
## 1926  K.elegans     Gainesville   F 6.98   3.60  8.95 12.30       May 2019.0
## 1927  K.elegans     Gainesville   F 5.91   3.20  8.80 11.86       May 2019.0
## 1928  K.elegans     Gainesville   M 6.24   3.47  9.09 12.80       May 2019.0
## 1929  K.elegans     Gainesville   F 6.30   3.56  9.09 11.94       May 2019.0
## 1930  K.elegans     Gainesville   F 8.09   3.55 10.02 13.84       May 2019.0
## 1931  K.elegans     Gainesville   F 7.98   3.91  9.75 13.98       May 2019.0
## 1932  K.elegans     Gainesville   F 8.64   3.54  9.31 13.34       May 2019.0
## 1933  K.elegans     Gainesville   F 5.74   3.28  8.81 11.81       May 2019.0
## 1934  K.elegans     Gainesville   F 8.28   3.83  9.90 13.64       May 2019.0
## 1935  K.elegans     Gainesville   F 5.22   2.91  5.37  8.36       May 2019.0
## 1936  K.elegans     Gainesville   F 5.42   2.96  7.71 10.13       May 2019.0
## 1937  K.elegans     Gainesville   F 7.80   3.45 10.34 13.52       May 2019.0
## 1938  K.elegans     Gainesville   F 8.16   3.80 10.10 13.21       May 2019.0
## 1939  K.elegans     Gainesville   F 8.22   4.05  9.98 13.50       May 2019.0
## 1940  K.elegans     Gainesville   M 6.19   2.98  9.11 12.05       May 2019.0
## 1941  K.elegans     Gainesville   F 6.10   2.77  8.05 10.45       May 2019.0
## 1942  K.elegans     Gainesville   F 8.83   3.64 10.62 13.59       May 2019.0
## 1943  K.elegans     Gainesville   M 8.63   4.09 10.17 14.07       May 2019.0
## 1944  K.elegans     Gainesville   F 7.73   3.43  9.08 12.52       May 2019.0
## 1945  K.elegans     Gainesville   F 6.96   2.75  7.98 11.29       May 2019.0
## 1946  K.elegans     Gainesville   M 6.00   3.07  8.58 11.37       May 2019.0
## 1947  K.elegans     Gainesville   F 5.76   3.11  8.56 10.96       May 2019.0
## 1948  K.elegans     Gainesville   F 7.94   3.68 10.38 13.63       May 2019.0
## 1949  K.elegans     Gainesville   F 8.55   3.79 10.35 14.16       May 2019.0
## 1950  K.elegans     Gainesville   F 5.71   3.19  7.81 10.87       May 2019.0
## 1951  K.elegans     Gainesville   F 5.68   2.89  7.87 10.53       May 2019.0
## 1952  K.elegans     Gainesville   F 5.48   2.91  8.12 11.38       May 2019.0
## 1953  K.elegans     Gainesville   F 7.96   3.74 10.23 13.69       May 2019.0
## 1954  K.elegans     Gainesville   F 5.95   3.11  8.84 11.05       May 2019.0
## 1955  K.elegans     Gainesville   F 5.34   3.05  8.07 10.83       May 2019.0
## 1956  K.elegans     Gainesville   F 8.15   3.92 10.21 13.99       May 2019.0
## 1957  K.elegans     Gainesville   F 5.89   3.31  8.68 11.40       May 2019.0
## 1958  K.elegans     Gainesville   M 6.44   3.29  9.33 12.58       May 2019.0
## 1959  K.elegans     Gainesville   F 7.27   3.47  9.27 12.69       May 2019.0
## 1960  K.elegans     Gainesville   F 5.77   3.39  8.59 11.61       May 2019.0
## 1961  K.elegans     Gainesville   F 5.74   2.96  8.42 11.34       May 2019.0
## 1962  K.elegans     Gainesville   F 8.25   3.41 10.46 13.77       May 2019.0
## 1963  K.elegans     Gainesville   F 8.11   3.47  9.69 13.42       May 2019.0
## 1964  K.elegans     Gainesville   F 5.68   3.20  8.13 11.37       May 2019.0
## 1965  K.elegans       Homestead   M 5.35   2.39  3.95  6.59       May 2019.0
## 1966  K.elegans       Homestead   M 7.32   3.05  8.09 11.32       May 2019.0
## 1967  K.elegans       Homestead   F 5.50   2.53  4.63  7.37       May 2019.0
## 1968  K.elegans       Homestead   F 6.10   2.88  7.11 10.12       May 2019.0
## 1969  K.elegans       Homestead   M 5.37   2.68  7.29 10.01       May 2019.0
## 1970  K.elegans       Homestead   M 5.94   2.99  8.30 11.24       May 2019.0
## 1971  K.elegans       Homestead   M 5.11   2.47  4.09  7.03       May 2019.0
## 1972  K.elegans       Homestead   M 5.34   2.59  4.94  7.80       May 2019.0
## 1973  K.elegans       Homestead   M 5.16   2.70  5.46  8.24       May 2019.0
## 1974  K.elegans       Homestead   M 4.95   2.58  5.24  8.09       May 2019.0
## 1975  K.elegans       Homestead   F 6.25   2.76  4.25  7.31       May 2019.0
## 1976  K.elegans       Homestead   M 4.96   2.40  4.19  6.98       May 2019.0
## 1977  K.elegans       Homestead   M 5.87   3.36  8.61 11.66       May 2019.0
## 1978  K.elegans       Homestead   M 5.05   2.42  4.21  7.10       May 2019.0
## 1979  K.elegans       Homestead   M 5.01   2.52  4.18  7.18       May 2019.0
## 1980  K.elegans       Homestead   M 5.51   2.91  7.84 10.66       May 2019.0
## 1981  K.elegans       Homestead   F 7.49   3.30  7.31 10.63       May 2019.0
## 1982  K.elegans       Homestead   F 6.44   2.89  4.68  7.83       May 2019.0
## 1983 C.corindum       Key_Largo   M 5.41   2.56  4.47  7.27       May 2019.0
## 1984 C.corindum       Key_Largo   M 5.82   2.59  5.40  8.37       May 2019.0
## 1985 C.corindum       Key_Largo   F 6.10   2.52  4.63  7.48       May 2019.0
## 1986 C.corindum       Key_Largo   M 5.63   2.69  6.50  9.31       May 2019.0
## 1987 C.corindum       Key_Largo   F 8.52   3.70  9.46 12.75       May 2019.0
## 1988 C.corindum       Key_Largo   M 5.83   2.91  7.90 10.75       May 2019.0
## 1989 C.corindum       Key_Largo   M 5.45   2.73  7.29 10.19       May 2019.0
## 1990 C.corindum       Key_Largo   F 7.69   3.10  5.47  9.23       May 2019.0
## 1991 C.corindum       Key_Largo   F 7.05   3.17  6.32  9.98       May 2019.0
## 1992 C.corindum       Key_Largo   F 7.32   2.95  6.57  9.81       May 2019.0
## 1993 C.corindum       Key_Largo   M 4.99   2.13  3.52  5.96       May 2019.0
## 1994 C.corindum       Key_Largo   M 6.05   2.63  4.65  7.55       May 2019.0
## 1995 C.corindum       Key_Largo   F 6.86   3.25  6.33  9.51       May 2019.0
## 1996 C.corindum       Key_Largo   F 7.43   3.18  8.17 11.61       May 2019.0
## 1997 C.corindum       Key_Largo   M 5.91   2.85  5.25  8.22       May 2019.0
## 1998 C.corindum       Key_Largo   M 5.28   2.78  4.91  7.90       May 2019.0
## 1999 C.corindum       Key_Largo   F 6.38   2.88  5.09  8.23       May 2019.0
## 2000 C.corindum       Key_Largo   F 8.20   3.33  8.98 12.25       May 2019.0
## 2001 C.corindum       Key_Largo   M 6.14   2.94  8.04 11.04       May 2019.0
## 2002 C.corindum       Key_Largo   M 5.59   2.80  7.03  9.98       May 2019.0
## 2003 C.corindum       Key_Largo   M 5.74   2.79  7.30 10.09       May 2019.0
## 2004 C.corindum       Key_Largo   M 5.49   2.53  4.48  7.32       May 2019.0
## 2005 C.corindum       Key_Largo   M 6.14   3.19  8.26 11.03       May 2019.0
## 2006 C.corindum       Key_Largo   M 6.26   3.01  8.48 11.78       May 2019.0
## 2007 C.corindum       Key_Largo   F 6.48   2.85  5.18  8.17       May 2019.0
## 2008 C.corindum       Key_Largo   M 8.71   3.55  9.32 13.06       May 2019.0
## 2009 C.corindum       Key_Largo   F 6.42   2.99  4.71  8.33       May 2019.0
## 2010 C.corindum       Key_Largo   M 5.21   2.49  4.42  7.14       May 2019.0
## 2011 C.corindum       Key_Largo   M 5.39   2.35  4.99  7.70       May 2019.0
## 2012 C.corindum       Key_Largo   M 5.73   2.82  6.37  9.26       May 2019.0
## 2013 C.corindum       Key_Largo   M 6.00   2.89  7.90 10.75       May 2019.0
## 2014 C.corindum       Key_Largo   F 6.31   2.92  5.05  8.23       May 2019.0
## 2015 C.corindum       Key_Largo   M 5.54   3.19  8.50 11.95       May 2019.0
## 2016 C.corindum       Key_Largo   M 5.31   2.53  4.35  7.37       May 2019.0
## 2017 C.corindum       Key_Largo   M 5.38   2.53  4.80  7.88       May 2019.0
## 2018 C.corindum       Key_Largo   M 5.33   2.38  4.37  7.02       May 2019.0
## 2019 C.corindum       Key_Largo   M 6.25   3.06  7.77 10.42       May 2019.0
## 2020 C.corindum       Key_Largo   F 6.52   3.05  5.20  8.53       May 2019.0
## 2021 C.corindum       Key_Largo   F 7.14   3.18  5.68  9.11       May 2019.0
## 2022 C.corindum       Key_Largo   F 6.91   2.88  5.02  8.39       May 2019.0
## 2023 C.corindum       Key_Largo   F 6.71   2.94  5.10  8.41       May 2019.0
## 2024 C.corindum       Key_Largo   M 5.89   2.87  7.75 10.51       May 2019.0
## 2025 C.corindum       Key_Largo   M 5.92   2.68  4.94  7.93       May 2019.0
## 2026 C.corindum       Key_Largo   M 5.69   2.66  4.50  7.48       May 2019.0
## 2027 C.corindum       Key_Largo   F 6.60   2.72  5.19  8.48       May 2019.0
## 2028 C.corindum       Key_Largo   M 5.48   2.49  4.88  7.61       May 2019.0
## 2029 C.corindum       Key_Largo   M 5.67   2.77  6.50  9.22       May 2019.0
## 2030 C.corindum       Key_Largo   F 7.91   3.40  8.90 12.33       May 2019.0
## 2031 C.corindum       Key_Largo   M 5.66   2.76  7.51 10.41       May 2019.0
## 2032 C.corindum       Key_Largo   F 5.87   2.56  3.94  6.86       May 2019.0
## 2033 C.corindum       Key_Largo   M 5.38   2.57  4.26  7.06       May 2019.0
## 2034 C.corindum       Key_Largo   M 6.26   2.99  8.15 10.85       May 2019.0
## 2035 C.corindum       Key_Largo   M 5.75   2.86  5.15  8.19       May 2019.0
## 2036 C.corindum       Key_Largo   M 6.57   3.15  8.49 11.60       May 2019.0
## 2037 C.corindum       Key_Largo   M 5.38   2.61  5.23  8.28       May 2019.0
## 2038 C.corindum       Key_Largo   M 5.84   2.88  7.30 10.19       May 2019.0
## 2039 C.corindum       Key_Largo   F 7.45   3.23  5.50  8.98       May 2019.0
## 2040 C.corindum       Key_Largo   M 5.21   2.41  4.14  6.98       May 2019.0
## 2041 C.corindum       Key_Largo   F 6.72   3.04  5.55  9.10       May 2019.0
## 2042 C.corindum       Key_Largo   F 7.33   3.13  8.33 11.78       May 2019.0
## 2043 C.corindum       Key_Largo   F 6.40   2.89  4.63  8.01       May 2019.0
## 2044 C.corindum       Key_Largo   M 5.70   2.75  5.72  8.65       May 2019.0
## 2045 C.corindum       Key_Largo   M 5.10   2.45  4.56  7.52       May 2019.0
## 2046 C.corindum       Key_Largo   M 5.34   2.50  4.44  7.39       May 2019.0
## 2047 C.corindum       Key_Largo   F 6.19   2.79  4.47  7.53       May 2019.0
## 2048 C.corindum       Key_Largo   M 5.49   2.53  4.94  7.90       May 2019.0
## 2049 C.corindum       Key_Largo   M 5.14   2.42  4.09  7.02       May 2019.0
## 2050 C.corindum       Key_Largo   M 5.20   2.50  6.72  9.71       May 2019.0
## 2051 C.corindum       Key_Largo   M 5.67   2.71  4.88  7.60       May 2019.0
## 2052 C.corindum       Key_Largo   F 6.39   2.93  5.05  8.41       May 2019.0
## 2053 C.corindum       Key_Largo   M 6.42   3.08  8.51 11.34       May 2019.0
## 2054 C.corindum       Key_Largo   M 5.42   2.70  4.52  7.48       May 2019.0
## 2055 C.corindum       Key_Largo   M 5.80   2.80  4.84  7.84       May 2019.0
## 2056 C.corindum       Key_Largo   M 5.71   2.63  7.06  9.78       May 2019.0
## 2057 C.corindum       Key_Largo   M 5.91   2.72  5.04  7.92       May 2019.0
## 2058 C.corindum       Key_Largo   M 5.85   2.75  5.58  8.48       May 2019.0
## 2059  K.elegans     Lake_Placid   F 5.34   3.15  8.25 11.32       May 2019.0
## 2060  K.elegans     Lake_Placid   F 5.86   2.89  8.09 11.20       May 2019.0
## 2061  K.elegans     Lake_Placid   F 6.65   2.94  7.56 11.37       May 2019.0
## 2062  K.elegans     Lake_Placid   F 8.04   3.07  9.40 12.70       May 2019.0
## 2063  K.elegans     Lake_Placid   F 7.22   3.50  9.50 13.00       May 2019.0
## 2064  K.elegans     Lake_Placid   F 7.51   3.48  9.86 13.29       May 2019.0
## 2065  K.elegans     Lake_Placid   F 7.78   3.81 10.12 13.14       May 2019.0
## 2066  K.elegans     Lake_Placid   F 5.16   2.99  8.37 11.13       May 2019.0
## 2067  K.elegans     Lake_Placid   F 6.40   3.12  5.92  9.61       May 2019.0
## 2068  K.elegans     Lake_Placid   F 7.53   3.85  9.15 12.61       May 2019.0
## 2069  K.elegans     Lake_Placid   M 5.64   2.52  4.98  7.60       May 2019.0
## 2070  K.elegans     Lake_Placid   F 8.57   4.05 10.50 13.99       May 2019.0
## 2071  K.elegans     Lake_Placid   M 7.18   3.59 10.02 13.28       May 2019.0
## 2072  K.elegans     Lake_Placid   F 8.27   3.48 10.12 12.86       May 2019.0
## 2073  K.elegans     Lake_Placid   M 5.89   3.03  8.87 12.06       May 2019.0
## 2074  K.elegans     Lake_Placid   M 5.45   3.08  7.84 10.35       May 2019.0
## 2075  K.elegans     Lake_Placid   F 5.22   2.72  8.01 10.65       May 2019.0
## 2076  K.elegans     Lake_Placid   F 6.25   2.67  4.90  8.20       May 2019.0
## 2077  K.elegans     Lake_Placid   F 5.49   2.85  7.22 10.06       May 2019.0
## 2078  K.elegans     Lake_Placid   F 5.90   2.64  4.54  7.45       May 2019.0
## 2079  K.elegans     Lake_Placid   F 5.98   3.13  8.34 12.41       May 2019.0
## 2080  K.elegans     Lake_Placid   F 5.61   3.15  8.68 11.28       May 2019.0
## 2081  K.elegans     Lake_Placid   F 8.49   3.59  9.49 13.13       May 2019.0
## 2082  K.elegans     Lake_Placid   F 7.88   3.48  9.68 12.85       May 2019.0
## 2083  K.elegans     Lake_Placid   F 5.25   2.91  8.44 11.34       May 2019.0
## 2084  K.elegans     Lake_Placid   M 5.79   3.29  8.80 11.93       May 2019.0
## 2085  K.elegans     Lake_Placid   F 6.36   3.28  9.53 12.03       May 2019.0
## 2086  K.elegans     Lake_Placid   F 5.53   3.55  8.09 11.33       May 2019.0
## 2087  K.elegans     Lake_Placid   F 6.94   3.20  8.69 11.45       May 2019.0
## 2088  K.elegans     Lake_Placid   F 8.29   4.22  9.49 13.15       May 2019.0
## 2089  K.elegans     Lake_Placid   F 8.39   3.45  9.61 12.97       May 2019.0
## 2090  K.elegans     Lake_Placid   F 8.12   3.98  7.91 13.70       May 2019.0
## 2091  K.elegans     Lake_Placid   F 5.79   2.97  8.34 11.29       May 2019.0
## 2092  K.elegans     Lake_Placid   F 5.54   2.59  7.83 11.64       May 2019.0
## 2093  K.elegans     Lake_Placid   F 5.04   3.18  7.59 10.55       May 2019.0
## 2094  K.elegans     Lake_Placid   F 8.56   4.05 10.14 13.77       May 2019.0
## 2095  K.elegans     Lake_Placid   F 6.25   3.21  8.75 10.86       May 2019.0
## 2096  K.elegans     Lake_Placid   F 6.48   2.78  6.18  9.33       May 2019.0
## 2097  K.elegans     Lake_Placid   F 4.88   2.67  7.77 10.19       May 2019.0
## 2098  K.elegans     Lake_Placid   F 5.36   3.22  8.59 10.98       May 2019.0
## 2099  K.elegans     Lake_Placid   F 6.82   3.15  8.41 11.61       May 2019.0
## 2100  K.elegans     Lake_Placid   F 8.49   3.45  9.43 12.33       May 2019.0
## 2101  K.elegans     Lake_Placid   F 8.11   3.65  9.43 12.79       May 2019.0
## 2102  K.elegans     Lake_Placid   F 7.93   3.68 10.00 12.98       May 2019.0
## 2103  K.elegans     Lake_Placid   M 5.15   2.64  5.22  7.96       May 2019.0
## 2104  K.elegans     Lake_Placid   F 6.70   3.22  8.70 11.39       May 2019.0
## 2105  K.elegans     Lake_Placid   F 7.39   3.43  9.82 13.14       May 2019.0
## 2106  K.elegans     Lake_Placid   M 5.78   2.72  5.10  8.34       May 2019.0
## 2107  K.elegans     Lake_Placid   M 5.75   3.12  8.75 11.56       May 2019.0
## 2108  K.elegans     Lake_Placid   F 6.22   2.83  4.95  8.09       May 2019.0
## 2109  K.elegans     Lake_Placid   M 5.81   3.09  8.56 12.14       May 2019.0
## 2110  K.elegans     Lake_Placid   F 7.49   3.55  9.41 12.23       May 2019.0
## 2111  K.elegans     Lake_Placid   M 5.13   2.80  7.63 10.64       May 2019.0
## 2112  K.elegans     Lake_Placid   F 7.72   3.78  9.90 13.51       May 2019.0
## 2113  K.elegans     Lake_Placid   M 5.66   3.01  7.76 11.07       May 2019.0
## 2114  K.elegans     Lake_Placid   F 7.64   3.25  9.80 13.89       May 2019.0
## 2115  K.elegans     Lake_Placid   F 5.63   3.13  8.43 10.67       May 2019.0
## 2116  K.elegans     Lake_Placid   F 7.80   3.52  9.79 12.53       May 2019.0
## 2117  K.elegans     Lake_Placid   F 5.26   3.12  7.94 11.15       May 2019.0
## 2118  K.elegans     Lake_Placid   F 5.40   2.88  7.92 10.51       May 2019.0
## 2119  K.elegans     Lake_Placid   F 5.66   3.34  8.58 11.75       May 2019.0
## 2120  K.elegans     Lake_Placid   M 5.75   3.16  8.29 11.25       May 2019.0
## 2121 C.corindum North_Key_Largo   F 8.48   3.57  9.14 12.92       May 2019.0
## 2122 C.corindum North_Key_Largo   M 6.27   3.04  8.40 11.46       May 2019.0
## 2123 C.corindum North_Key_Largo   M 5.83   2.70  7.46 10.24       May 2019.0
## 2124 C.corindum North_Key_Largo   M 5.83   3.12  8.40 11.43       May 2019.0
## 2125 C.corindum North_Key_Largo   M 5.50   2.59  5.11  7.88       May 2019.0
## 2126 C.corindum North_Key_Largo   F 8.12   3.33  9.08 12.40       May 2019.0
## 2127 C.corindum North_Key_Largo   M 6.12   2.87  5.81  8.91       May 2019.0
## 2128 C.corindum North_Key_Largo   M 6.50   3.09  8.10 11.04       May 2019.0
## 2129 C.corindum North_Key_Largo   F 8.73   3.59 10.16 13.64       May 2019.0
## 2130 C.corindum North_Key_Largo   M 6.03   2.96  8.02 10.92       May 2019.0
## 2131 C.corindum North_Key_Largo   M 6.10   2.79  4.88  7.89       May 2019.0
## 2132 C.corindum North_Key_Largo   M 5.64   2.71  7.75 10.58       May 2019.0
## 2133 C.corindum North_Key_Largo   M 6.23   3.10  8.35 11.35       May 2019.0
## 2134 C.corindum North_Key_Largo   M 5.66   2.61  7.34 10.10       May 2019.0
## 2135 C.corindum North_Key_Largo   M 5.50   2.75  7.38 10.10       May 2019.0
## 2136 C.corindum North_Key_Largo   M 5.77   2.60  4.81  7.74       May 2019.0
## 2137 C.corindum North_Key_Largo   M 6.19   2.99  8.40 11.30       May 2019.0
## 2138 C.corindum North_Key_Largo   M 5.60   2.73  7.34 10.22       May 2019.0
## 2139 C.corindum North_Key_Largo   M 6.75   3.07  8.23 11.19       May 2019.0
## 2140 C.corindum North_Key_Largo   M 6.32   3.28  8.75 11.80       May 2019.0
## 2141 C.corindum North_Key_Largo   M 6.61   3.08  8.27 11.12       May 2019.0
## 2142 C.corindum North_Key_Largo   F 7.08   3.37  5.67  9.11       May 2019.0
## 2143 C.corindum North_Key_Largo   M 6.54   3.13  8.64 11.66       May 2019.0
## 2144 C.corindum North_Key_Largo   M 5.53   2.51  4.06  6.85       May 2019.0
## 2145 C.corindum North_Key_Largo   F 7.30   3.17  5.24  8.67       May 2019.0
## 2146 C.corindum North_Key_Largo   M 6.29   2.94  7.89 10.84       May 2019.0
## 2147 C.corindum North_Key_Largo   M 5.39   2.52  4.53  7.31       May 2019.0
## 2148 C.corindum North_Key_Largo   F 8.23   3.52  8.89 12.12       May 2019.0
## 2149 C.corindum North_Key_Largo   M 5.88   2.69  5.22  8.29       May 2019.0
## 2150 C.corindum North_Key_Largo   M 5.62   2.93  7.63 10.70       May 2019.0
## 2151 C.corindum North_Key_Largo   F 7.03   3.15  5.28  8.83       May 2019.0
## 2152 C.corindum North_Key_Largo   F 6.41   2.69  4.39  7.73       May 2019.0
## 2153 C.corindum North_Key_Largo   F 7.09   3.06  8.14 11.49       May 2019.0
## 2154 C.corindum North_Key_Largo   M 6.17   3.08  8.54 11.11       May 2019.0
## 2155 C.corindum North_Key_Largo   M 5.56   2.89  7.83 10.56       May 2019.0
## 2156 C.corindum North_Key_Largo   F 6.80   3.01  7.98 11.10       May 2019.0
## 2157 C.corindum North_Key_Largo   F 7.55   3.35  8.91 12.04       May 2019.0
## 2158 C.corindum North_Key_Largo   F 7.07   3.16  8.43 11.51       May 2019.0
## 2159 C.corindum North_Key_Largo   M 6.25   3.11  8.24 11.24       May 2019.0
## 2160 C.corindum North_Key_Largo   F 6.80   3.07  4.91  8.14       May 2019.0
## 2161 C.corindum North_Key_Largo   F 8.04   3.36  8.93 12.34       May 2019.0
## 2162 C.corindum North_Key_Largo   F 6.37   2.68  7.29 10.29       May 2019.0
## 2163 C.corindum North_Key_Largo   M 5.53   2.52  3.80  6.76       May 2019.0
## 2164 C.corindum North_Key_Largo   F 6.13   2.85  4.68  8.08       May 2019.0
## 2165 C.corindum North_Key_Largo   F 7.20   3.17  7.87 11.16       May 2019.0
## 2166 C.corindum North_Key_Largo   M 6.98   3.14  8.39 11.65       May 2019.0
## 2167 C.corindum North_Key_Largo   F 7.65   3.52  8.94 12.39       May 2019.0
## 2168 C.corindum North_Key_Largo   M 6.09   2.80  7.72 10.39       May 2019.0
## 2169 C.corindum North_Key_Largo   M 5.26   2.57  4.43  7.31       May 2019.0
## 2170 C.corindum North_Key_Largo   M 7.15   3.38  9.10 12.57       May 2019.0
## 2171 C.corindum North_Key_Largo   M 5.43   2.61  7.30  9.97       May 2019.0
## 2172 C.corindum North_Key_Largo   M 4.95   2.18  3.80  6.54       May 2019.0
## 2173 C.corindum North_Key_Largo   M 5.25   2.67  7.72 10.48       May 2019.0
## 2174 C.corindum North_Key_Largo   M 4.87   2.30  4.14  6.76       May 2019.0
## 2175 C.corindum North_Key_Largo   F 8.98   3.81  9.92 13.40       May 2019.0
## 2176 C.corindum North_Key_Largo   M 5.96   2.87  7.76 10.64       May 2019.0
## 2177 C.corindum North_Key_Largo   M 5.73   2.91  7.49 10.56       May 2019.0
## 2178 C.corindum North_Key_Largo   M 5.80   2.86  4.92  7.79       May 2019.0
## 2179 C.corindum North_Key_Largo   M 5.72   2.76  4.62  7.55       May 2019.0
## 2180 C.corindum North_Key_Largo   M 5.33   2.58  4.95  7.58       May 2019.0
## 2181 C.corindum North_Key_Largo   M 5.35   2.76  5.71  8.63       May 2019.0
## 2182 C.corindum North_Key_Largo   F 6.63   2.91  4.79  8.29       May 2019.0
## 2183 C.corindum North_Key_Largo   F 5.96   2.67  4.52  7.66       May 2019.0
## 2184 C.corindum North_Key_Largo   F 7.54   3.56  9.03 12.33       May 2019.0
## 2185 C.corindum North_Key_Largo   M 5.76   2.79  7.43 10.63       May 2019.0
## 2186 C.corindum North_Key_Largo   F 7.62   3.14  6.47  9.83       May 2019.0
## 2187 C.corindum North_Key_Largo   F 7.50   3.24  8.72 11.94       May 2019.0
## 2188 C.corindum North_Key_Largo   F 8.22   3.74  9.87 13.73       May 2019.0
## 2189 C.corindum North_Key_Largo   F 9.78   3.74  9.92 13.49       May 2019.0
## 2190 C.corindum North_Key_Largo   F 6.63   3.08  7.69 10.77       May 2019.0
## 2191 C.corindum North_Key_Largo   F 6.85   3.30  5.73  9.11       May 2019.0
## 2192 C.corindum North_Key_Largo   M 5.92   3.02  8.06 10.91       May 2019.0
## 2193 C.corindum North_Key_Largo   M 5.25   2.64  4.43  7.41       May 2019.0
## 2194 C.corindum North_Key_Largo   M 5.21   2.55  4.23  7.01       May 2019.0
## 2195 C.corindum North_Key_Largo   M 5.93   2.78  7.83 10.63       May 2019.0
## 2196 C.corindum North_Key_Largo   F 7.79   3.75  9.81 13.10       May 2019.0
## 2197 C.corindum North_Key_Largo   M 5.42   2.66  4.51  7.41       May 2019.0
## 2198 C.corindum North_Key_Largo   M 5.98   2.98  7.86 10.87       May 2019.0
## 2199 C.corindum North_Key_Largo   M 5.72   2.75  7.50 10.28       May 2019.0
## 2200 C.corindum North_Key_Largo   M 5.65   2.64  4.69  7.57       May 2019.0
## 2201 C.corindum North_Key_Largo   M 5.73   2.73  7.56 10.58       May 2019.0
## 2202 C.corindum North_Key_Largo   F 6.21   2.96  4.60  7.96       May 2019.0
## 2203 C.corindum North_Key_Largo   M 6.06   3.05  8.42 11.41       May 2019.0
## 2204 C.corindum North_Key_Largo   M 5.62   2.68  4.76  7.61       May 2019.0
## 2205 C.corindum North_Key_Largo   M 5.31   2.50  4.30  7.01       May 2019.0
## 2206 C.corindum North_Key_Largo   M 5.78   2.78  7.69 10.75       May 2019.0
## 2207 C.corindum North_Key_Largo   M 5.50   2.63  7.33 10.10       May 2019.0
## 2208 C.corindum North_Key_Largo   M 5.99   2.95  8.05 11.10       May 2019.0
## 2209 C.corindum North_Key_Largo   F 7.00   2.97  5.01  8.47       May 2019.0
## 2210 C.corindum North_Key_Largo   M 5.32   2.53  4.62  7.35       May 2019.0
## 2211 C.corindum North_Key_Largo   M 5.14   2.35  5.62  8.42       May 2019.0
## 2212 C.corindum North_Key_Largo   M 5.26   2.58  4.20  7.15       May 2019.0
## 2213 C.corindum North_Key_Largo   M 5.34   2.44  4.33  7.04       May 2019.0
## 2214 C.corindum North_Key_Largo   M 5.33   2.46  6.85  9.35       May 2019.0
## 2215 C.corindum North_Key_Largo   M 5.18   2.61  4.47  7.49       May 2019.0
## 2216 C.corindum North_Key_Largo   M 4.98   2.47  4.14  6.89       May 2019.0
## 2217 C.corindum North_Key_Largo   M 5.47   2.60  5.38  8.41       May 2019.0
## 2218 C.corindum North_Key_Largo   M 5.44   2.57  4.65  7.60       May 2019.0
## 2219 C.corindum North_Key_Largo   M 5.73   2.87  7.73 10.69       May 2019.0
## 2220 C.corindum North_Key_Largo   F 5.71   2.73  4.51  7.49       May 2019.0
## 2221 C.corindum North_Key_Largo   F 5.67   2.58  4.44  7.55       May 2019.0
## 2222 C.corindum North_Key_Largo   F 6.85   3.06  4.53  8.26       May 2019.0
## 2223 C.corindum North_Key_Largo   F 8.11   3.58  9.45 12.86       May 2019.0
## 2224 C.corindum North_Key_Largo   M 5.91   2.85  7.61 10.42       May 2019.0
## 2225 C.corindum North_Key_Largo   F 7.76   3.44  5.99  9.68       May 2019.0
## 2226 C.corindum North_Key_Largo   M 5.93   2.84  7.56 10.29       May 2019.0
## 2227 C.corindum North_Key_Largo   F 6.85   2.79  4.77  8.03       May 2019.0
## 2228 C.corindum North_Key_Largo   F 7.07   3.03  5.21  8.29       May 2019.0
## 2229 C.corindum North_Key_Largo   F 7.00   3.12  5.23  8.70       May 2019.0
## 2230 C.corindum North_Key_Largo   F 6.85   3.10  5.65  8.83       May 2019.0
## 2231 C.corindum North_Key_Largo   F 6.03   2.78  4.78  8.05       May 2019.0
## 2232 C.corindum North_Key_Largo   F 6.75   2.87  5.35  8.72       May 2019.0
## 2233 C.corindum North_Key_Largo   F 7.89   3.44  8.95 12.39       May 2019.0
## 2234 C.corindum North_Key_Largo   M 5.72   2.74  5.91  8.62       May 2019.0
## 2235 C.corindum North_Key_Largo   F 6.38   2.93  5.19  8.24       May 2019.0
## 2236 C.corindum North_Key_Largo   F 7.77   3.42  9.07 12.61       May 2019.0
## 2237 C.corindum North_Key_Largo   M 6.30   3.06  7.84 10.76       May 2019.0
## 2238 C.corindum North_Key_Largo   M 5.23   2.37  4.67  7.68       May 2019.0
## 2239 C.corindum North_Key_Largo   F 8.73   3.90 10.42 14.30       May 2019.0
## 2240 C.corindum North_Key_Largo   M 6.73   3.31  8.99 12.06       May 2019.0
## 2241 C.corindum North_Key_Largo   F 6.78   3.01  4.59  8.11       May 2019.0
## 2242 C.corindum North_Key_Largo   F 7.09   3.23  6.19  9.61       May 2019.0
## 2243 C.corindum North_Key_Largo   M 6.17   3.42  8.80 11.94       May 2019.0
## 2244 C.corindum North_Key_Largo   M 6.08   3.03  8.21 11.08       May 2019.0
## 2245 C.corindum North_Key_Largo   F 8.43   3.27  8.68 12.17       May 2019.0
## 2246 C.corindum North_Key_Largo   F 8.73   3.73  9.51 13.01       May 2019.0
## 2247 C.corindum North_Key_Largo   F 8.79   3.73 10.31 13.87       May 2019.0
## 2248 C.corindum North_Key_Largo   F 6.71   3.14  5.35  8.69       May 2019.0
## 2249 C.corindum North_Key_Largo   M 6.13   3.11  8.11 11.14       May 2019.0
## 2250 C.corindum North_Key_Largo   M 6.33   2.84  5.12  8.23       May 2019.0
## 2251 C.corindum North_Key_Largo   F 7.41   3.26  8.23 11.43       May 2019.0
## 2252 C.corindum North_Key_Largo   F 7.11   3.18  6.11  9.59       May 2019.0
## 2253 C.corindum North_Key_Largo   M 5.61   2.63  4.86  7.75       May 2019.0
## 2254 C.corindum North_Key_Largo   M 6.31   3.39  7.94 11.35       May 2019.0
## 2255 C.corindum North_Key_Largo   M 5.32   2.60  4.47  7.36       May 2019.0
## 2256 C.corindum North_Key_Largo   M 5.37   2.75  4.65  7.60       May 2019.0
## 2257 C.corindum North_Key_Largo   F 6.53   2.84  4.42  7.79       May 2019.0
## 2258 C.corindum North_Key_Largo   F 6.39   2.83  4.59  7.75       May 2019.0
## 2259 C.corindum North_Key_Largo   F 6.54   2.88  5.00  8.42       May 2019.0
## 2260 C.corindum North_Key_Largo   M 5.42   2.58  4.97  7.88       May 2019.0
## 2261 C.corindum North_Key_Largo   F 7.08   3.01  5.71  9.02       May 2019.0
## 2262 C.corindum North_Key_Largo   F 6.02   2.80  4.81  7.92       May 2019.0
## 2263 C.corindum North_Key_Largo   M 6.20   3.05  8.04 10.90       May 2019.0
## 2264 C.corindum North_Key_Largo   M 5.97   3.01  8.08 10.97       May 2019.0
## 2265 C.corindum North_Key_Largo   F 8.16   3.50  8.92 12.44       May 2019.0
## 2266 C.corindum North_Key_Largo   F 8.35   3.90  9.53 13.14       May 2019.0
## 2267 C.corindum North_Key_Largo   M 5.60   2.67  4.65  7.89       May 2019.0
## 2268 C.corindum North_Key_Largo   M 6.03   2.79  7.32  9.96       May 2019.0
## 2269 C.corindum North_Key_Largo   F 8.02   3.73  9.65 13.41       May 2019.0
## 2270 C.corindum North_Key_Largo   F 8.28   3.63  9.08 12.60       May 2019.0
## 2271 C.corindum North_Key_Largo   M 6.09   2.90  8.24 11.35       May 2019.0
## 2272 C.corindum North_Key_Largo   M 5.95   2.70  7.65 10.58       May 2019.0
## 2273 C.corindum North_Key_Largo   M 5.40   2.57  4.67  7.48       May 2019.0
## 2274 C.corindum North_Key_Largo   F 7.83   3.42  8.92 12.28       May 2019.0
## 2275 C.corindum North_Key_Largo   F 6.35   2.82  4.84  8.16       May 2019.0
## 2276 C.corindum North_Key_Largo   F 6.72   3.06  5.12  8.63       May 2019.0
## 2277 C.corindum North_Key_Largo   F 8.32   3.33  8.82 12.31       May 2019.0
## 2278 C.corindum North_Key_Largo   F 7.08   2.98  4.99  8.25       May 2019.0
## 2279 C.corindum North_Key_Largo   M 6.02   3.05  8.40 11.35       May 2019.0
## 2280 C.corindum North_Key_Largo   F 6.18   2.78  4.85  8.09       May 2019.0
## 2281 C.corindum North_Key_Largo   F 8.52   3.51  9.63 12.95       May 2019.0
## 2282 C.corindum North_Key_Largo   M 4.98   2.12  3.88  6.52       May 2019.0
## 2283 C.corindum North_Key_Largo   M 5.27   2.58  4.71  7.51       May 2019.0
## 2284 C.corindum North_Key_Largo   M 5.38   2.68  4.98  7.84       May 2019.0
## 2285 C.corindum North_Key_Largo   F 8.23   3.57  9.52 12.80       May 2019.0
## 2286 C.corindum North_Key_Largo   F 7.39   3.15  8.47 11.62       May 2019.0
## 2287 C.corindum North_Key_Largo   M 5.15   2.43  4.20  6.81       May 2019.0
## 2288 C.corindum North_Key_Largo   M 5.93   2.92  7.94 10.86       May 2019.0
## 2289 C.corindum North_Key_Largo   F 6.05   2.90  4.69  7.93       May 2019.0
## 2290 C.corindum North_Key_Largo   M 6.01   3.07  8.20 11.22       May 2019.0
## 2291 C.corindum North_Key_Largo   M 6.22   3.24  8.32 11.46       May 2019.0
## 2292 C.corindum North_Key_Largo   M 5.83   2.79  7.17 10.15       May 2019.0
## 2293 C.corindum North_Key_Largo   F 8.56   3.62  9.23 12.44       May 2019.0
## 2294 C.corindum North_Key_Largo   F 8.22   3.73  9.36 12.69       May 2019.0
## 2295 C.corindum North_Key_Largo   M 4.94   2.52  4.25  6.83       May 2019.0
## 2296 C.corindum North_Key_Largo   F 7.16   3.34  5.11  8.80       May 2019.0
## 2297 C.corindum North_Key_Largo   F 7.60   3.20  8.69 12.19       May 2019.0
## 2298 C.corindum North_Key_Largo   M 5.57   2.68  4.66  7.64       May 2019.0
## 2299 C.corindum North_Key_Largo   M 5.81   2.68  4.51  7.35       May 2019.0
## 2300 C.corindum North_Key_Largo   F 7.28   3.23  5.45  9.14       May 2019.0
## 2301 C.corindum North_Key_Largo   F 6.17   2.77  4.89  8.57       May 2019.0
## 2302 C.corindum North_Key_Largo   F 8.75   3.73  9.47 13.07       May 2019.0
## 2303 C.corindum North_Key_Largo   M 5.77   2.82  5.36  8.36       May 2019.0
## 2304 C.corindum North_Key_Largo   F 8.17   3.65  9.16 12.56       May 2019.0
## 2305 C.corindum North_Key_Largo   M 6.11   2.63  4.79  7.80       May 2019.0
## 2306 C.corindum North_Key_Largo   F 6.19   2.84  4.61  7.94       May 2019.0
## 2307 C.corindum North_Key_Largo   M 5.65   2.61  4.84  7.80       May 2019.0
## 2308 C.corindum North_Key_Largo   M 5.74   2.91  8.26 11.18       May 2019.0
## 2309 C.corindum North_Key_Largo   M 5.29   2.39  3.99  6.78       May 2019.0
## 2310 C.corindum North_Key_Largo   M 5.63   2.90  8.40 11.29       May 2019.0
## 2311 C.corindum North_Key_Largo   M 5.89   2.95  8.03 10.77       May 2019.0
## 2312 C.corindum North_Key_Largo   M 5.91   2.84  7.23 10.09       May 2019.0
## 2313 C.corindum North_Key_Largo   F 8.73   3.65  9.64 12.92       May 2019.0
## 2314 C.corindum North_Key_Largo   M 5.53   2.68  5.33  8.47       May 2019.0
## 2315 C.corindum North_Key_Largo   F 6.89   2.95  4.64  7.71       May 2019.0
## 2316 C.corindum North_Key_Largo   M 6.09   2.84  7.42 10.38       May 2019.0
## 2317 C.corindum North_Key_Largo   M 5.76   2.65  4.48  7.35       May 2019.0
## 2318 C.corindum North_Key_Largo   F 7.17   3.09  5.85  9.35       May 2019.0
## 2319 C.corindum North_Key_Largo   M 5.79   2.52  5.18  8.25       May 2019.0
## 2320 C.corindum North_Key_Largo   M 5.51   2.59  4.77  7.56       May 2019.0
## 2321 C.corindum North_Key_Largo   F 6.87   3.20  8.61 11.87       May 2019.0
## 2322 C.corindum North_Key_Largo   M 5.35   2.57  4.30  7.11       May 2019.0
## 2323 C.corindum North_Key_Largo   F 5.92   2.75  4.59  7.71       May 2019.0
## 2324 C.corindum North_Key_Largo   M 5.43   2.63  4.26  7.11       May 2019.0
## 2325 C.corindum North_Key_Largo   M 5.04   2.39  3.98  6.80       May 2019.0
## 2326 C.corindum North_Key_Largo   M 4.91   2.24  3.91  6.70       May 2019.0
## 2327 C.corindum North_Key_Largo   M 5.18   2.33  4.03  6.73       May 2019.0
## 2328 C.corindum North_Key_Largo   M 5.97   2.92  7.90 10.89       May 2019.0
## 2329 C.corindum North_Key_Largo   M 5.43   2.75  4.75  8.11       May 2019.0
## 2330 C.corindum North_Key_Largo   M 5.75   2.72  4.87  7.79       May 2019.0
## 2331 C.corindum North_Key_Largo   M 5.24   2.64  4.12  7.09       May 2019.0
## 2332 C.corindum North_Key_Largo   M 5.99   2.67  4.28  7.27       May 2019.0
## 2333 C.corindum North_Key_Largo   M 6.22   3.09  8.24 11.48       May 2019.0
## 2334 C.corindum North_Key_Largo   F 8.12   3.72  9.08 12.61       May 2019.0
## 2335 C.corindum North_Key_Largo   F 7.53   3.67  9.57 12.90       May 2019.0
## 2336 C.corindum North_Key_Largo   F 6.54   3.07  7.63 10.85       May 2019.0
## 2337 C.corindum North_Key_Largo   M 6.53   3.34  9.46 12.50       May 2019.0
## 2338 C.corindum North_Key_Largo   F 6.33   2.73  5.18  8.80       May 2019.0
## 2339 C.corindum North_Key_Largo   M 5.92   3.17  8.55 11.76       May 2019.0
## 2340 C.corindum North_Key_Largo   F 9.11   3.69  9.84 13.46       May 2019.0
## 2341 C.corindum North_Key_Largo   F 8.15   3.43  9.08 12.23       May 2019.0
## 2342 C.corindum North_Key_Largo   M 6.02   3.62 10.07 13.23       May 2019.0
## 2343 C.corindum North_Key_Largo   F 7.98   3.33  8.83 12.04       May 2019.0
## 2344 C.corindum North_Key_Largo   M 5.96   2.81  7.79 10.71       May 2019.0
## 2345 C.corindum North_Key_Largo   F 7.94   3.64  9.61 13.23       May 2019.0
## 2346 C.corindum North_Key_Largo   M 6.41   3.06  8.31 11.68       May 2019.0
## 2347 C.corindum North_Key_Largo   M 4.96   2.65  6.97  9.80       May 2019.0
## 2348 C.corindum North_Key_Largo   F 7.25   3.23  8.40 11.60       May 2019.0
## 2349 C.corindum North_Key_Largo   M 5.96   2.95  7.89 10.83       May 2019.0
## 2350 C.corindum North_Key_Largo   M 6.16   2.84  7.89 10.89       May 2019.0
## 2351 C.corindum North_Key_Largo   F 6.62   3.82 10.01 13.65       May 2019.0
## 2352 C.corindum North_Key_Largo   M 5.75   2.97  9.03 10.96       May 2019.0
## 2353 C.corindum North_Key_Largo   F 8.43   3.54  9.34 12.55       May 2019.0
## 2354 C.corindum North_Key_Largo   M 6.19   3.08  8.16 11.37       May 2019.0
## 2355 C.corindum North_Key_Largo   M 5.40   2.61  4.22  7.14       May 2019.0
## 2356 C.corindum North_Key_Largo   F 9.84   4.11 10.91 15.02       May 2019.0
## 2357 C.corindum North_Key_Largo   M 6.05   3.03  7.85 10.85       May 2019.0
## 2358 C.corindum North_Key_Largo   M 5.77   3.04  7.74 10.84       May 2019.0
## 2359 C.corindum North_Key_Largo   M 5.95   2.82  7.63 10.57       May 2019.0
## 2360 C.corindum North_Key_Largo   F 6.22   2.64  5.07  8.21       May 2019.0
## 2361 C.corindum North_Key_Largo   M 5.81   2.85  7.36  9.92       May 2019.0
## 2362 C.corindum North_Key_Largo   F 7.77   3.36  8.77 12.28       May 2019.0
## 2363 C.corindum North_Key_Largo   F 8.33   3.42  8.94 12.64       May 2019.0
## 2364 C.corindum North_Key_Largo   F 8.37   3.49  9.35 12.71       May 2019.0
## 2365 C.corindum North_Key_Largo   F 7.19   3.17  5.54  8.91       May 2019.0
## 2366 C.corindum North_Key_Largo   F 8.17   3.31  8.73 12.37       May 2019.0
## 2367 C.corindum North_Key_Largo   M 5.61   2.79  6.00  9.00       May 2019.0
## 2368 C.corindum North_Key_Largo   F 7.02   3.22  5.13  8.61       May 2019.0
## 2369 C.corindum  Plantation_Key   M 5.68   2.73  4.43  7.45       May 2019.0
## 2370 C.corindum  Plantation_Key   M 5.57   2.58  7.07  9.84       May 2019.0
## 2371 C.corindum  Plantation_Key   M 5.08   2.27  3.48  6.11       May 2019.0
## 2372 C.corindum  Plantation_Key   M 6.01   3.22  8.72 11.55       May 2019.0
## 2373 C.corindum  Plantation_Key   M 6.26   3.15  7.99 11.20       May 2019.0
## 2374 C.corindum  Plantation_Key   F 8.50   3.69  9.52 13.16       May 2019.0
## 2375 C.corindum  Plantation_Key   F 6.41   3.14  5.73  8.94       May 2019.0
## 2376 C.corindum  Plantation_Key   M 5.20   2.47  4.09  7.00       May 2019.0
## 2377 C.corindum  Plantation_Key   F 6.58   2.86  5.10  8.48       May 2019.0
## 2378 C.corindum  Plantation_Key   F 6.37   2.89  4.88  8.20       May 2019.0
## 2379 C.corindum  Plantation_Key   F 5.90   2.69  4.89  7.98       May 2019.0
## 2380 C.corindum  Plantation_Key   M 6.37   2.96  8.23 11.22       May 2019.0
## 2381 C.corindum  Plantation_Key   M 5.21   2.47  3.95  6.72       May 2019.0
## 2382 C.corindum  Plantation_Key   M 5.23   2.49  4.51  7.47       May 2019.0
## 2383 C.corindum  Plantation_Key   F 6.10   2.88  4.62  8.15       May 2019.0
## 2384 C.corindum  Plantation_Key   F 7.34   3.05  5.01  8.52       May 2019.0
## 2385 C.corindum  Plantation_Key   F 6.73   3.05  4.89  8.47       May 2019.0
## 2386 C.corindum  Plantation_Key   M 5.01   2.27  4.17  6.86       May 2019.0
## 2387 C.corindum  Plantation_Key   M 5.29   2.49  4.09  7.05       May 2019.0
## 2388 C.corindum  Plantation_Key   M 5.63   2.72  7.30 10.17       May 2019.0
## 2389 C.corindum  Plantation_Key   M 5.37   2.63  4.88  7.78       May 2019.0
## 2390 C.corindum  Plantation_Key   M 6.14   2.96  7.90 11.18       May 2019.0
## 2391 C.corindum  Plantation_Key   M 6.17   2.93  7.69 11.07       May 2019.0
## 2392 C.corindum  Plantation_Key   F 6.72   2.94  5.29  8.39       May 2019.0
## 2393 C.corindum  Plantation_Key   M 5.42   2.63  4.06  6.97       May 2019.0
## 2394 C.corindum  Plantation_Key   M 5.98   3.07  7.75 10.84       May 2019.0
## 2395 C.corindum  Plantation_Key   F 8.56   3.79 10.06 13.66       May 2019.0
## 2396 C.corindum  Plantation_Key   M 5.39   2.67  4.47  7.53       May 2019.0
## 2397 C.corindum  Plantation_Key   M 5.34   2.75  4.34  7.51       May 2019.0
## 2398 C.corindum  Plantation_Key   F 5.93   2.82  4.34  7.53       May 2019.0
## 2399 C.corindum  Plantation_Key   F 5.93   2.75  4.55  7.69       May 2019.0
## 2400 C.corindum  Plantation_Key   F 8.07   3.48  9.28 12.55       May 2019.0
## 2401 C.corindum  Plantation_Key   F 7.00   3.05  5.40  8.97       May 2019.0
## 2402 C.corindum  Plantation_Key   M 5.54   2.59  4.49  7.39       May 2019.0
## 2403  K.elegans     Gainesville   F 7.81   3.58  9.57 13.13   October 2019.0
## 2404  K.elegans     Gainesville   M 6.54   3.36  8.93 12.33   October 2019.0
## 2405  K.elegans     Gainesville   M 5.64   3.20  8.34 11.50   October 2019.0
## 2406  K.elegans     Gainesville   F 7.86   3.59  9.82 13.37   October 2019.0
## 2407  K.elegans     Gainesville   F 8.57   3.90 11.30 14.72   October 2019.0
## 2408  K.elegans     Gainesville   M 5.60   2.74  7.07 10.00   October 2019.0
## 2409  K.elegans     Gainesville   M 5.98   3.08  8.61 11.28   October 2019.0
## 2410  K.elegans     Gainesville   M 6.16   3.30  8.42 11.70   October 2019.0
## 2411  K.elegans     Gainesville   M 5.72   3.18  8.53 11.55   October 2019.0
## 2412  K.elegans     Gainesville   F 7.96   3.51  9.45 13.02   October 2019.0
## 2413  K.elegans     Gainesville   F 6.78   3.25  9.03 11.85   October 2019.0
## 2414  K.elegans     Gainesville   F 7.86   3.63  9.89 13.68   October 2019.0
## 2415  K.elegans     Gainesville   M 5.86   3.09  4.89  8.09   October 2019.0
## 2416  K.elegans     Gainesville   M 5.90   2.87  5.20  8.18   October 2019.0
## 2417  K.elegans     Gainesville   M 5.79   3.37  9.34 12.55   October 2019.0
## 2418  K.elegans     Gainesville   M 5.60   3.41  9.25 12.19   October 2019.0
## 2419  K.elegans       Homestead   M 6.20   3.31  8.85 12.20   October 2019.0
## 2420  K.elegans       Homestead   F 7.94   3.75 10.28 13.41   October 2019.0
## 2421  K.elegans       Homestead   M 5.93   3.21  8.53 11.82   October 2019.0
## 2422  K.elegans       Homestead   M 5.92   3.19  8.71 11.52   October 2019.0
## 2423  K.elegans       Homestead   F 8.37   3.80 10.22 14.17   October 2019.0
## 2424  K.elegans       Homestead   M 5.69   3.10  8.70 11.60   October 2019.0
## 2425  K.elegans       Homestead   F 7.88   4.07 10.46 14.08   October 2019.0
## 2426  K.elegans       Homestead   M 5.95   3.03  8.89 11.69   October 2019.0
## 2427  K.elegans       Homestead   M 5.84   3.15  8.74 11.55   October 2019.0
## 2428  K.elegans       Homestead   F 8.54   3.59  9.63 13.36   October 2019.0
## 2429  K.elegans       Homestead   M 5.86   3.12  8.64 11.82   October 2019.0
## 2430  K.elegans       Homestead   F 8.02   3.69  9.86 13.57   October 2019.0
## 2431  K.elegans       Homestead   F 8.33   3.74  9.30 12.73   October 2019.0
## 2432  K.elegans       Homestead   F 7.96   3.67 10.00 13.34   October 2019.0
## 2433  K.elegans       Homestead   F 7.98   3.66 10.23 13.60   October 2019.0
## 2434  K.elegans       Homestead   F 6.29   2.62  4.78  8.52   October 2019.0
## 2435  K.elegans       Homestead   M 5.38   3.00  8.22 10.99   October 2019.0
## 2436  K.elegans       Homestead   M 5.88   3.15  8.60 11.69   October 2019.0
## 2437  K.elegans       Homestead   M 6.00   3.23  9.32 12.26   October 2019.0
## 2438  K.elegans       Homestead   M 6.08   3.05  8.29 11.20   October 2019.0
## 2439  K.elegans       Homestead   M 5.74   3.15  8.74 11.78   October 2019.0
## 2440  K.elegans       Homestead   M 5.57   3.04  8.33 11.11   October 2019.0
## 2441  K.elegans       Homestead   M 5.70   3.23  8.54 11.59   October 2019.0
## 2442  K.elegans       Homestead   M 6.12   3.26  9.14 12.22   October 2019.0
## 2443  K.elegans       Homestead   M 6.06   3.29  8.80 12.10   October 2019.0
## 2444  K.elegans       Homestead   M 6.14   3.19  9.02 12.10   October 2019.0
## 2445  K.elegans       Homestead   M 5.88   3.39  9.00 12.18   October 2019.0
## 2446  K.elegans       Homestead   M 5.32   2.87  7.66 10.65   October 2019.0
## 2447  K.elegans       Homestead   M 5.88   2.89  7.94 10.62   October 2019.0
## 2448  K.elegans       Homestead   M 5.58   3.11  8.49 11.18   October 2019.0
## 2449  K.elegans       Homestead   F 7.97   3.91  9.98 13.19   October 2019.0
## 2450  K.elegans       Homestead   M 5.75   3.32  9.04 11.98   October 2019.0
## 2451  K.elegans       Homestead   M 5.27   3.16  8.45 11.21   October 2019.0
## 2452  K.elegans       Homestead   F 7.61   3.46  9.41 12.90   October 2019.0
## 2453  K.elegans       Homestead   M 5.50   3.01  8.61 11.37   October 2019.0
## 2454 C.corindum North_Key_Largo   F 8.17   3.18  8.37 11.91   October 2019.0
## 2455 C.corindum North_Key_Largo   F 7.78   3.44  8.82 11.79   October 2019.0
## 2456 C.corindum North_Key_Largo   M 5.56   2.76  4.59  7.77   October 2019.0
## 2457 C.corindum North_Key_Largo   F 7.93   3.74  9.31 13.21   October 2019.0
## 2458 C.corindum North_Key_Largo   M 6.63   3.07  7.87 11.37   October 2019.0
## 2459 C.corindum North_Key_Largo   F 8.56   3.55  9.12 12.58   October 2019.0
## 2460 C.corindum North_Key_Largo   M 6.58   3.33  9.56 12.32   October 2019.0
## 2461 C.corindum North_Key_Largo   M 6.25   3.37  8.67 11.84   October 2019.0
## 2462 C.corindum North_Key_Largo   F 6.95   3.70  9.47 13.09   October 2019.0
## 2463 C.corindum North_Key_Largo   M 3.60   2.37  7.13  9.19   October 2019.0
## 2464 C.corindum North_Key_Largo   M 5.91   2.86  7.62 10.64   October 2019.0
## 2465 C.corindum North_Key_Largo   F 9.66   3.89  9.95 13.57   October 2019.0
## 2466 C.corindum North_Key_Largo   M 6.34   3.43  8.32 11.36   October 2019.0
## 2467 C.corindum North_Key_Largo   F 7.58   3.23  8.24 11.90   October 2019.0
## 2468 C.corindum North_Key_Largo   F 7.68   3.25  8.39 11.53   October 2019.0
## 2469 C.corindum North_Key_Largo   F 7.33   3.23  8.13 11.92   October 2019.0
## 2470  K.elegans     Lake_Placid   M 5.30   3.16  8.59 11.62   October 2019.0
## 2471  K.elegans     Lake_Placid   F 7.58   3.10  8.07 11.40   October 2019.0
## 2472  K.elegans     Lake_Placid   F 7.75   3.60  9.68 13.39   October 2019.0
## 2473  K.elegans     Lake_Placid   M 5.61   3.02  8.38 11.54   October 2019.0
## 2474  K.elegans     Lake_Placid   M 5.92   3.21  8.33 11.33   October 2019.0
## 2475  K.elegans     Lake_Placid   F 6.97   3.64 10.09 13.49   October 2019.0
## 2476  K.elegans     Lake_Placid   F 7.64   3.51  9.50 13.20   October 2019.0
## 2477  K.elegans     Lake_Placid   F 8.79   3.96 10.25 14.29   October 2019.0
## 2478  K.elegans     Lake_Placid   M 5.83   3.22  8.29 11.55   October 2019.0
## 2479  K.elegans     Lake_Placid   F 7.99   3.65 10.04 13.85   October 2019.0
## 2480  K.elegans     Lake_Placid   M 5.59   3.37  8.71 11.86   October 2019.0
## 2481  K.elegans     Lake_Placid   M 5.58   3.23  8.46 11.53   October 2019.0
## 2482  K.elegans     Lake_Placid   F 7.64   3.51  9.40 12.83   October 2019.0
## 2483  K.elegans     Lake_Placid   F 7.04   3.56  9.86 12.73   October 2019.0
## 2484  K.elegans     Lake_Placid   F 7.35   3.29  8.79 12.27   October 2019.0
## 2485  K.elegans     Lake_Placid   M 5.41   2.90  8.04 10.86   October 2019.0
## 2486  K.elegans     Lake_Placid   F 8.51   3.85 10.32 14.10   October 2019.0
## 2487  K.elegans     Lake_Placid   F 7.72   3.54  9.30 12.79   October 2019.0
## 2488  K.elegans     Lake_Placid   M 5.69   3.33  9.49 12.73   October 2019.0
## 2489  K.elegans     Lake_Placid   M 5.74   2.99  8.38 11.33   October 2019.0
## 2490  K.elegans     Lake_Placid   F 7.97   3.86  9.85 13.47   October 2019.0
## 2491  K.elegans     Lake_Placid   M 5.73   3.27  9.02 12.22   October 2019.0
## 2492  K.elegans     Lake_Placid   M 5.46   3.04  8.09 11.18   October 2019.0
## 2493  K.elegans     Lake_Placid   F 7.86   3.28  8.98 12.41   October 2019.0
## 2494  K.elegans     Lake_Placid   M 5.87   3.23  8.59 11.76   October 2019.0
## 2495  K.elegans     Lake_Placid   M 5.81   3.18  8.57 11.66   October 2019.0
## 2496  K.elegans     Lake_Placid   F 8.19   3.58  9.47 13.32   October 2019.0
## 2497  K.elegans     Lake_Placid   M 5.78   3.19  8.86 11.93   October 2019.0
## 2498  K.elegans     Lake_Placid   F 7.57   3.61  9.94 13.58   October 2019.0
## 2499  K.elegans     Lake_Placid   M 5.55   2.98  8.23 11.32   October 2019.0
## 2500  K.elegans     Lake_Placid   F 7.79   3.72  9.73 13.44   October 2019.0
## 2501  K.elegans     Lake_Placid   F 7.70   3.27  9.00 12.50   October 2019.0
## 2502  K.elegans     Lake_Placid   M 5.92   3.34  8.90 11.94   October 2019.0
## 2503  K.elegans     Lake_Placid   M 6.08   3.41  8.60 11.88   October 2019.0
## 2504  K.elegans     Lake_Placid   F 7.43   3.51  9.38 12.71   October 2019.0
## 2505  K.elegans     Lake_Placid   F 7.97   3.47  9.65 13.23   October 2019.0
## 2506  K.elegans     Lake_Placid   M 5.70   2.71  7.56 10.58   October 2019.0
## 2507  K.elegans     Lake_Placid   M 5.45   2.74  7.52 10.31   October 2019.0
## 2508  K.elegans     Lake_Placid   M 5.66   3.08  7.97 10.97   October 2019.0
## 2509  K.elegans     Lake_Placid   M 6.15   3.27  8.47 11.54   October 2019.0
## 2510  K.elegans     Lake_Placid   M 6.20   3.12  8.73 11.82   October 2019.0
## 2511  K.elegans     Lake_Placid   M 5.62   3.07  8.09 11.08   October 2019.0
## 2512  K.elegans     Lake_Placid   F 7.46   3.13  8.26 11.36   October 2019.0
## 2513  K.elegans      Lake_Wales   F 6.97   3.45  9.61 12.86   October 2019.0
## 2514  K.elegans      Lake_Wales   F 7.62   3.49  9.78 13.42   October 2019.0
## 2515  K.elegans      Lake_Wales   F 8.27   3.77 10.10 13.86   October 2019.0
## 2516  K.elegans      Lake_Wales   M 5.53   3.12  8.19 11.19   October 2019.0
## 2517  K.elegans      Lake_Wales   F 8.18   3.73 10.05 13.89   October 2019.0
## 2518  K.elegans      Lake_Wales   M 6.16   3.22  8.75 11.93   October 2019.0
## 2519  K.elegans      Lake_Wales   F 7.30   3.70 10.42 13.97   October 2019.0
## 2520  K.elegans      Lake_Wales   F 7.72   3.54 10.05 13.24   October 2019.0
## 2521  K.elegans      Lake_Wales   M 6.07   3.09  8.31 11.48   October 2019.0
## 2522  K.elegans      Lake_Wales   M 5.54   2.64  5.53  8.33   October 2019.0
## 2523  K.elegans      Lake_Wales   M 5.51   3.18  8.44 11.46   October 2019.0
## 2524  K.elegans      Lake_Wales   F 8.10   3.90 10.31 14.12   October 2019.0
## 2525  K.elegans      Lake_Wales   M 5.85   3.20  8.94 12.08   October 2019.0
## 2526  K.elegans      Lake_Wales   F 8.11   3.68  9.99 13.67   October 2019.0
## 2527  K.elegans      Lake_Wales   F 7.52   3.39  9.67 13.10   October 2019.0
## 2528  K.elegans      Lake_Wales   M 5.27   2.87  8.55 11.31   October 2019.0
## 2529  K.elegans      Lake_Wales   M 5.61   2.98  8.03 11.21   October 2019.0
## 2530  K.elegans      Lake_Wales   M 5.76   3.23  8.37 11.35   October 2019.0
## 2531  K.elegans      Lake_Wales   F 8.25   3.82 10.40 14.32   October 2019.0
## 2532  K.elegans      Lake_Wales   F 6.58   3.02  5.57  9.10   October 2019.0
## 2533  K.elegans      Lake_Wales   M 5.65   3.09  8.35 11.43   October 2019.0
## 2534  K.elegans      Lake_Wales   F 7.92   3.49  9.17 12.87   October 2019.0
## 2535  K.elegans      Lake_Wales   F 6.98   3.88  9.70 13.06   October 2019.0
## 2536  K.elegans        Leesburg   F 6.83   3.44  8.54 12.25   October 2019.0
## 2537  K.elegans        Leesburg   F 8.27   3.71 10.48 14.35   October 2019.0
## 2538  K.elegans        Leesburg   F 8.13   3.71  9.98 13.78   October 2019.0
## 2539  K.elegans        Leesburg   F 8.15   3.47  9.36 13.06   October 2019.0
## 2540  K.elegans        Leesburg   F 8.12   3.79  9.92 13.78   October 2019.0
## 2541  K.elegans        Leesburg   M 5.29   2.55  4.39  7.34   October 2019.0
## 2542  K.elegans        Leesburg   M 5.22   2.80  7.42 10.60   October 2019.0
## 2543  K.elegans        Leesburg   M 5.61   2.81  6.07  9.31   October 2019.0
## 2544  K.elegans        Leesburg   F 7.49   3.25  8.54 11.88   October 2019.0
## 2545  K.elegans        Leesburg   M 5.65   3.06  8.46 11.52   October 2019.0
## 2546  K.elegans        Leesburg   M 5.67   2.94  7.15 10.36   October 2019.0
## 2547  K.elegans        Leesburg   F 8.21   3.90 10.35 13.85   October 2019.0
## 2548  K.elegans        Leesburg   M 5.53   2.99  8.42 11.40   October 2019.0
## 2549  K.elegans        Leesburg   M 5.85   2.99  8.04 11.10   October 2019.0
## 2550  K.elegans        Leesburg   M 5.23   2.75  7.36 10.14   October 2019.0
## 2551  K.elegans        Leesburg   F 8.20   3.66  9.55 13.17   October 2019.0
## 2552  K.elegans        Leesburg   M 5.97   2.69  6.04  8.88   October 2019.0
## 2553  K.elegans        Leesburg   M 5.76   3.28  8.84 11.73   October 2019.0
## 2554  K.elegans        Leesburg   F 7.97   3.49  9.98 13.80   October 2019.0
## 2555  K.elegans        Leesburg   F 7.59   3.65  9.85 12.89   October 2019.0
## 2556  K.elegans        Leesburg   M 6.05   3.12  8.66 11.77   October 2019.0
## 2557  K.elegans        Leesburg   F 8.15   3.62  9.81 13.32   October 2019.0
## 2558  K.elegans        Leesburg   F 8.42   3.91 10.56 14.66   October 2019.0
## 2559  K.elegans        Leesburg   F 7.79   3.69  9.86 13.21   October 2019.0
## 2560  K.elegans        Leesburg   M 5.31   2.88  7.37 10.29   October 2019.0
## 2561  K.elegans        Leesburg   M 6.04   3.25  8.34 11.57   October 2019.0
## 2562 C.corindum North_Key_Largo   F 8.10   3.42  8.88 12.66   October 2019.0
## 2563 C.corindum North_Key_Largo   M 6.23   2.94  7.76 10.94   October 2019.0
## 2564 C.corindum North_Key_Largo   F 8.26   3.77 10.11 13.74   October 2019.0
## 2565 C.corindum North_Key_Largo   F 8.74   3.43  8.99 12.55   October 2019.0
## 2566 C.corindum North_Key_Largo   M 5.92   3.07  8.41 11.38   October 2019.0
## 2567 C.corindum North_Key_Largo   F 8.80   3.51  9.27 12.74   October 2019.0
## 2568 C.corindum North_Key_Largo   F 6.53   3.18  5.89  9.30   October 2019.0
## 2569 C.corindum North_Key_Largo   M 5.79   2.78  7.88 10.34   October 2019.0
## 2570 C.corindum North_Key_Largo   M 6.60   2.89  7.98 11.27   October 2019.0
## 2571 C.corindum North_Key_Largo   M 6.31   3.09  8.15 11.11   October 2019.0
## 2572 C.corindum North_Key_Largo   M 6.62   2.99  8.62 11.57   October 2019.0
## 2573 C.corindum North_Key_Largo   F 8.67   3.52  9.46 13.17   October 2019.0
## 2574 C.corindum North_Key_Largo   M 6.19   2.84  7.69 10.69   October 2019.0
## 2575 C.corindum North_Key_Largo   M 6.06   2.77  5.44  8.43   October 2019.0
## 2576 C.corindum North_Key_Largo   M 6.56   3.06  8.04 10.92   October 2019.0
## 2577 C.corindum North_Key_Largo   F 8.98   3.68  9.06 12.81   October 2019.0
## 2578 C.corindum North_Key_Largo   M 5.42   2.57  4.51  7.69   October 2019.0
## 2579 C.corindum North_Key_Largo   M 5.63   2.77  5.22  8.44   October 2019.0
## 2580 C.corindum North_Key_Largo   M 6.03   3.04  8.25 11.01   October 2019.0
## 2581 C.corindum North_Key_Largo   M 6.22   3.08  8.29 10.99   October 2019.0
## 2582 C.corindum North_Key_Largo   F 6.93   3.07  5.38  8.57   October 2019.0
## 2583 C.corindum North_Key_Largo   M 5.75   2.73  7.82 10.43   October 2019.0
## 2584 C.corindum North_Key_Largo   F 7.51   3.00  8.21 11.68   October 2019.0
## 2585 C.corindum North_Key_Largo   F 6.86   3.06  5.86  9.31   October 2019.0
## 2586 C.corindum North_Key_Largo   F 7.79   3.45  9.24 12.54   October 2019.0
## 2587 C.corindum North_Key_Largo   M 6.21   2.94  6.89  9.95   October 2019.0
## 2588 C.corindum North_Key_Largo   M 5.78   2.81  7.14 10.16   October 2019.0
## 2589 C.corindum North_Key_Largo   F 8.86   3.75  9.60 13.42   October 2019.0
## 2590 C.corindum North_Key_Largo   M 6.46   3.37  8.66 11.77   October 2019.0
## 2591 C.corindum North_Key_Largo   M 5.12   2.35  3.86  6.85   October 2019.0
## 2592 C.corindum North_Key_Largo   F 9.07   3.66  9.48 13.11   October 2019.0
## 2593 C.corindum North_Key_Largo   F 8.57   3.59  8.91 12.73   October 2019.0
## 2594 C.corindum North_Key_Largo   M 5.48   2.92  7.85 10.66   October 2019.0
## 2595 C.corindum North_Key_Largo   M 6.34   2.91  8.08 11.25   October 2019.0
## 2596 C.corindum North_Key_Largo   F 7.66   3.16  8.36 11.67   October 2019.0
## 2597 C.corindum North_Key_Largo   F 8.64   3.99  9.71 13.56   October 2019.0
## 2598 C.corindum North_Key_Largo   F 9.09   3.66  9.75 13.43   October 2019.0
## 2599 C.corindum North_Key_Largo   F 7.79   3.37  8.52 12.15   October 2019.0
## 2600 C.corindum North_Key_Largo   F 8.26   3.48  9.41 13.56   October 2019.0
## 2601 C.corindum North_Key_Largo   F 8.77   3.51  9.26 12.35   October 2019.0
## 2602 C.corindum North_Key_Largo   F 5.83   2.68  4.53  7.45   October 2019.0
## 2603 C.corindum North_Key_Largo   F 9.07   3.67  9.91 13.69   October 2019.0
## 2604 C.corindum North_Key_Largo   F 8.22   3.50  8.73 12.27   October 2019.0
## 2605 C.corindum North_Key_Largo   F 7.37   3.25  6.22  9.77   October 2019.0
## 2606 C.corindum North_Key_Largo   F 8.40   3.46  9.33 12.94   October 2019.0
## 2607 C.corindum North_Key_Largo   F 8.50   3.75  9.46 13.32   October 2019.0
## 2608 C.corindum North_Key_Largo   M 6.03   3.08  7.77 10.65   October 2019.0
## 2609 C.corindum North_Key_Largo   M 6.23   3.10  8.29 11.01   October 2019.0
## 2610 C.corindum North_Key_Largo   F 9.25   3.93 10.08 13.78   October 2019.0
## 2611 C.corindum North_Key_Largo   M 5.56   2.67  7.25 10.31   October 2019.0
## 2612 C.corindum North_Key_Largo   M 6.60   3.23  8.34 11.71   October 2019.0
## 2613 C.corindum North_Key_Largo   M 6.16   3.10  8.34 11.57   October 2019.0
## 2614 C.corindum North_Key_Largo   M 5.81   3.18  7.82 10.83   October 2019.0
## 2615 C.corindum North_Key_Largo   M 6.28   3.11  8.59 11.75   October 2019.0
## 2616 C.corindum North_Key_Largo   F 6.56   3.19  8.32 11.34   October 2019.0
## 2617 C.corindum North_Key_Largo   M 5.95   3.05  8.21 11.33   October 2019.0
## 2618 C.corindum North_Key_Largo   F 8.85   3.30  8.85 12.36   October 2019.0
## 2619 C.corindum North_Key_Largo   M 6.20   3.13  8.35 11.47   October 2019.0
## 2620 C.corindum North_Key_Largo   F 9.24   3.99 10.05 13.42   October 2019.0
## 2621 C.corindum North_Key_Largo   M 6.66   3.23  8.63 11.63   October 2019.0
## 2622 C.corindum North_Key_Largo   F 9.35   3.78 10.19 14.01   October 2019.0
## 2623 C.corindum North_Key_Largo   M 6.44   3.29  8.69 11.64   October 2019.0
## 2624 C.corindum North_Key_Largo   M 5.69   2.88  7.83 10.83   October 2019.0
## 2625 C.corindum North_Key_Largo   M 6.17   3.24  8.40 11.61   October 2019.0
## 2626 C.corindum North_Key_Largo   M 6.49   3.29  8.87 12.41   October 2019.0
## 2627 C.corindum North_Key_Largo   M 6.84   3.32  8.23 11.38   October 2019.0
## 2628 C.corindum North_Key_Largo   F 7.97   3.33  8.09 11.76   October 2019.0
## 2629 C.corindum North_Key_Largo   M 5.39   2.89  7.61 10.10   October 2019.0
## 2630 C.corindum North_Key_Largo   F 8.61   3.68  9.53 13.47   October 2019.0
## 2631 C.corindum North_Key_Largo   M 5.73   2.85  7.25 10.10   October 2019.0
## 2632 C.corindum North_Key_Largo   M 5.94   3.07  7.99 10.94   October 2019.0
## 2633 C.corindum North_Key_Largo   M 5.42   2.89  8.59 11.97   October 2019.0
## 2634 C.corindum North_Key_Largo   M 5.70   2.74  5.23  8.33   October 2019.0
## 2635 C.corindum North_Key_Largo   M 5.66   2.65  4.49  7.30   October 2019.0
## 2636 C.corindum North_Key_Largo   F 6.89   2.95  8.13 11.14   October 2019.0
## 2637 C.corindum North_Key_Largo   M 5.58   2.40  4.38  7.16   October 2019.0
## 2638 C.corindum North_Key_Largo   F 7.98   3.56  9.41 12.68   October 2019.0
## 2639 C.corindum North_Key_Largo   F 8.43   3.32  8.88 12.02   October 2019.0
## 2640 C.corindum North_Key_Largo   M 5.08   2.54  4.11  6.92   October 2019.0
## 2641 C.corindum North_Key_Largo   M 5.41   2.52  5.14  7.79   October 2019.0
## 2642 C.corindum North_Key_Largo   M 5.48   2.64  4.54  7.54   October 2019.0
## 2643 C.corindum  Plantation_Key   F 8.26   3.33  6.94 10.92   October 2019.0
## 2644 C.corindum  Plantation_Key   F 7.17   3.09  6.10  9.65   October 2019.0
## 2645 C.corindum  Plantation_Key   F 8.50   3.67  9.20 12.91   October 2019.0
## 2646 C.corindum  Plantation_Key   M 6.75   3.39  8.71 11.97   October 2019.0
## 2647 C.corindum  Plantation_Key   M 6.01   2.97  7.62 10.51   October 2019.0
## 2648 C.corindum  Plantation_Key   F 7.76   3.44  9.12 12.56   October 2019.0
## 2649 C.corindum  Plantation_Key   M 5.74   2.61  4.39  7.52   October 2019.0
## 2650 C.corindum  Plantation_Key   M 5.52   2.44  4.31  7.19   October 2019.0
## 2651 C.corindum  Plantation_Key   M 5.26   2.64  4.98  7.87   October 2019.0
## 2652 C.corindum  Plantation_Key   M 6.36   3.53  9.33 11.98   October 2019.0
## 2653 C.corindum  Plantation_Key   F 8.10   3.32  8.38 11.68   October 2019.0
## 2654 C.corindum  Plantation_Key   M 5.87   2.70  7.40 10.53   October 2019.0
## 2655 C.corindum  Plantation_Key   M 5.36   2.57  4.27  4.33   October 2019.0
## 2656 C.corindum  Plantation_Key   F 9.08   3.88  9.80 13.68   October 2019.0
## 2657 C.corindum  Plantation_Key   M 5.72   2.97  7.96 11.05   October 2019.0
## 2658  K.elegans     Gainesville   M 6.03   3.36  8.90 12.29  February 2020.0
## 2659  K.elegans     Gainesville   M 6.33   3.26  8.42 11.89  February 2020.0
## 2660  K.elegans     Gainesville   M 5.18   3.05  8.23 11.06  February 2020.0
## 2661  K.elegans     Gainesville   M 5.65   3.05  8.35 11.34  February 2020.0
## 2662  K.elegans     Gainesville   M 5.56   3.10  8.23 11.32  February 2020.0
## 2663  K.elegans     Gainesville   M 6.30   3.33  8.29 11.49  February 2020.0
## 2664  K.elegans     Gainesville   M 5.73   3.10  6.99 10.13  February 2020.0
## 2665  K.elegans     Gainesville   M 5.61   3.31  8.84 11.93  February 2020.0
## 2666  K.elegans     Gainesville   M 5.65   2.99  7.95 11.06  February 2020.0
## 2667  K.elegans     Gainesville   M 5.34   2.80  7.67 10.67  February 2020.0
## 2668  K.elegans     Gainesville   F 6.49   3.22  8.96 12.25  February 2020.0
## 2669  K.elegans     Gainesville   M 5.67   2.97  8.31 11.47  February 2020.0
## 2670  K.elegans     Gainesville   F 8.24   3.92  9.50 13.32  February 2020.0
## 2671  K.elegans     Gainesville   M 6.05   3.11  7.79 10.78  February 2020.0
## 2672  K.elegans     Gainesville   M 5.23   3.08  8.14 11.03  February 2020.0
## 2673  K.elegans     Gainesville   M 5.12   3.03  7.77 10.64  February 2020.0
## 2674  K.elegans     Gainesville   M 5.76   3.42  8.96 12.03  February 2020.0
## 2675  K.elegans     Gainesville   F 6.65   3.52  9.59 12.99  February 2020.0
## 2676  K.elegans     Gainesville   M 6.30   3.16  7.56 10.44  February 2020.0
## 2677  K.elegans     Gainesville   F 5.76   3.20  7.60 10.63  February 2020.0
## 2678  K.elegans     Gainesville   M 5.26   3.02  8.11 11.26  February 2020.0
## 2679  K.elegans     Gainesville   F 5.97   3.55  8.08 11.15  February 2020.0
## 2680  K.elegans     Gainesville   M 5.07   2.90  8.04 10.80  February 2020.0
## 2681  K.elegans     Gainesville   M 6.20   3.31  7.98 11.11  February 2020.0
## 2682  K.elegans     Gainesville   M 6.11   3.14  7.87 10.81  February 2020.0
## 2683  K.elegans     Gainesville   M 6.12   3.27  8.21 11.14  February 2020.0
## 2684  K.elegans     Gainesville   M 5.02   2.83  7.44 10.22  February 2020.0
## 2685  K.elegans     Gainesville   M 5.68   3.13  7.23 10.17  February 2020.0
## 2686  K.elegans     Gainesville   M 6.00   3.38  7.75 10.97  February 2020.0
## 2687  K.elegans     Gainesville   M 6.04   3.22  8.05 11.17  February 2020.0
## 2688  K.elegans     Gainesville   M 5.94   3.34  7.95 11.19  February 2020.0
## 2689  K.elegans     Gainesville   F 7.98   3.54  8.75 12.30  February 2020.0
## 2690  K.elegans     Gainesville   M 6.13   3.44  9.16 12.60  February 2020.0
## 2691  K.elegans     Gainesville   F 5.25   3.07  8.26 11.03  February 2020.0
## 2692  K.elegans     Gainesville   M 5.22   3.16  8.30 11.16  February 2020.0
## 2693  K.elegans     Gainesville   M 5.51   3.08  8.28 11.13  February 2020.0
## 2694  K.elegans       Homestead   M 5.59   2.84  7.50 10.55  February 2020.0
## 2695  K.elegans       Homestead   F 7.47   3.82  9.66 13.31  February 2020.0
## 2696  K.elegans       Homestead   F 7.70   3.53  9.43 12.83  February 2020.0
## 2697  K.elegans       Homestead   F 6.14   2.95  7.81 11.09  February 2020.0
## 2698  K.elegans       Homestead   F 7.74   3.38  9.09 12.86  February 2020.0
## 2699  K.elegans       Homestead   M 5.06   2.75  7.68 10.18  February 2020.0
## 2700  K.elegans       Homestead   M 5.14   2.55  7.08  9.77  February 2020.0
## 2701  K.elegans       Homestead   F 7.83   3.40  8.98 12.67  February 2020.0
## 2702  K.elegans       Homestead   M 6.05   3.37  8.45 11.71  February 2020.0
## 2703  K.elegans       Homestead   M 6.01   3.30  8.34 11.64  February 2020.0
## 2704  K.elegans       Homestead   M 5.39   3.22  7.50 10.79  February 2020.0
## 2705  K.elegans       Homestead   M 5.17   2.69  6.93  9.64  February 2020.0
## 2706  K.elegans       Homestead   M 5.32   2.57  7.47 10.35  February 2020.0
## 2707  K.elegans       Homestead   M 5.20   2.62  6.58  9.22  February 2020.0
## 2708  K.elegans       Homestead   F 7.01   3.25  8.17 11.63  February 2020.0
## 2709  K.elegans       Homestead   F 6.63   3.15  8.18 11.58  February 2020.0
## 2710  K.elegans       Homestead   F 7.09   3.13  8.73 12.08  February 2020.0
## 2711  K.elegans       Homestead   M 5.27   2.55  7.03  9.72  February 2020.0
## 2712  K.elegans       Homestead   M 5.19   2.75  7.24  9.97  February 2020.0
## 2713  K.elegans       Homestead   F 6.98   3.15  8.23 11.59  February 2020.0
## 2714  K.elegans       Homestead   M 5.81   2.80  7.91 10.81  February 2020.0
## 2715  K.elegans       Homestead   F 7.68   3.76 10.40 14.34  February 2020.0
## 2716  K.elegans       Homestead   F 6.21   3.04  8.11 11.33  February 2020.0
## 2717  K.elegans       Homestead   M 5.19   2.61  6.48  9.30  February 2020.0
## 2718  K.elegans       Homestead   M 5.42   2.78  7.72 10.74  February 2020.0
## 2719  K.elegans       Homestead   M 5.49   2.65  7.22 10.07  February 2020.0
## 2720  K.elegans       Homestead   M 5.19   2.68  7.12  9.99  February 2020.0
## 2721  K.elegans       Homestead   M 4.98   2.49  6.24  8.84  February 2020.0
## 2722  K.elegans       Homestead   F 6.48   3.05  5.29  8.97  February 2020.0
## 2723  K.elegans       Homestead   F 5.97   2.98  4.94  8.27  February 2020.0
## 2724  K.elegans       Homestead   M 5.35   2.77  5.25  8.36  February 2020.0
## 2725  K.elegans       Homestead   M 5.13   2.89  7.42 10.08  February 2020.0
## 2726  K.elegans       Homestead   M 5.04   3.25  8.62 11.62  February 2020.0
## 2727  K.elegans       Homestead   M 5.18   2.60  5.93  7.98  February 2020.0
## 2728  K.elegans       Homestead   M 5.54   2.63  4.78  7.88  February 2020.0
## 2729  K.elegans       Homestead   M 5.22   2.51  4.53  7.44  February 2020.0
## 2730  K.elegans       Homestead   F 6.52   3.01  5.06  8.40  February 2020.0
## 2731  K.elegans       Homestead   F 7.26   3.06  8.52 11.96  February 2020.0
## 2732  K.elegans       Homestead   M 5.54   2.84  7.72 10.60  February 2020.0
## 2733  K.elegans       Homestead   M 5.62   3.04  8.29 11.42  February 2020.0
## 2734  K.elegans       Homestead   M 5.40   3.29  8.90 11.88  February 2020.0
## 2735  K.elegans       Homestead   M 5.73   3.11  8.39 11.14  February 2020.0
## 2736 C.corindum       Key_Largo   M 5.88   3.14  8.39 11.68  February 2020.0
## 2737 C.corindum       Key_Largo   F 8.79   3.86 10.07 14.00  February 2020.0
## 2738 C.corindum       Key_Largo   F 6.99   3.69  9.20 13.11  February 2020.0
## 2739 C.corindum       Key_Largo   M 5.25   2.72  7.87 10.31  February 2020.0
## 2740 C.corindum       Key_Largo   M 6.53   3.08  8.08 11.31  February 2020.0
## 2741 C.corindum       Key_Largo   F 6.33   3.33  8.78 12.13  February 2020.0
## 2742 C.corindum       Key_Largo   M 6.18   3.03  8.04 10.94  February 2020.0
## 2743 C.corindum       Key_Largo   M 6.08   2.97  7.80 10.95  February 2020.0
## 2744 C.corindum       Key_Largo   F 7.54   3.41  8.42 11.99  February 2020.0
## 2745 C.corindum       Key_Largo   M 8.73   3.59  9.71 13.59  February 2020.0
## 2746 C.corindum       Key_Largo   F 8.45   3.65  9.24 13.04  February 2020.0
## 2747 C.corindum       Key_Largo   F 7.94   3.27  8.52 11.96  February 2020.0
## 2748 C.corindum       Key_Largo   M 5.63   3.01  8.64 11.48  February 2020.0
## 2749 C.corindum       Key_Largo   M 5.98   3.19  8.32 11.62  February 2020.0
## 2750 C.corindum       Key_Largo   F 7.57   3.33  8.38 12.11  February 2020.0
## 2751 C.corindum       Key_Largo   M 5.57   3.01  8.53 11.47  February 2020.0
## 2752 C.corindum       Key_Largo   F 6.96   3.18  8.31 11.78  February 2020.0
## 2753 C.corindum       Key_Largo   M 6.27   2.96  8.02 11.09  February 2020.0
## 2754 C.corindum       Key_Largo   F 7.70   3.36  9.15 12.65  February 2020.0
## 2755 C.corindum       Key_Largo   M 6.11   3.01  8.43 11.32  February 2020.0
## 2756 C.corindum       Key_Largo   M 5.99   3.16  8.02 11.12  February 2020.0
## 2757 C.corindum       Key_Largo   F 7.98   3.57  8.95 12.72  February 2020.0
## 2758 C.corindum       Key_Largo   M 6.16   3.09  8.38 11.50  February 2020.0
## 2759 C.corindum       Key_Largo   M 6.54   2.99  8.03 11.33  February 2020.0
## 2760 C.corindum       Key_Largo   F 8.10   3.79  9.83 13.54  February 2020.0
## 2761 C.corindum       Key_Largo   M 5.94   3.04  8.70 11.56  February 2020.0
## 2762 C.corindum       Key_Largo   F 7.62   3.14  8.16 11.49  February 2020.0
## 2763 C.corindum       Key_Largo   M 6.22   3.03  8.05 11.38  February 2020.0
## 2764 C.corindum       Key_Largo   M 5.72   3.06  8.40 11.36  February 2020.0
## 2765 C.corindum       Key_Largo   M 5.63   3.02  8.20 11.33  February 2020.0
## 2766 C.corindum       Key_Largo   F 7.92   3.47  9.99 13.92  February 2020.0
## 2767 C.corindum       Key_Largo   M 5.37   3.08  8.01 10.80  February 2020.0
## 2768 C.corindum       Key_Largo   M 6.97   3.18  8.55 11.66  February 2020.0
## 2769 C.corindum       Key_Largo   F 7.51   3.31  9.00 12.27  February 2020.0
## 2770 C.corindum       Key_Largo   F 7.84   3.37  8.61 12.22  February 2020.0
## 2771 C.corindum       Key_Largo   M 6.22   3.13  8.02 11.31  February 2020.0
## 2772 C.corindum       Key_Largo   M 5.98   3.18  8.23 11.41  February 2020.0
## 2773 C.corindum       Key_Largo   M 6.69   3.25  8.53 11.76  February 2020.0
## 2774 C.corindum       Key_Largo   M 5.56   3.35  8.80 12.08  February 2020.0
## 2775 C.corindum       Key_Largo   M 5.35   3.23  8.61 11.71  February 2020.0
## 2776 C.corindum       Key_Largo   M 5.98   3.12  8.40 11.48  February 2020.0
## 2777 C.corindum       Key_Largo   F 6.38   2.80  6.91 10.04  February 2020.0
## 2778 C.corindum       Key_Largo   M 5.40   2.63  7.17  9.73  February 2020.0
## 2779 C.corindum       Key_Largo   M 6.28   3.28  8.80 11.96  February 2020.0
## 2780 C.corindum       Key_Largo   M 5.35   2.52  4.34  7.34  February 2020.0
## 2781 C.corindum       Key_Largo   M 5.70   2.72  4.88  8.20  February 2020.0
## 2782 C.corindum       Key_Largo   M 5.26   2.62  5.42  8.47  February 2020.0
## 2783 C.corindum       Key_Largo   M 5.35   2.59  4.40  7.07  February 2020.0
## 2784 C.corindum       Key_Largo   M 5.81   2.83  5.95  8.68  February 2020.0
## 2785 C.corindum       Key_Largo   M 5.17   2.59  4.40  7.44  February 2020.0
## 2786 C.corindum       Key_Largo   M 5.74   2.74  4.52  7.67  February 2020.0
## 2787 C.corindum       Key_Largo   M 5.48   2.46  3.66  6.68  February 2020.0
## 2788 C.corindum       Key_Largo   F 7.10   3.23  4.80  8.61  February 2020.0
## 2789 C.corindum       Key_Largo   F 6.51   3.00  5.07  8.91  February 2020.0
## 2790 C.corindum       Key_Largo   F 6.67   3.09  5.13  8.69  February 2020.0
## 2791 C.corindum       Key_Largo   M 6.00   2.82  4.76  8.30  February 2020.0
## 2792 C.corindum       Key_Largo   M 5.56   2.69  4.80  7.70  February 2020.0
## 2793 C.corindum       Key_Largo   F 6.27   2.92  5.24  8.78  February 2020.0
## 2794 C.corindum       Key_Largo   F 6.62   2.88  4.79  8.33  February 2020.0
## 2795 C.corindum       Key_Largo   M 5.55   2.50  4.71  7.77  February 2020.0
## 2796 C.corindum       Key_Largo   F 6.48   2.80  4.57  8.15  February 2020.0
## 2797 C.corindum       Key_Largo   M 5.18   2.56  4.05  6.90  February 2020.0
## 2798 C.corindum       Key_Largo   M 5.15   2.40  4.07  6.91  February 2020.0
## 2799 C.corindum       Key_Largo   F 6.88   3.29  5.46  9.24  February 2020.0
## 2800 C.corindum       Key_Largo   M 5.28   2.58  4.92  7.52  February 2020.0
## 2801 C.corindum       Key_Largo   F 7.11   2.88  4.95  8.65  February 2020.0
## 2802 C.corindum       Key_Largo   F 6.85   3.16  5.24  8.65  February 2020.0
## 2803 C.corindum       Key_Largo   F 8.83   3.54  9.23 12.92  February 2020.0
## 2804 C.corindum       Key_Largo   F 6.65   3.11  5.37  8.76  February 2020.0
## 2805 C.corindum       Key_Largo   M 5.74   2.65  4.57  7.38  February 2020.0
## 2806 C.corindum       Key_Largo   M 5.81   2.84  5.01  8.14  February 2020.0
## 2807 C.corindum       Key_Largo   M 5.68   2.73  4.57  7.67  February 2020.0
## 2808 C.corindum       Key_Largo   F 7.22   3.60  9.21 12.56  February 2020.0
## 2809 C.corindum       Key_Largo   F 6.43   2.95  4.87  8.47  February 2020.0
## 2810 C.corindum       Key_Largo   M 6.09   2.92  5.42  8.52  February 2020.0
## 2811 C.corindum       Key_Largo   M 6.48   3.18  8.06 11.20  February 2020.0
## 2812  K.elegans     Lake_Placid   M 5.46   3.00  8.23 11.57  February 2020.0
## 2813  K.elegans     Lake_Placid   F 8.31   3.71  9.77 13.61  February 2020.0
## 2814  K.elegans     Lake_Placid   F 6.44   3.38  9.42 12.99  February 2020.0
## 2815  K.elegans     Lake_Placid   M 5.85   2.98  8.35 11.53  February 2020.0
## 2816  K.elegans     Lake_Placid   M 5.31   2.96  7.77 10.89  February 2020.0
## 2817  K.elegans     Lake_Placid   F 6.06   3.20  9.63 12.74  February 2020.0
## 2818  K.elegans     Lake_Placid   F 6.55   3.27  9.44 12.93  February 2020.0
## 2819  K.elegans     Lake_Placid   F 6.38   3.46  9.10 12.75  February 2020.0
## 2820  K.elegans     Lake_Placid   M 4.77   2.62  6.73  9.41  February 2020.0
## 2821  K.elegans     Lake_Placid   F 7.38   3.40  9.21 12.73  February 2020.0
## 2822  K.elegans     Lake_Placid   M 5.88   3.05  9.00 12.01  February 2020.0
## 2823  K.elegans     Lake_Placid   M 5.73   3.17  9.12 11.97  February 2020.0
## 2824  K.elegans     Lake_Placid   M 5.41   3.01  8.68 11.48  February 2020.0
## 2825  K.elegans     Lake_Placid   M 5.41   2.99  8.30 11.21  February 2020.0
## 2826  K.elegans     Lake_Placid   F 8.01   3.46  9.39 12.63  February 2020.0
## 2827  K.elegans     Lake_Placid   M 5.18   2.87  7.29 10.06  February 2020.0
## 2828  K.elegans     Lake_Placid   F 6.44   3.36  8.43 11.86  February 2020.0
## 2829  K.elegans     Lake_Placid   M 5.17   2.76  7.84 10.65  February 2020.0
## 2830  K.elegans     Lake_Placid   M 5.56   3.10  8.99 12.33  February 2020.0
## 2831  K.elegans     Lake_Placid   M 5.58   2.84  7.80 10.96  February 2020.0
## 2832  K.elegans     Lake_Placid   F 6.98   3.71  9.85 13.50  February 2020.0
## 2833  K.elegans     Lake_Placid   M 5.43   2.88  7.66 10.56  February 2020.0
## 2834  K.elegans     Lake_Placid   M 5.37   2.84  7.73 10.82  February 2020.0
## 2835  K.elegans     Lake_Placid   F 7.92   3.37  9.53 13.16  February 2020.0
## 2836  K.elegans     Lake_Placid   F 6.96   3.59  9.18 12.80  February 2020.0
## 2837  K.elegans     Lake_Placid   M 5.56   2.96  7.91 10.89  February 2020.0
## 2838  K.elegans     Lake_Placid   F 7.61   3.44  9.09 12.74  February 2020.0
## 2839  K.elegans     Lake_Placid   F 6.51   3.36  8.88 12.00  February 2020.0
## 2840  K.elegans     Lake_Placid   M 5.14   2.75  6.93  9.83  February 2020.0
## 2841  K.elegans     Lake_Placid   M 5.45   2.95  7.64 10.72  February 2020.0
## 2842  K.elegans     Lake_Placid   M 5.72   3.00  8.36 11.56  February 2020.0
## 2843  K.elegans     Lake_Placid   M 5.46   2.98  7.47 10.46  February 2020.0
## 2844  K.elegans     Lake_Placid   M 5.24   3.14  8.71 11.91  February 2020.0
## 2845  K.elegans     Lake_Placid   M 5.26   2.93  7.93 10.82  February 2020.0
## 2846  K.elegans     Lake_Placid   F 6.88   3.50  9.48 12.92  February 2020.0
## 2847  K.elegans     Lake_Placid   M 5.37   2.85  7.63 10.52  February 2020.0
## 2848  K.elegans     Lake_Placid   F 7.67   3.68  9.78 13.35  February 2020.0
## 2849  K.elegans     Lake_Placid   M 4.97   2.72  7.62 10.18  February 2020.0
## 2850  K.elegans     Lake_Placid   M 5.34   2.85  8.15 11.03  February 2020.0
## 2851  K.elegans     Lake_Placid   M 5.14   2.73  6.58  9.23  February 2020.0
## 2852  K.elegans     Lake_Placid   F 8.05   3.76 10.18 13.84  February 2020.0
## 2853  K.elegans     Lake_Placid   M 5.30   3.01  8.36 11.44  February 2020.0
## 2854  K.elegans     Lake_Placid   M 6.31   3.38  8.83 11.96  February 2020.0
## 2855  K.elegans      Lake_Wales   M 5.41   2.98  8.03 11.18  February 2020.0
## 2856  K.elegans      Lake_Wales   F 7.75   3.58  9.34 13.26  February 2020.0
## 2857  K.elegans      Lake_Wales   M 5.46   2.90  8.21 11.14  February 2020.0
## 2858  K.elegans      Lake_Wales   F 7.44   3.33  8.98 12.36  February 2020.0
## 2859  K.elegans      Lake_Wales   F 7.50   3.28  8.63 12.08  February 2020.0
## 2860  K.elegans      Lake_Wales   F 6.99   3.39  8.98 12.65  February 2020.0
## 2861  K.elegans      Lake_Wales   F 7.59   3.31  9.21 12.82  February 2020.0
## 2862  K.elegans      Lake_Wales   M 5.58   2.89  7.56 10.97  February 2020.0
## 2863  K.elegans      Lake_Wales   M 5.31   2.68  7.65 10.44  February 2020.0
## 2864  K.elegans      Lake_Wales   F 6.62   3.60  9.83 13.61  February 2020.0
## 2865  K.elegans      Lake_Wales   M 5.27   2.74  8.04 10.94  February 2020.0
## 2866  K.elegans      Lake_Wales   M 5.73   2.99  7.88 11.13  February 2020.0
## 2867  K.elegans      Lake_Wales   M 5.96   3.37  8.93 12.11  February 2020.0
## 2868  K.elegans      Lake_Wales   F 7.02   3.53  9.35 12.62  February 2020.0
## 2869  K.elegans      Lake_Wales   F 7.16   3.37  9.22 12.66  February 2020.0
## 2870  K.elegans      Lake_Wales   M 5.54   3.14  8.32 11.48  February 2020.0
## 2871  K.elegans      Lake_Wales   M 5.16   3.04  7.99 11.03  February 2020.0
## 2872  K.elegans      Lake_Wales   M 5.71   3.24  8.09 11.05  February 2020.0
## 2873  K.elegans      Lake_Wales   F 7.25   3.85  9.90 13.48  February 2020.0
## 2874  K.elegans      Lake_Wales   M 5.47   3.21  8.33 11.21  February 2020.0
## 2875  K.elegans      Lake_Wales   M 6.26   2.89  8.07 10.93  February 2020.0
## 2876  K.elegans      Lake_Wales   F 6.44   3.63  9.21 12.82  February 2020.0
## 2877  K.elegans      Lake_Wales   M 5.40   2.90  8.08 11.02  February 2020.0
## 2878  K.elegans      Lake_Wales   F 7.60   3.44  9.21 12.52  February 2020.0
## 2879  K.elegans      Lake_Wales   M 5.05   2.79  7.91 10.82  February 2020.0
## 2880  K.elegans      Lake_Wales   F 6.44   3.68  9.52 12.91  February 2020.0
## 2881  K.elegans      Lake_Wales   F 7.58   3.36  9.24 12.63  February 2020.0
## 2882  K.elegans      Lake_Wales   M 5.54   3.00  7.98 10.91  February 2020.0
## 2883  K.elegans      Lake_Wales   M 5.29   2.67  7.47 10.23  February 2020.0
## 2884  K.elegans      Lake_Wales   F 7.28   3.32  9.46 12.61  February 2020.0
## 2885  K.elegans      Lake_Wales   F 7.68   3.28  9.13 12.48  February 2020.0
## 2886  K.elegans      Lake_Wales   F 6.61   3.59  9.57 12.89  February 2020.0
## 2887  K.elegans      Lake_Wales   M 5.56   2.85  7.61 10.46  February 2020.0
## 2888  K.elegans      Lake_Wales   M 5.67   2.63  4.54  7.41  February 2020.0
## 2889  K.elegans      Lake_Wales   F 6.74   3.23  8.77 11.70  February 2020.0
## 2890  K.elegans      Lake_Wales   M 5.85   3.09  8.13 11.21  February 2020.0
## 2891  K.elegans      Lake_Wales   M 5.87   3.05  8.64 11.58  February 2020.0
## 2892  K.elegans      Lake_Wales   M 5.51   2.79  7.19  9.69  February 2020.0
## 2893  K.elegans      Lake_Wales   M 7.41   3.36  9.13 12.34  February 2020.0
## 2894  K.elegans      Lake_Wales   M 5.73   3.13  8.61 11.54  February 2020.0
## 2895  K.elegans      Lake_Wales   F 6.47   3.54  9.08 12.37  February 2020.0
## 2896  K.elegans      Lake_Wales   M 5.48   2.98  8.32 11.23  February 2020.0
## 2897  K.elegans      Lake_Wales   M 5.22   2.87  7.38 10.01  February 2020.0
## 2898  K.elegans      Lake_Wales   M 5.37   2.88  8.24 10.93  February 2020.0
## 2899  K.elegans      Lake_Wales   F 7.85   3.60  9.49 12.76  February 2020.0
## 2900  K.elegans      Lake_Wales   M 5.02   2.68  8.13 10.86  February 2020.0
## 2901  K.elegans      Lake_Wales   F 6.70   3.35  8.00 11.37  February 2020.0
## 2902  K.elegans      Lake_Wales   F 6.50   3.49  8.99 12.20  February 2020.0
## 2903  K.elegans      Lake_Wales   M 5.64   3.04  8.22 10.85  February 2020.0
## 2904  K.elegans      Lake_Wales   M 5.04   2.86  7.87 10.61  February 2020.0
## 2905  K.elegans        Leesburg   M 5.32   2.94  7.39 10.85  February 2020.0
## 2906  K.elegans        Leesburg   M 5.89   3.32  8.37 11.70  February 2020.0
## 2907  K.elegans        Leesburg   M 5.11   2.81  7.98 10.98  February 2020.0
## 2908  K.elegans        Leesburg   M 5.42   2.98  8.49 11.19  February 2020.0
## 2909  K.elegans        Leesburg   M 5.59   2.99  7.82 11.02  February 2020.0
## 2910  K.elegans        Leesburg   M 5.35   2.92  7.45 10.24  February 2020.0
## 2911  K.elegans        Leesburg   F 6.14   3.66  8.79 12.14  February 2020.0
## 2912  K.elegans        Leesburg   F 6.17   2.97  8.04 11.35  February 2020.0
## 2913  K.elegans        Leesburg   F 6.07   3.45  8.93 12.33  February 2020.0
## 2914  K.elegans        Leesburg   M 5.99   3.22  8.59 11.72  February 2020.0
## 2915  K.elegans        Leesburg   M 5.14   2.72  6.94  9.98  February 2020.0
## 2916  K.elegans        Leesburg   M 5.72   3.10  8.59 11.72  February 2020.0
## 2917  K.elegans        Leesburg   F 6.47   3.50  9.35 12.66  February 2020.0
## 2918  K.elegans        Leesburg   M 5.54   2.94  8.29 11.12  February 2020.0
## 2919  K.elegans        Leesburg   F 6.36   2.74  5.09  8.22  February 2020.0
## 2920  K.elegans        Leesburg   F 6.41   3.00  7.97 11.17  February 2020.0
## 2921  K.elegans        Leesburg   M 5.83   3.26  8.21 11.29  February 2020.0
## 2922  K.elegans        Leesburg   M 4.87   2.96  7.94 10.68  February 2020.0
## 2923  K.elegans        Leesburg   M 5.53   3.19  8.56 11.64  February 2020.0
## 2924  K.elegans        Leesburg   M 5.51   3.31  8.82 12.06  February 2020.0
## 2925  K.elegans        Leesburg   M 5.05   2.89  8.15 10.94  February 2020.0
## 2926  K.elegans        Leesburg   M 5.00   2.99  8.36 11.05  February 2020.0
## 2927  K.elegans        Leesburg   F 6.54   3.46  9.50 13.09  February 2020.0
## 2928  K.elegans        Leesburg   F 6.31   3.47  9.17 12.53  February 2020.0
## 2929  K.elegans        Leesburg   M 5.60   3.10  7.95 11.32  February 2020.0
## 2930  K.elegans        Leesburg   F 7.62   3.37  8.17 11.62  February 2020.0
## 2931  K.elegans        Leesburg   M 5.19   2.88  4.99  7.88  February 2020.0
## 2932  K.elegans        Leesburg   M 5.40   3.05  8.11 10.98  February 2020.0
## 2933  K.elegans        Leesburg   M 4.99   2.96  7.30 10.28  February 2020.0
## 2934 C.corindum North_Key_Largo   M 6.03   2.90  7.68 10.67  February 2020.0
## 2935 C.corindum North_Key_Largo   M 5.75   2.94  8.30 11.40  February 2020.0
## 2936 C.corindum North_Key_Largo   M 5.44   2.97  7.66 10.67  February 2020.0
## 2937 C.corindum North_Key_Largo   M 6.07   3.24  8.40 11.40  February 2020.0
## 2938 C.corindum North_Key_Largo   F 8.03   3.42  9.08 12.77  February 2020.0
## 2939 C.corindum North_Key_Largo   F 7.15   3.01  7.91 11.29  February 2020.0
## 2940 C.corindum North_Key_Largo   F 7.58   3.55  8.72 12.28  February 2020.0
## 2941 C.corindum North_Key_Largo   M 5.50   2.90  7.57 10.73  February 2020.0
## 2942 C.corindum North_Key_Largo   F 6.24   2.98  7.58 10.98  February 2020.0
## 2943 C.corindum North_Key_Largo   F 7.56   3.26  8.18 11.71  February 2020.0
## 2944 C.corindum North_Key_Largo   F 8.12   3.25  8.28 11.71  February 2020.0
## 2945 C.corindum North_Key_Largo   F 8.17   3.54  9.33 12.79  February 2020.0
## 2946 C.corindum North_Key_Largo   M 6.05   3.38  8.39 11.52  February 2020.0
## 2947 C.corindum North_Key_Largo   M 6.21   3.25  8.58 11.64  February 2020.0
## 2948 C.corindum North_Key_Largo   M 5.99   2.99  7.55 10.80  February 2020.0
## 2949 C.corindum North_Key_Largo   M 5.95   3.10  8.20 11.48  February 2020.0
## 2950 C.corindum North_Key_Largo   F 7.44   3.07  7.86 11.20  February 2020.0
## 2951 C.corindum North_Key_Largo   M 5.72   2.82  7.46 10.43  February 2020.0
## 2952 C.corindum North_Key_Largo   F 7.85   3.73  9.71 13.20  February 2020.0
## 2953 C.corindum North_Key_Largo   F 7.19   3.32  8.56 12.21  February 2020.0
## 2954 C.corindum North_Key_Largo   M 6.30   3.04  8.07 11.40  February 2020.0
## 2955 C.corindum North_Key_Largo   F 8.18   3.48  8.57 12.28  February 2020.0
## 2956 C.corindum North_Key_Largo   F 8.45   3.95 10.00 14.16  February 2020.0
## 2957 C.corindum North_Key_Largo   M 6.23   2.97  7.76 10.83  February 2020.0
## 2958 C.corindum North_Key_Largo   M 5.58   2.77  7.22 10.02  February 2020.0
## 2959 C.corindum North_Key_Largo   M 6.41   3.25  8.62 11.65  February 2020.0
## 2960 C.corindum North_Key_Largo   M 5.67   2.98  7.01 10.08  February 2020.0
## 2961 C.corindum North_Key_Largo   M 6.13   2.99  7.43 10.56  February 2020.0
## 2962 C.corindum North_Key_Largo   M 6.44   3.09  8.24 11.42  February 2020.0
## 2963 C.corindum North_Key_Largo   M 5.91   3.22  8.43 11.41  February 2020.0
## 2964 C.corindum North_Key_Largo   F 8.97   3.78 10.05 13.61  February 2020.0
## 2965 C.corindum North_Key_Largo   M 5.94   2.92  7.98 10.85  February 2020.0
## 2966 C.corindum North_Key_Largo   F 9.02   3.71  9.47 13.43  February 2020.0
## 2967 C.corindum North_Key_Largo   M 5.93   2.94  8.16 11.08  February 2020.0
## 2968 C.corindum North_Key_Largo   F 8.29   3.64  9.99 13.81  February 2020.0
## 2969 C.corindum North_Key_Largo   F 8.44   3.70  9.31 13.44  February 2020.0
## 2970 C.corindum North_Key_Largo   F 8.64   3.27  8.90 12.61  February 2020.0
## 2971 C.corindum North_Key_Largo   F 7.58   3.32  8.58 12.21  February 2020.0
## 2972 C.corindum North_Key_Largo   M 6.07   3.15  8.18 11.15  February 2020.0
## 2973 C.corindum North_Key_Largo   M 6.01   3.17  8.18 11.15  February 2020.0
## 2974 C.corindum North_Key_Largo   M 5.75   2.92  7.78 10.93  February 2020.0
## 2975 C.corindum North_Key_Largo   F 9.08   3.71  9.68 13.81  February 2020.0
## 2976 C.corindum North_Key_Largo   F 6.91   3.02  7.75 11.25  February 2020.0
## 2977 C.corindum North_Key_Largo   F 9.87   4.14 10.47 14.34  February 2020.0
## 2978 C.corindum North_Key_Largo   M 5.78   2.83  7.38 10.46  February 2020.0
## 2979 C.corindum North_Key_Largo   M 6.09   2.90  8.08 10.86  February 2020.0
## 2980 C.corindum North_Key_Largo   M 6.88   3.16  8.84 12.06  February 2020.0
## 2981 C.corindum North_Key_Largo   M 5.42   2.70  7.20 10.15  February 2020.0
## 2982 C.corindum North_Key_Largo   F 8.04   3.32  8.36 11.72  February 2020.0
## 2983 C.corindum North_Key_Largo   F 7.41   3.79  9.98 13.66  February 2020.0
## 2984 C.corindum North_Key_Largo   F 7.61   3.82  9.80 13.86  February 2020.0
## 2985 C.corindum North_Key_Largo   M 5.72   3.06  7.80 10.72  February 2020.0
## 2986 C.corindum North_Key_Largo   M 6.85   3.08  8.92 11.99  February 2020.0
## 2987 C.corindum North_Key_Largo   M 5.34   2.93  7.63 10.63  February 2020.0
## 2988 C.corindum North_Key_Largo   F 7.90   3.33  8.50 12.37  February 2020.0
## 2989 C.corindum North_Key_Largo   M 6.39   3.18  8.41 11.86  February 2020.0
## 2990 C.corindum North_Key_Largo   F 8.17   3.48  9.37 13.09  February 2020.0
## 2991 C.corindum North_Key_Largo   M 5.78   2.94  7.97 11.14  February 2020.0
## 2992 C.corindum North_Key_Largo   M 5.94   2.89  7.83 11.00  February 2020.0
## 2993 C.corindum North_Key_Largo   M 6.40   3.08  8.37 11.69  February 2020.0
## 2994 C.corindum North_Key_Largo   F 6.39   2.88  7.56 10.70  February 2020.0
## 2995 C.corindum North_Key_Largo   F 7.35   3.74  9.77 13.20  February 2020.0
## 2996 C.corindum North_Key_Largo   M 5.58   3.11  8.65 11.52  February 2020.0
## 2997 C.corindum North_Key_Largo   M 6.17   2.61  8.01 10.53  February 2020.0
## 2998 C.corindum North_Key_Largo   F 8.51   3.67  9.15 12.95  February 2020.0
## 2999 C.corindum North_Key_Largo   M 5.55   2.77  6.58  9.52  February 2020.0
## 3000 C.corindum North_Key_Largo   M 5.42   2.82  7.60 10.59  February 2020.0
## 3001 C.corindum North_Key_Largo   M 6.16   3.20  8.37 11.71  February 2020.0
## 3002 C.corindum North_Key_Largo   M 6.15   3.04  8.24 11.48  February 2020.0
## 3003 C.corindum North_Key_Largo   F 7.99   3.50  8.71 12.31  February 2020.0
## 3004 C.corindum North_Key_Largo   M 6.38   2.99  7.66 10.66  February 2020.0
## 3005 C.corindum North_Key_Largo   M 5.77   2.91  7.40 10.49  February 2020.0
## 3006 C.corindum North_Key_Largo   M 6.35   3.17  8.53 11.52  February 2020.0
## 3007 C.corindum North_Key_Largo   M 5.95   3.11  8.26 11.56  February 2020.0
## 3008 C.corindum North_Key_Largo   M 5.79   3.06  8.16 11.14  February 2020.0
## 3009 C.corindum North_Key_Largo   F 8.15   4.04 10.52 14.50  February 2020.0
## 3010 C.corindum North_Key_Largo   F 9.17   3.73  9.38 12.86  February 2020.0
## 3011 C.corindum North_Key_Largo   F 8.28   3.46  8.71 12.32  February 2020.0
## 3012 C.corindum North_Key_Largo   M 6.41   3.02  8.13 11.12  February 2020.0
## 3013 C.corindum North_Key_Largo   M 6.67   3.20  8.46 11.40  February 2020.0
## 3014 C.corindum North_Key_Largo   M 5.71   3.34  8.49 11.61  February 2020.0
## 3015 C.corindum North_Key_Largo   F 9.44   4.00 10.17 14.13  February 2020.0
## 3016 C.corindum North_Key_Largo   F 6.90   3.05  7.79 11.22  February 2020.0
## 3017 C.corindum North_Key_Largo   F 8.04   3.53  9.18 12.63  February 2020.0
## 3018 C.corindum North_Key_Largo   F 8.49   3.25  8.52 12.17  February 2020.0
## 3019 C.corindum North_Key_Largo   F 8.54   3.50  9.35 13.05  February 2020.0
## 3020 C.corindum North_Key_Largo   M 5.97   2.88  7.99 10.86  February 2020.0
## 3021 C.corindum North_Key_Largo   M 5.84   2.87  7.55 10.62  February 2020.0
## 3022 C.corindum North_Key_Largo   M 5.78   2.85  7.10 10.18  February 2020.0
## 3023 C.corindum North_Key_Largo   F 8.32   3.39  9.09 12.47  February 2020.0
## 3024 C.corindum North_Key_Largo   M 5.54   3.01  7.68 10.57  February 2020.0
## 3025 C.corindum North_Key_Largo   F 7.84   3.49  9.01 12.59  February 2020.0
## 3026 C.corindum North_Key_Largo   M 6.00   3.30  7.35 10.71  February 2020.0
## 3027 C.corindum North_Key_Largo   F 7.53   3.27  8.13 12.13  February 2020.0
## 3028 C.corindum North_Key_Largo   M 6.05   3.03  8.31 11.52  February 2020.0
## 3029 C.corindum North_Key_Largo   F 6.84   3.02  6.00  9.41  February 2020.0
## 3030 C.corindum North_Key_Largo   M 6.08   3.16  8.42 11.66  February 2020.0
## 3031 C.corindum North_Key_Largo   M 5.47   2.92  8.29 11.29  February 2020.0
## 3032 C.corindum North_Key_Largo   M 5.84   2.98  7.83 10.88  February 2020.0
## 3033 C.corindum North_Key_Largo   M 6.16   3.01  7.88 10.90  February 2020.0
## 3034 C.corindum North_Key_Largo   M 5.51   2.75  7.11  9.94  February 2020.0
## 3035 C.corindum North_Key_Largo   M 6.43   3.27  8.85 11.84  February 2020.0
## 3036 C.corindum North_Key_Largo   M 5.47   2.72  6.73  9.77  February 2020.0
## 3037 C.corindum North_Key_Largo   M 5.69   2.94  7.27 10.38  February 2020.0
## 3038 C.corindum North_Key_Largo   M 6.02   2.76  7.12 10.08  February 2020.0
## 3039 C.corindum North_Key_Largo   M 5.98   2.76  7.15 10.13  February 2020.0
## 3040 C.corindum North_Key_Largo   M 5.24   2.49  6.06  8.89  February 2020.0
## 3041 C.corindum North_Key_Largo   M 5.52   2.64  7.17  9.95  February 2020.0
## 3042 C.corindum North_Key_Largo   F 8.50   3.28  8.65 12.35  February 2020.0
## 3043 C.corindum North_Key_Largo   M 6.08   2.98  7.63 10.70  February 2020.0
## 3044 C.corindum North_Key_Largo   M 5.77   2.77  7.30 10.22  February 2020.0
## 3045 C.corindum North_Key_Largo   M 5.99   3.26  8.25 11.39  February 2020.0
## 3046 C.corindum North_Key_Largo   M 6.12   3.10  8.56 11.66  February 2020.0
## 3047 C.corindum North_Key_Largo   M 5.78   3.00  8.35 11.27  February 2020.0
## 3048 C.corindum North_Key_Largo   M 6.07   2.82  7.53 10.73  February 2020.0
## 3049 C.corindum North_Key_Largo   M 6.56   2.91  8.02 11.22  February 2020.0
## 3050 C.corindum North_Key_Largo   M 6.09   3.08  8.05 11.21  February 2020.0
## 3051 C.corindum North_Key_Largo   F 7.02   3.06  7.35 10.48  February 2020.0
## 3052 C.corindum North_Key_Largo   M 6.65   3.31  8.30 11.50  February 2020.0
## 3053 C.corindum North_Key_Largo   M 5.83   2.69  7.11 10.03  February 2020.0
## 3054 C.corindum North_Key_Largo   F 7.32   3.05  8.34 11.68  February 2020.0
## 3055 C.corindum North_Key_Largo   M 6.17   2.91  7.57 10.44  February 2020.0
## 3056 C.corindum North_Key_Largo   M 6.03   3.05  8.01 11.00  February 2020.0
## 3057 C.corindum North_Key_Largo   M 5.81   2.78  7.32 10.12  February 2020.0
## 3058 C.corindum North_Key_Largo   F 6.35   3.03  7.38 10.93  February 2020.0
## 3059 C.corindum North_Key_Largo   F 7.51   3.09  7.91 11.42  February 2020.0
## 3060 C.corindum North_Key_Largo   M 6.13   3.22  8.68 11.83  February 2020.0
## 3061 C.corindum North_Key_Largo   M 6.59   2.96  7.87 11.05  February 2020.0
## 3062 C.corindum North_Key_Largo   M 5.88   3.07  8.12 11.04  February 2020.0
## 3063 C.corindum North_Key_Largo   M 6.30   2.99  7.93 11.11  February 2020.0
## 3064 C.corindum North_Key_Largo   M 5.93   3.03  7.89 10.85  February 2020.0
## 3065 C.corindum North_Key_Largo   M 5.92   3.35  8.93 12.04  February 2020.0
## 3066 C.corindum North_Key_Largo   F 6.79   3.61  9.77 13.39  February 2020.0
## 3067 C.corindum North_Key_Largo   M 5.68   2.78  7.72 10.29  February 2020.0
## 3068 C.corindum North_Key_Largo   M 6.23   3.34  8.89 12.04  February 2020.0
## 3069 C.corindum North_Key_Largo   M 5.86   2.91  7.99 11.06  February 2020.0
## 3070 C.corindum North_Key_Largo   M 5.56   3.24  8.16 11.42  February 2020.0
## 3071 C.corindum North_Key_Largo   M 6.29   2.90  7.78 10.89  February 2020.0
## 3072 C.corindum North_Key_Largo   M 5.33   2.95  7.70 10.75  February 2020.0
## 3073 C.corindum North_Key_Largo   M 5.97   2.92  8.10 10.84  February 2020.0
## 3074 C.corindum North_Key_Largo   F 7.71   3.47  8.42 11.78  February 2020.0
## 3075 C.corindum North_Key_Largo   F 8.23   3.76  9.40 13.00  February 2020.0
## 3076 C.corindum North_Key_Largo   M 6.06   2.83  5.88  8.77  February 2020.0
## 3077 C.corindum North_Key_Largo   F 8.59   3.68  9.92 13.59  February 2020.0
## 3078 C.corindum North_Key_Largo   M 5.18   2.60  5.45  8.60  February 2020.0
## 3079 C.corindum North_Key_Largo   M 5.50   3.02  8.18 11.11  February 2020.0
## 3080 C.corindum North_Key_Largo   M 5.51   2.66  5.05  7.74  February 2020.0
## 3081 C.corindum North_Key_Largo   M 5.64   2.90  4.80  7.98  February 2020.0
## 3082 C.corindum North_Key_Largo   F 6.88   3.23  5.25  9.09  February 2020.0
## 3083 C.corindum North_Key_Largo   M 5.50   2.75  5.56  8.52  February 2020.0
## 3084 C.corindum North_Key_Largo   F 8.79   3.65  9.15 12.49  February 2020.0
## 3085 C.corindum North_Key_Largo   F 6.14   2.82  4.19  7.63  February 2020.0
## 3086 C.corindum North_Key_Largo   F 6.10   2.94  4.68  8.01  February 2020.0
## 3087 C.corindum North_Key_Largo   F 5.59   2.56  4.49  7.42  February 2020.0
## 3088 C.corindum North_Key_Largo   F 7.76   3.44  6.22 10.32  February 2020.0
## 3089 C.corindum North_Key_Largo   F 6.55   2.91  4.62  7.93  February 2020.0
## 3090 C.corindum North_Key_Largo   M 4.90   2.24  3.67  6.59  February 2020.0
## 3091 C.corindum North_Key_Largo   M 5.76   2.86  7.33 10.26  February 2020.0
## 3092 C.corindum North_Key_Largo   F 8.53   3.58  8.92 12.60  February 2020.0
## 3093 C.corindum North_Key_Largo   F 8.21   3.60  9.06 12.65  February 2020.0
## 3094 C.corindum North_Key_Largo   M 5.89   3.00  7.67 10.66  February 2020.0
## 3095 C.corindum North_Key_Largo   M 5.36   2.69  7.59 10.46  February 2020.0
## 3096 C.corindum North_Key_Largo   M 5.86   2.82  4.69  7.99  February 2020.0
## 3097 C.corindum North_Key_Largo   F 6.22   2.99  4.84  8.34  February 2020.0
## 3098 C.corindum North_Key_Largo   M 5.14   2.48  4.55  7.11  February 2020.0
## 3099 C.corindum North_Key_Largo   M 5.75   2.65  4.47  7.64  February 2020.0
## 3100 C.corindum North_Key_Largo   F 7.97   3.67  9.36 12.93  February 2020.0
## 3101 C.corindum North_Key_Largo   M 6.40   3.34  7.67 10.86  February 2020.0
## 3102 C.corindum North_Key_Largo   M 5.41   3.18  8.00 11.02  February 2020.0
## 3103 C.corindum North_Key_Largo   F 8.51   3.69  9.63 13.47  February 2020.0
## 3104 C.corindum North_Key_Largo   M 5.99   3.03  5.14  8.48  February 2020.0
## 3105 C.corindum North_Key_Largo   M 5.51   2.48  4.24  7.19  February 2020.0
## 3106 C.corindum North_Key_Largo   F 6.85   2.91  4.76  8.20  February 2020.0
## 3107 C.corindum North_Key_Largo   F 6.44   2.75  4.20  7.74  February 2020.0
## 3108 C.corindum North_Key_Largo   M 5.41   2.41  4.45  7.56  February 2020.0
## 3109 C.corindum North_Key_Largo   M 5.91   2.85  5.43  8.28  February 2020.0
## 3110 C.corindum North_Key_Largo   F 6.07   2.78  4.41  7.88  February 2020.0
## 3111 C.corindum North_Key_Largo   M 5.64   2.72  4.73  7.72  February 2020.0
## 3112 C.corindum North_Key_Largo   F 7.51   2.99  5.07  8.70  February 2020.0
## 3113 C.corindum North_Key_Largo   M 5.36   2.44  3.71  6.51  February 2020.0
## 3114 C.corindum North_Key_Largo   F 5.82   2.56  3.86  6.93  February 2020.0
## 3115 C.corindum North_Key_Largo   F 5.88   2.65  4.14  7.31  February 2020.0
## 3116 C.corindum North_Key_Largo   M 5.47   2.41  4.22  6.97  February 2020.0
## 3117 C.corindum North_Key_Largo   M 5.26   2.39  3.66  6.57  February 2020.0
## 3118 C.corindum North_Key_Largo   M 5.31   2.58  4.05  7.11  February 2020.0
## 3119 C.corindum North_Key_Largo   F 6.65   3.19  5.34  9.01  February 2020.0
## 3120 C.corindum North_Key_Largo   M 5.42   2.43  5.10  7.86  February 2020.0
## 3121 C.corindum North_Key_Largo   M 5.64   2.71  4.48  7.30  February 2020.0
## 3122 C.corindum North_Key_Largo   M 5.47   2.85  4.55  7.61  February 2020.0
## 3123 C.corindum North_Key_Largo   F 7.25   3.21  5.47  9.28  February 2020.0
## 3124 C.corindum North_Key_Largo   F 6.07   2.80  4.26  7.67  February 2020.0
## 3125 C.corindum North_Key_Largo   M 5.72   2.73  4.95  8.15  February 2020.0
## 3126 C.corindum North_Key_Largo   M 5.46   2.58  4.52  7.80  February 2020.0
## 3127 C.corindum North_Key_Largo   M 5.31   2.52  4.20  7.30  February 2020.0
## 3128 C.corindum North_Key_Largo   F 6.89   3.03  5.29  9.03  February 2020.0
## 3129 C.corindum North_Key_Largo   F 6.51   3.09  4.87  8.15  February 2020.0
## 3130 C.corindum North_Key_Largo   M 5.65   2.68  4.36  7.38  February 2020.0
## 3131 C.corindum North_Key_Largo   F 8.22   3.70  9.58 13.14  February 2020.0
## 3132 C.corindum North_Key_Largo   M 5.18   2.62  4.39  7.80  February 2020.0
## 3133 C.corindum North_Key_Largo   M 5.08   2.36  3.94  6.79  February 2020.0
## 3134 C.corindum North_Key_Largo   M 5.04   2.51  3.89  6.96  February 2020.0
## 3135 C.corindum North_Key_Largo   F 6.38   2.78  4.47  8.09  February 2020.0
## 3136 C.corindum North_Key_Largo   F 9.21   3.76  9.44 13.19  February 2020.0
## 3137 C.corindum North_Key_Largo   M 6.12   2.93  5.38  8.63  February 2020.0
## 3138 C.corindum North_Key_Largo   F 6.97   3.07  5.12  8.62  February 2020.0
## 3139 C.corindum North_Key_Largo   M 5.94   2.81  4.95  8.11  February 2020.0
## 3140 C.corindum North_Key_Largo   F 7.23   3.18  4.94  8.55  February 2020.0
## 3141 C.corindum North_Key_Largo   M 5.35   2.52  4.32  7.36  February 2020.0
## 3142 C.corindum North_Key_Largo   M 5.62   2.89  4.58  7.70  February 2020.0
## 3143 C.corindum North_Key_Largo   F 7.32   3.25  8.61 11.88  February 2020.0
## 3144 C.corindum North_Key_Largo   M 5.06   2.61  4.47  7.02  February 2020.0
## 3145 C.corindum North_Key_Largo   F 6.00   2.93  4.68  8.05  February 2020.0
## 3146 C.corindum North_Key_Largo   F 6.57   3.20  8.36 11.92  February 2020.0
## 3147 C.corindum North_Key_Largo   F 6.36   2.94  4.67  8.09  February 2020.0
## 3148 C.corindum North_Key_Largo   M 6.48   3.19  8.69 11.99  February 2020.0
## 3149 C.corindum North_Key_Largo   F 6.11   2.72  5.10  8.40  February 2020.0
## 3150 C.corindum North_Key_Largo   F 7.53   3.25  8.75 12.00  February 2020.0
## 3151 C.corindum North_Key_Largo   F 8.37   3.85 10.09 14.09  February 2020.0
## 3152 C.corindum North_Key_Largo   M 5.85   2.83  6.92  9.83  February 2020.0
## 3153 C.corindum North_Key_Largo   F 8.25   3.54  8.75 12.44  February 2020.0
## 3154 C.corindum North_Key_Largo   M 5.40   3.19  8.22 11.20  February 2020.0
## 3155 C.corindum  Plantation_Key   M 5.50   3.18  8.39 11.83  February 2020.0
## 3156 C.corindum  Plantation_Key   M 5.64   3.12  7.88 11.09  February 2020.0
## 3157 C.corindum  Plantation_Key   M 5.75   3.36  8.48 11.90  February 2020.0
## 3158 C.corindum  Plantation_Key   M 6.21   2.97  7.87 10.90  February 2020.0
## 3159 C.corindum  Plantation_Key   F 7.47   3.32  8.33 11.89  February 2020.0
## 3160 C.corindum  Plantation_Key   M 5.76   3.04  8.03 11.00  February 2020.0
## 3161 C.corindum  Plantation_Key   F 8.19   3.64  9.30 13.02  February 2020.0
## 3162 C.corindum  Plantation_Key   F 8.39   3.54  9.38 13.09  February 2020.0
## 3163 C.corindum  Plantation_Key   M 6.10   3.39  9.06 12.14  February 2020.0
## 3164 C.corindum  Plantation_Key   M 6.09   3.28  8.56 12.21  February 2020.0
## 3165 C.corindum  Plantation_Key   F 7.01   3.68  9.23 13.04  February 2020.0
## 3166 C.corindum  Plantation_Key   M 5.69   3.11  8.41 11.60  February 2020.0
## 3167 C.corindum  Plantation_Key   F 8.26   3.53  9.00 12.53  February 2020.0
## 3168 C.corindum  Plantation_Key   M 6.83   3.36  8.61 12.01  February 2020.0
## 3169 C.corindum  Plantation_Key   M 6.14   3.21  8.40 11.85  February 2020.0
## 3170 C.corindum  Plantation_Key   F 7.29   3.16  8.15 11.51  February 2020.0
## 3171 C.corindum  Plantation_Key   M 5.67   3.13  8.17 11.13  February 2020.0
## 3172 C.corindum  Plantation_Key   M 6.06   3.26  8.50 11.93  February 2020.0
## 3173 C.corindum  Plantation_Key   F 6.76   3.59  9.29 12.87  February 2020.0
## 3174 C.corindum  Plantation_Key   M 5.61   2.70  7.20  9.96  February 2020.0
## 3175 C.corindum  Plantation_Key   M 5.72   3.05  8.13 11.52  February 2020.0
## 3176 C.corindum  Plantation_Key   M 5.59   3.13  8.35 11.45  February 2020.0
## 3177 C.corindum  Plantation_Key   M 5.82   3.34  8.52 11.93  February 2020.0
## 3178 C.corindum  Plantation_Key   M 5.79   2.70  7.65 10.51  February 2020.0
## 3179 C.corindum  Plantation_Key   M 5.81   2.96  8.47 11.75  February 2020.0
## 3180 C.corindum  Plantation_Key   M 5.51   2.82  7.41 10.82  February 2020.0
## 3181 C.corindum  Plantation_Key   M 5.77   2.86  8.00 11.06  February 2020.0
## 3182 C.corindum  Plantation_Key   M 5.99   2.96  7.84 10.83  February 2020.0
## 3183 C.corindum  Plantation_Key   F 9.02   3.45  9.36 13.06  February 2020.0
## 3184 C.corindum  Plantation_Key   M 6.20   3.15  8.75 11.74  February 2020.0
## 3185 C.corindum  Plantation_Key   M 5.54   3.20  8.52 11.64  February 2020.0
## 3186 C.corindum  Plantation_Key   M 5.53   2.95  8.12 10.90  February 2020.0
## 3187 C.corindum  Plantation_Key   M 6.25   3.16  8.57 11.73  February 2020.0
## 3188 C.corindum  Plantation_Key   M 5.52   2.88  7.48 10.51  February 2020.0
## 3189 C.corindum  Plantation_Key   F 8.04   3.40  9.11 12.60  February 2020.0
## 3190 C.corindum  Plantation_Key   M 5.84   2.93  7.77 10.76  February 2020.0
## 3191 C.corindum  Plantation_Key   M 6.12   2.94  8.00 11.00  February 2020.0
## 3192 C.corindum  Plantation_Key   M 5.63   2.77  7.55 10.32  February 2020.0
## 3193 C.corindum  Plantation_Key   M 6.30   3.31  8.78 11.97  February 2020.0
## 3194 C.corindum  Plantation_Key   M 5.70   2.91  7.79 10.77  February 2020.0
## 3195 C.corindum  Plantation_Key   F 7.77   3.30  9.02 12.44  February 2020.0
## 3196 C.corindum  Plantation_Key   F 6.58   3.21  8.32 11.70  February 2020.0
## 3197 C.corindum  Plantation_Key   M 6.23   3.11  8.31 11.45  February 2020.0
## 3198 C.corindum  Plantation_Key   F 7.21   3.59 10.02 13.53  February 2020.0
## 3199 C.corindum  Plantation_Key   F 8.53   3.30  8.48 11.98  February 2020.0
## 3200 C.corindum  Plantation_Key   M 5.89   2.14  6.30  9.34  February 2020.0
## 3201 C.corindum  Plantation_Key   M 6.09   2.68  7.57 10.67  February 2020.0
## 3202 C.corindum  Plantation_Key   F 9.01   3.77 10.53 13.86  February 2020.0
## 3203 C.corindum  Plantation_Key   M 6.17   3.16  8.55 11.85  February 2020.0
## 3204 C.corindum  Plantation_Key   M 5.45   2.65  7.20 10.09  February 2020.0
## 3205 C.corindum  Plantation_Key   F 6.37   2.99  7.40 10.73  February 2020.0
## 3206 C.corindum  Plantation_Key   M 5.43   2.58  4.49  7.58  February 2020.0
## 3207 C.corindum  Plantation_Key   M 5.30   2.51  4.09  6.76  February 2020.0
## 3208 C.corindum  Plantation_Key   F 7.03   2.92  4.94  8.71  February 2020.0
## 3209 C.corindum  Plantation_Key   M 5.57   2.63  4.34  7.44  February 2020.0
## 3210 C.corindum  Plantation_Key   F 7.26   3.23  4.78  8.53  February 2020.0
## 3211 C.corindum  Plantation_Key   F 6.48   3.33  9.03 12.18  February 2020.0
## 3212 C.corindum  Plantation_Key   M 6.22   3.44  8.17 11.65  February 2020.0
## 3213 C.corindum  Plantation_Key   M 5.71   2.66  4.46  7.60  February 2020.0
## 3214 C.corindum  Plantation_Key   F 6.04   2.85  4.48  7.84  February 2020.0
## 3215 C.corindum  Plantation_Key   M 4.46   2.23  3.69  6.29  February 2020.0
## 3216 C.corindum  Plantation_Key   M 5.77   2.75  7.82 10.62  February 2020.0
## 3217 C.corindum  Plantation_Key   F 6.33   3.06  5.18  8.61  February 2020.0
## 3218 C.corindum  Plantation_Key   F 7.03   3.11  4.79  8.51  February 2020.0
## 3219 C.corindum  Plantation_Key   F 6.99   3.30  4.87  8.97  February 2020.0
## 3220 C.corindum  Plantation_Key   M 5.64   2.68  4.48  7.56  February 2020.0
## 3221 C.corindum  Plantation_Key   M 5.37   2.50  3.99  7.06  February 2020.0
## 3222 C.corindum  Plantation_Key   F 7.75   3.48  6.27 10.10  February 2020.0
## 3223 C.corindum  Plantation_Key   F 7.50   3.86 10.09 13.60  February 2020.0
## 3224 C.corindum  Plantation_Key   F 7.88   3.99 10.07 13.76  February 2020.0
## 3225 C.corindum  Plantation_Key   F 8.75   3.88  9.79 13.63  February 2020.0
## 3226 C.corindum  Plantation_Key   M 6.08   3.05  8.06 11.28   October 2019.0
## 3227 C.corindum  Plantation_Key   F 6.43   3.18  8.05 11.22   October 2019.0
## 3228 C.corindum  Plantation_Key   F 8.59   3.73  9.18 12.82   October 2019.0
## 3229 C.corindum  Plantation_Key   M 6.60   3.33  8.48 11.61   October 2019.0
## 3230 C.corindum  Plantation_Key   M 6.23   3.25  8.48 11.67   October 2019.0
## 3231 C.corindum  Plantation_Key   F 8.12   3.36  8.71 12.20   October 2019.0
## 3232 C.corindum  Plantation_Key   F 9.33   4.06 10.48 14.57   October 2019.0
## 3233 C.corindum  Plantation_Key   M 5.97   2.89  7.70 10.97   October 2019.0
## 3234 C.corindum  Plantation_Key   F 7.46   3.30  5.36  9.04   October 2019.0
## 3235 C.corindum  Plantation_Key   F 8.02   3.60  9.55 13.19   October 2019.0
## 3236 C.corindum  Plantation_Key   M 6.04   3.00  7.99 11.01   October 2019.0
## 3237 C.corindum  Plantation_Key   M 6.36   2.93  7.71 10.62   October 2019.0
## 3238 C.corindum  Plantation_Key   M 6.19   2.91  7.95 10.87   October 2019.0
## 3239 C.corindum  Plantation_Key   M 6.17   3.13  8.38 11.48   October 2019.0
## 3240 C.corindum  Plantation_Key   F 7.14   2.91  5.41  8.80   October 2019.0
## 3241 C.corindum  Plantation_Key   F 6.46   2.85  4.89  8.38   October 2019.0
## 3242 C.corindum  Plantation_Key   M 6.10   3.07  7.85 11.02   October 2019.0
## 3243 C.corindum  Plantation_Key   F 8.14   3.67  9.15 12.75   October 2019.0
## 3244 C.corindum  Plantation_Key   F 6.79   2.98  5.22  8.39   October 2019.0
## 3245 C.corindum  Plantation_Key   F 8.54   3.62  9.27 12.71   October 2019.0
## 3246 C.corindum  Plantation_Key   M 5.76   2.90  8.39 11.18   October 2019.0
## 3247 C.corindum  Plantation_Key   M 5.98   2.93  8.01 10.81   October 2019.0
## 3248 C.corindum  Plantation_Key   M 5.96   3.02  8.10 11.24   October 2019.0
## 3249 C.corindum  Plantation_Key   F 8.37   3.51  9.58 13.02   October 2019.0
## 3250 C.corindum  Plantation_Key   F 8.33   3.28  8.90 12.08   October 2019.0
## 3251  K.elegans       Homestead   M 5.64   3.25  8.64 11.54   October 2019.0
## 3252  K.elegans       Homestead   M 5.50   3.10  8.11 11.09   October 2019.0
## 3253  K.elegans       Homestead   F 8.16   3.69  9.64 12.97   October 2019.0
## 3254  K.elegans       Homestead   M 5.85   2.98  8.39 11.44   October 2019.0
## 3255  K.elegans       Homestead   F 7.62   3.62  9.65 12.95   October 2019.0
## 3256  K.elegans       Homestead   F 7.69   3.55  9.52 12.94   October 2019.0
## 3257  K.elegans       Homestead   M 6.07   3.36  9.52 12.53   October 2019.0
## 3258  K.elegans       Homestead   F 7.76   3.68  9.58 13.12   October 2019.0
## 3259  K.elegans       Homestead   F 7.57   3.65  9.37 12.73   October 2019.0
## 3260  K.elegans       Homestead   F 6.36   2.93  5.08  8.27   October 2019.0
## 3261  K.elegans       Homestead   M 5.51   2.98  7.68 10.54   October 2019.0
## 3262  K.elegans       Homestead   F 7.96   3.62 10.02 13.60   October 2019.0
## 3263 C.corindum North_Key_Largo   F 8.72   3.85 10.29 14.16   October 2019.0
## 3264 C.corindum North_Key_Largo   F 9.02   3.76  9.98 13.29   October 2019.0
## 3265 C.corindum North_Key_Largo   F 7.97   3.42  9.15 12.72   October 2019.0
## 3266 C.corindum North_Key_Largo   F 9.67   3.81 10.21 13.96   October 2019.0
## 3267 C.corindum North_Key_Largo   M 6.80   3.32  9.09 12.43   October 2019.0
## 3268 C.corindum North_Key_Largo   F 8.52   3.59 10.04 13.44   October 2019.0
## 3269 C.corindum North_Key_Largo   M 6.20   3.31  8.93 12.10   October 2019.0
## 3270 C.corindum North_Key_Largo   F 8.45   3.45  9.00 12.28   October 2019.0
## 3271 C.corindum North_Key_Largo   F 8.73   3.71  9.92 13.28   October 2019.0
## 3272 C.corindum North_Key_Largo   F   NA   3.45  9.02 12.58   October 2019.0
## 3273 C.corindum North_Key_Largo   M 6.18   3.06  8.37 11.44   October 2019.0
## 3274 C.corindum North_Key_Largo   F 7.95   3.51  8.96 12.38   October 2019.0
## 3275 C.corindum North_Key_Largo   F 6.40   2.82  5.37  8.61   October 2019.0
## 3276 C.corindum North_Key_Largo   M 6.01   2.98  8.15 11.23   October 2019.0
## 3277 C.corindum North_Key_Largo   F 8.05   3.68  9.00 12.68   October 2019.0
## 3278 C.corindum North_Key_Largo   M 5.93   2.90  7.74 10.61   October 2019.0
## 3279 C.corindum North_Key_Largo   F 8.69   3.65  9.30 12.76   October 2019.0
## 3280 C.corindum North_Key_Largo   M 5.67   2.75  7.22 10.06   October 2019.0
## 3281 C.corindum North_Key_Largo   F 8.75   3.69  9.63 13.05   October 2019.0
## 3282 C.corindum North_Key_Largo   M 5.65   2.94  7.89 10.77   October 2019.0
## 3283 C.corindum North_Key_Largo   F 8.89   3.68  9.26 12.64   October 2019.0
## 3284 C.corindum North_Key_Largo   M 6.10   3.19  8.48 11.62   October 2019.0
## 3285 C.corindum North_Key_Largo   F 8.13   3.38  8.78 12.31   October 2019.0
## 3286 C.corindum North_Key_Largo   M 5.90   3.13  8.31 11.15   October 2019.0
## 3287 C.corindum North_Key_Largo   M 6.95   3.66  9.36 12.42   October 2019.0
## 3288 C.corindum North_Key_Largo   M 6.87   3.50  9.37 12.72   October 2019.0
## 3289  K.elegans     Lake_Placid   M 5.16   2.59  7.27 10.03   October 2019.0
## 3290  K.elegans     Lake_Placid   F 8.19   3.88 10.19 13.56   October 2019.0
## 3291  K.elegans     Lake_Placid   M 5.65   2.90  7.59 10.56   October 2019.0
## 3292  K.elegans     Lake_Placid   M 5.73   3.19  9.15 12.22   October 2019.0
## 3293  K.elegans     Lake_Placid   F 7.96   3.55 10.10 13.72   October 2019.0
## 3294  K.elegans     Lake_Placid   F 7.61   3.35  9.04 12.49   October 2019.0
## 3295  K.elegans     Lake_Placid   F 8.55   3.51  9.41 13.04   October 2019.0
## 3296  K.elegans     Lake_Placid   M 5.26   2.49  4.75  7.85   October 2019.0
## 3297  K.elegans     Lake_Placid   M 5.34   3.29  8.27 11.53   October 2019.0
## 3298  K.elegans     Lake_Placid   F 8.58   4.01 10.29 14.13   October 2019.0
## 3299  K.elegans     Lake_Placid   M 5.67   3.13  8.83 11.97   October 2019.0
## 3300  K.elegans     Lake_Placid   F 7.28   3.39  9.20 12.70   October 2019.0
## 3301  K.elegans     Lake_Placid   M 5.45   2.73  7.55 10.53   October 2019.0
## 3302  K.elegans     Lake_Placid   F 7.77   3.57  9.38 13.25   October 2019.0
## 3303  K.elegans     Lake_Placid   M 5.60   3.18  8.56 11.45   October 2019.0
## 3304  K.elegans     Lake_Placid   F 7.01   3.26  8.98 12.27   October 2019.0
## 3305  K.elegans     Lake_Placid   F 8.30   3.56  9.82 13.30   October 2019.0
## 3306  K.elegans     Lake_Placid   M 5.52   3.03  8.63 11.83   October 2019.0
## 3307  K.elegans     Lake_Placid   F 8.05   3.98 10.30 13.68   October 2019.0
## 3308  K.elegans     Lake_Placid   M 5.45   2.98  8.20 11.36   October 2019.0
## 3309  K.elegans     Lake_Placid   M 5.23   2.70  7.29 10.23   October 2019.0
## 3310 C.corindum North_Key_Largo   M 6.13   3.31  8.68 11.69   October 2019.0
## 3311 C.corindum North_Key_Largo   F 7.86   3.39  8.71 12.27   October 2019.0
## 3312 C.corindum North_Key_Largo   M 6.32   2.97  8.00 11.25   October 2019.0
## 3313 C.corindum North_Key_Largo   M 5.96   3.11  8.01 11.00   October 2019.0
## 3314  K.elegans       Homestead   F 6.67   3.83 10.20 13.74  December 2016.0
## 3315  K.elegans       Homestead   M 5.04   3.01  4.90  8.22  December 2016.0
## 3316  K.elegans       Homestead   F 5.98   3.43  6.56 10.01  December 2016.0
## 3317  K.elegans       Homestead   M 4.99   3.01  5.16  8.13  December 2016.0
## 3318 C.corindum       Key_Largo   M 6.63   3.48  9.29 12.39   October 2019.0
## 3319 C.corindum       Key_Largo   M 5.74   3.33  9.12 12.96   October 2019.0
## 3320 C.corindum       Key_Largo   F 7.99   3.39  8.82 12.51   October 2019.0
## 3321 C.corindum       Key_Largo   M 6.48   3.08  8.66 11.97   October 2019.0
## 3322 C.corindum       Key_Largo   F 9.08   3.80  9.96 13.69   October 2019.0
## 3323 C.corindum       Key_Largo   F 8.51   3.39  8.87 12.56   October 2019.0
## 3324 C.corindum       Key_Largo   F 8.10   3.33  8.81 12.46   October 2019.0
## 3325 C.corindum North_Key_Largo   M 6.46   3.17  8.67 11.75   October 2019.0
## 3326 C.corindum North_Key_Largo   F 9.38   3.79  9.78 13.51   October 2019.0
## 3327 C.corindum North_Key_Largo   F 7.63   3.31  8.50 11.85   October 2019.0
## 3328 C.corindum North_Key_Largo   M 5.53   2.67  4.40  7.45   October 2019.0
## 3329 C.corindum North_Key_Largo   M 6.08   3.08  8.26 11.10   October 2019.0
## 3330 C.corindum North_Key_Largo   M 5.13   2.30  3.98  6.74   October 2019.0
## 3331 C.corindum       Key_Largo   M 6.24   3.11  8.16 10.98   October 2019.0
## 3332 C.corindum       Key_Largo   F 7.62   3.56 10.13 13.24   October 2019.0
## 3333 C.corindum       Key_Largo   M 6.21   2.72  7.57 10.43   October 2019.0
## 3334 C.corindum North_Key_Largo   F 8.70   3.65  8.90 12.61   October 2019.0
## 3335 C.corindum North_Key_Largo   F 6.85   3.46  8.84 12.45   October 2019.0
## 3336 C.corindum North_Key_Largo   M 6.29   3.17  8.33 11.61   October 2019.0
## 3337 C.corindum North_Key_Largo   F 9.20   3.71  9.88 13.59   October 2019.0
## 3338 C.corindum North_Key_Largo   M 6.10   2.79  7.52 10.50   October 2019.0
## 3339 C.corindum North_Key_Largo   F 8.19   3.33  8.56 12.04   October 2019.0
## 3340  K.elegans      Lake_Wales   F 7.30   3.55  8.87 12.19       May 2019.0
## 3341  K.elegans      Lake_Wales   M 5.60   3.03  4.81  9.19       May 2019.0
## 3342  K.elegans      Lake_Wales   F 5.39   3.24  9.04 11.42       May 2019.0
## 3343  K.elegans      Lake_Wales   F 8.77   3.47  9.86 13.11       May 2019.0
## 3344  K.elegans      Lake_Wales   F 5.54   3.56  9.36 11.96       May 2019.0
## 3345  K.elegans      Lake_Wales   F 5.61   2.90  7.85 10.94       May 2019.0
## 3346  K.elegans      Lake_Wales   F 5.41   3.07  8.31 11.49       May 2019.0
## 3347  K.elegans      Lake_Wales   F 5.38   2.85  7.73 10.62       May 2019.0
## 3348  K.elegans      Lake_Wales   F 5.30   2.84  7.11 10.18       May 2019.0
## 3349  K.elegans      Lake_Wales   M 5.53   3.19  8.23 11.62       May 2019.0
## 3350  K.elegans      Lake_Wales   F 7.60   3.42  9.66 12.71       May 2019.0
## 3351  K.elegans      Lake_Wales   M 6.16   3.20  8.74 11.26       May 2019.0
## 3352  K.elegans      Lake_Wales   F 5.68   3.02  8.76 11.36       May 2019.0
## 3353  K.elegans      Lake_Wales   F 5.81   3.44  7.86 10.52       May 2019.0
## 3354  K.elegans      Lake_Wales   F 7.61   3.63  9.68 13.46       May 2019.0
## 3355  K.elegans      Lake_Wales   F 5.33   3.25  8.99 11.19       May 2019.0
## 3356  K.elegans      Lake_Wales   F 8.11   3.81 10.20 13.80       May 2019.0
## 3357  K.elegans      Lake_Wales   F 5.83   2.75  7.85 10.90       May 2019.0
## 3358  K.elegans      Lake_Wales   F 5.58   3.06  7.93 10.52       May 2019.0
## 3359  K.elegans      Lake_Wales   F 6.99   3.29  7.65 11.30       May 2019.0
## 3360  K.elegans      Lake_Wales   F 5.63   3.27  8.88 12.22       May 2019.0
## 3361  K.elegans      Lake_Wales   F 5.45   3.13  7.90 11.27       May 2019.0
## 3362  K.elegans      Lake_Wales   M 5.93   3.02  8.30 10.91       May 2019.0
## 3363  K.elegans      Lake_Wales   M 5.55   2.82  9.16 12.70       May 2019.0
## 3364  K.elegans      Lake_Wales   F 7.93   3.35  9.39 12.66       May 2019.0
## 3365  K.elegans      Lake_Wales   F 7.61   3.43  9.91 13.19       May 2019.0
## 3366  K.elegans      Lake_Wales   F 7.29   3.83  9.95 12.89       May 2019.0
## 3367  K.elegans      Lake_Wales   F 8.09   3.91  9.54 13.15       May 2019.0
## 3368  K.elegans      Lake_Wales   M 7.90   3.83 10.57 13.70       May 2019.0
## 3369  K.elegans      Lake_Wales   M 6.01   3.05  8.95 11.03       May 2019.0
## 3370  K.elegans      Lake_Wales   F 8.21   3.66  9.95 13.04       May 2019.0
## 3371  K.elegans      Lake_Wales   F 5.89   3.32  8.94 11.76       May 2019.0
## 3372  K.elegans      Lake_Wales   F 5.76   3.15  8.24 10.60       May 2019.0
## 3373  K.elegans      Lake_Wales   M 5.91   2.96  8.98 11.53       May 2019.0
## 3374  K.elegans      Lake_Wales   F 6.94   3.15  8.86 11.75       May 2019.0
## 3375  K.elegans      Lake_Wales   M 5.98   3.23  8.82 12.13       May 2019.0
## 3376  K.elegans      Lake_Wales   F 5.72   3.30  7.89 11.83       May 2019.0
## 3377  K.elegans      Lake_Wales   F 6.52   3.07  8.38 11.57       May 2019.0
## 3378  K.elegans      Lake_Wales   F 7.74   3.78 10.61 14.29       May 2019.0
## 3379  K.elegans      Lake_Wales   M 8.29   3.87  9.00 13.42       May 2019.0
## 3380  K.elegans      Lake_Wales   M 6.01   3.20  8.47 11.67       May 2019.0
## 3381  K.elegans      Lake_Wales   F 7.97   3.77 10.33 13.31       May 2019.0
## 3382  K.elegans      Lake_Wales   M 4.91   2.50  5.52  8.20       May 2019.0
## 3383  K.elegans      Lake_Wales   F 5.38   2.41  5.35  7.90       May 2019.0
## 3384  K.elegans      Lake_Wales   F 7.94   3.46 10.47 13.06       May 2019.0
## 3385  K.elegans      Lake_Wales   F 5.03   3.33  9.30 11.71       May 2019.0
## 3386  K.elegans      Lake_Wales   M 7.70   3.75  9.54 14.35       May 2019.0
## 3387  K.elegans      Lake_Wales   F 8.74   3.83 10.33 13.42       May 2019.0
## 3388  K.elegans      Lake_Wales   M 5.27   2.82  7.38 11.04       May 2019.0
## 3389  K.elegans      Lake_Wales   F 8.03   4.02 10.32 14.91       May 2019.0
## 3390  K.elegans      Lake_Wales   F 5.89   3.16  7.98 11.63       May 2019.0
## 3391  K.elegans      Lake_Wales   F 7.58   3.31  9.31 12.52       May 2019.0
## 3392  K.elegans      Lake_Wales   F 6.15   2.68  8.15 10.95       May 2019.0
## 3393  K.elegans      Lake_Wales   M 5.86   3.10  9.14 13.17       May 2019.0
## 3394  K.elegans        Leesburg   M 4.95   2.94  8.49 11.75       May 2019.0
## 3395  K.elegans        Leesburg   F 7.61   3.69  9.49 12.75       May 2019.0
## 3396  K.elegans        Leesburg   F 6.04   3.38  8.12 11.15       May 2019.0
## 3397  K.elegans        Leesburg   F 8.20   3.76 10.23 13.56       May 2019.0
## 3398  K.elegans        Leesburg   F 5.63   3.00  7.86 11.44       May 2019.0
## 3399  K.elegans        Leesburg   M 6.32   3.07  9.06 12.65       May 2019.0
## 3400  K.elegans        Leesburg   F 5.98   3.14  9.34 11.99       May 2019.0
## 3401  K.elegans        Leesburg   F 5.64   2.64  7.54 11.01       May 2019.0
## 3402  K.elegans        Leesburg   F 5.71   3.21  7.17 10.12       May 2019.0
## 3403  K.elegans        Leesburg   F 6.80   3.26  9.16 12.20       May 2019.0
## 3404  K.elegans        Leesburg   M 8.02   4.11 10.30 13.75       May 2019.0
## 3405  K.elegans        Leesburg   M 6.01   3.03  8.36 11.29       May 2019.0
## 3406  K.elegans        Leesburg   M 8.45   3.79  9.95 13.41       May 2019.0
## 3407  K.elegans        Leesburg   F 5.74   2.78  7.73 10.04       May 2019.0
## 3408  K.elegans        Leesburg   F 8.01   3.75  9.69 13.09       May 2019.0
## 3409  K.elegans        Leesburg   F 5.52   3.02  8.25 11.29       May 2019.0
## 3410  K.elegans        Leesburg   F 5.72   3.07  8.20 10.99       May 2019.0
## 3411  K.elegans        Leesburg   M 5.92   3.40  8.73 11.31       May 2019.0
## 3412  K.elegans        Leesburg   F 5.49   3.13  9.05 11.96       May 2019.0
## 3413  K.elegans        Leesburg   F 5.65   3.09  9.00 11.77       May 2019.0
## 3414  K.elegans        Leesburg   M 5.69   3.09  8.69 11.57       May 2019.0
## 3415  K.elegans        Leesburg   M 6.63   3.60  7.98 11.85       May 2019.0
## 3416  K.elegans        Leesburg   F 6.15   3.32  9.87 11.65       May 2019.0
## 3417  K.elegans        Leesburg   F 6.59   3.46  8.66 12.22       May 2019.0
## 3418  K.elegans        Leesburg   F 6.45   2.89  8.35 11.29       May 2019.0
## 3419  K.elegans        Leesburg   F 8.15   3.58  9.72 12.69       May 2019.0
## 3420  K.elegans        Leesburg   F 6.74   2.99  7.77 11.37       May 2019.0
## 3421  K.elegans        Leesburg   F 7.56   3.68  8.50 11.51       May 2019.0
## 3422  K.elegans        Leesburg   F 6.49   3.46  8.32 11.53       May 2019.0
## 3423  K.elegans        Leesburg   F 5.46   2.75  7.71 10.50       May 2019.0
## 3424  K.elegans        Leesburg   F 6.77   3.49  8.87 11.43       May 2019.0
## 3425  K.elegans        Leesburg   F 7.32   3.86  9.21 12.80       May 2019.0
## 3426  K.elegans        Leesburg   F 6.26   3.33  8.34 11.48       May 2019.0
## 3427  K.elegans        Leesburg   F 6.58   3.89  9.46 12.71       May 2019.0
## 3428  K.elegans        Leesburg   F 5.73   3.29  8.17 10.88       May 2019.0
## 3429  K.elegans        Leesburg   F 8.16   3.80  8.72 12.91       May 2019.0
## 3430  K.elegans        Leesburg   M 7.92   3.68  9.96 13.18       May 2019.0
## 3431  K.elegans        Leesburg   F 5.22   2.56  4.47  7.37       May 2019.0
## 3432  K.elegans        Leesburg   F 6.61   3.47  8.06 11.23       May 2019.0
## 3433  K.elegans        Leesburg   M 7.55   3.34  9.36 12.18       May 2019.0
## 3434  K.elegans        Leesburg   F 5.68   3.12  8.47 11.10       May 2019.0
## 3435  K.elegans        Leesburg   F 6.65   3.31  9.43 12.84       May 2019.0
## 3436  K.elegans        Leesburg   F 7.11   3.62  8.37 11.98       May 2019.0
## 3437  K.elegans        Leesburg   F 5.72   3.26  8.98 11.43       May 2019.0
## 3438  K.elegans        Leesburg   F 6.46   3.28  9.18 12.11       May 2019.0
## 3439  K.elegans        Leesburg   M 5.84   3.46  8.42 11.28       May 2019.0
## 3440  K.elegans        Leesburg   F 4.99   3.36  8.48 11.44       May 2019.0
## 3441  K.elegans        Leesburg   F 6.26   3.31  8.11 11.90       May 2019.0
## 3442  K.elegans        Leesburg   M 5.64   3.66  9.15 11.84       May 2019.0
## 3443  K.elegans        Leesburg   F 6.78   3.90  9.55 13.74       May 2019.0
## 3444  K.elegans        Leesburg   F 6.17   3.85  8.72 12.44       May 2019.0
## 3445  K.elegans        Leesburg   F 8.11   4.17  9.65 13.41       May 2019.0
## 3446  K.elegans        Leesburg   M 6.20   3.92  8.52 12.01       May 2019.0
## 3447  K.elegans        Leesburg   F 5.55   3.55  8.36 11.87       May 2019.0
## 3448  K.elegans       Homestead   F 5.97   2.82  8.06 11.43       May 2019.0
## 3449  K.elegans       Homestead   F 7.89   3.57  9.70 13.07       May 2019.0
## 3450  K.elegans       Homestead   F 7.46   3.53  9.16 12.41       May 2019.0
## 3451  K.elegans       Homestead   M 5.85   3.24  8.51 11.42       May 2019.0
## 3452  K.elegans       Homestead   F 6.26   3.40  8.65 11.52       May 2019.0
## 3453  K.elegans       Homestead   F 5.87   2.82  6.98 10.15       May 2019.0
## 3454  K.elegans       Homestead   M 9.11   3.93 10.39 14.08       May 2019.0
## 3455  K.elegans       Homestead   F 6.68   3.31  9.11 12.02       May 2019.0
## 3456  K.elegans       Homestead   M 7.33   3.56  9.04 11.92       May 2019.0
## 3457  K.elegans       Homestead   F 8.31   3.92 10.68 13.36       May 2019.0
## 3458  K.elegans       Homestead   F 5.27   3.05  7.70  9.91       May 2019.0
## 3459  K.elegans       Homestead   F 8.65   3.71  9.41 12.93       May 2019.0
## 3460  K.elegans       Homestead   M 6.38   3.33  9.22 11.87       May 2019.0
## 3461  K.elegans       Homestead   F 5.57   2.98  7.95 10.96       May 2019.0
## 3462  K.elegans       Homestead   F 8.83   3.82  9.42 13.32       May 2019.0
## 3463  K.elegans       Homestead   F 8.02   3.76  9.93 13.00       May 2019.0
## 3464  K.elegans       Homestead   M 8.26   3.62  9.38 13.29       May 2019.0
## 3465  K.elegans       Homestead   M 7.27   3.95 10.48 13.81       May 2019.0
## 3466  K.elegans       Homestead   F 5.68   3.21  8.18 11.29       May 2019.0
## 3467  K.elegans       Homestead   M 6.41   3.64  9.17 11.88       May 2019.0
## 3468  K.elegans       Homestead   F 7.55   3.96 10.06 12.79       May 2019.0
## 3469  K.elegans       Homestead   F 8.43   3.61  9.64 12.68       May 2019.0
## 3470  K.elegans       Homestead   F 6.31   3.24  8.86 11.51       May 2019.0
## 3471  K.elegans       Homestead   F 7.20   3.65  9.93 12.99       May 2019.0
## 3472  K.elegans       Homestead   F 6.01   3.08  7.59 10.56       May 2019.0
## 3473  K.elegans       Homestead   F 5.78   3.37  8.62 10.77       May 2019.0
## 3474  K.elegans       Homestead   F 7.67   3.36  8.16 11.81       May 2019.0
## 3475  K.elegans       Homestead   F 6.60   3.31  9.31 12.23       May 2019.0
## 3476  K.elegans       Homestead   M 7.90   3.87 10.74 14.19       May 2019.0
## 3477  K.elegans       Homestead   F 5.82   3.25  9.40 11.46       May 2019.0
## 3478  K.elegans       Homestead   M 7.97   3.52 10.09 13.52       May 2019.0
## 3479  K.elegans       Homestead   F 7.77   3.99  9.87 12.55       May 2019.0
## 3480  K.elegans       Homestead   F 5.68   2.77  7.07  9.78       May 2019.0
## 3481  K.elegans       Homestead   F 7.25   3.66  9.87 12.55       May 2019.0
## 3482  K.elegans       Homestead   M 5.70   3.04  8.01 11.09       May 2019.0
## 3483  K.elegans       Homestead   F 5.47   3.06  7.21 10.23       May 2019.0
## 3484  K.elegans       Homestead   F 4.67   3.18  7.20 10.56       May 2019.0
## 3485  K.elegans       Homestead   M 6.39   3.12  6.34  9.47       May 2019.0
##      months_since_start season w_morph      lat      long
## 1                     0 spring       L 26.63387 -81.87980
## 2                     0 spring       L 26.63387 -81.87980
## 3                     0 spring       L 26.63387 -81.87980
## 4                     0 spring       L 26.63387 -81.87980
## 5                     0 spring       L 26.63387 -81.87980
## 6                     0 spring       L 26.63387 -81.87980
## 7                     0 spring       L 26.63387 -81.87980
## 8                     0 spring       L 26.63387 -81.87980
## 9                     0 spring       L 26.63387 -81.87980
## 10                    0 spring       L 26.63387 -81.87980
## 11                    0 spring       L 26.63387 -81.87980
## 12                    0 spring       L 26.63387 -81.87980
## 13                    0 spring       L 26.63387 -81.87980
## 14                    0 spring       L 26.63387 -81.87980
## 15                    0 spring       S 26.63387 -81.87980
## 16                    0 spring       L 26.63387 -81.87980
## 17                    0 spring       L 26.63387 -81.87980
## 18                    0 spring       L 26.63387 -81.87980
## 19                    0 spring       L 26.63387 -81.87980
## 20                    0 spring       L 26.63387 -81.87980
## 21                    0 spring       L 26.63387 -81.87980
## 22                    0 spring       L 26.63387 -81.87980
## 23                    0 spring       L 26.63387 -81.87980
## 24                    0 spring       L 26.63387 -81.87980
## 25                    0 spring       L 26.63387 -81.87980
## 26                    0 spring       L 26.63387 -81.87980
## 27                    0 spring       L 26.63387 -81.87980
## 28                    0 spring       L 26.63387 -81.87980
## 29                    0 spring       S 26.63387 -81.87980
## 30                    0 spring       S 26.63387 -81.87980
## 31                    0 spring       L 26.63387 -81.87980
## 32                    0 spring       L 26.63387 -81.87980
## 33                    0 spring       L 26.63387 -81.87980
## 34                    0 spring       L 26.63387 -81.87980
## 35                    0 spring       S 26.63387 -81.87980
## 36                    0 spring       L 26.63387 -81.87980
## 37                    0 spring       L 26.63387 -81.87980
## 38                    0 spring       L 26.63387 -81.87980
## 39                    0 spring       L 26.63387 -81.87980
## 40                    0 spring       L 26.63387 -81.87980
## 41                    0 spring       L 26.63387 -81.87980
## 42                    0 spring       L 26.63387 -81.87980
## 43                    0 spring       L 26.63387 -81.87980
## 44                    0 spring       S 26.63387 -81.87980
## 45                    0 spring       L 26.63387 -81.87980
## 46                    0 spring       L 26.63387 -81.87980
## 47                    0 spring       L 26.63387 -81.87980
## 48                    0 spring       S 26.63387 -81.87980
## 49                    0 spring       L 26.63387 -81.87980
## 50                    0 spring       L 26.63387 -81.87980
## 51                    0 spring       L 26.63387 -81.87980
## 52                    0 spring       L 26.63387 -81.87980
## 53                    0 spring       L 26.63387 -81.87980
## 54                    0 spring       L 26.63387 -81.87980
## 55                    0 spring       L 26.63387 -81.87980
## 56                    0 spring       L 26.63387 -81.87980
## 57                    0 spring       L 26.63387 -81.87980
## 58                    0 spring       L 26.63387 -81.87980
## 59                    0 spring       L 26.63387 -81.87980
## 60                    0 spring       L 26.63387 -81.87980
## 61                    0 spring       L 26.63387 -81.87980
## 62                    0 spring       L 26.63387 -81.87980
## 63                    0 spring       L 26.63387 -81.87980
## 64                    0 spring       L 26.63387 -81.87980
## 65                    0 spring       L 26.63387 -81.87980
## 66                    0 spring       L 26.63387 -81.87980
## 67                    0 spring       L 26.63387 -81.87980
## 68                    0 spring       L 26.63387 -81.87980
## 69                    0 spring       L 26.63387 -81.87980
## 70                    0 spring       L 26.63387 -81.87980
## 71                    0 spring       L 26.63387 -81.87980
## 72                    0 spring       L 26.63387 -81.87980
## 73                    0 spring       L 26.63387 -81.87980
## 74                    0 spring       L 26.63387 -81.87980
## 75                    0 spring       L 26.63387 -81.87980
## 76                    0 spring       S 25.57106 -80.45500
## 77                    0 spring       L 25.57106 -80.45500
## 78                    0 spring       L 25.57106 -80.45500
## 79                    0 spring       L 25.57106 -80.45500
## 80                    0 spring       S 25.57106 -80.45500
## 81                    0 spring       L 25.57106 -80.45500
## 82                    0 spring       S 25.57106 -80.45500
## 83                    0 spring       S 25.57106 -80.45500
## 84                    0 spring       L 25.57106 -80.45500
## 85                    0 spring       S 25.57106 -80.45500
## 86                    0 spring       S 25.57106 -80.45500
## 87                    0 spring       S 25.57106 -80.45500
## 88                    0 spring       S 25.57106 -80.45500
## 89                    0 spring       S 25.57106 -80.45500
## 90                    0 spring       S 25.57106 -80.45500
## 91                    0 spring       S 25.57106 -80.45500
## 92                    0 spring       S 25.57106 -80.45500
## 93                    0 spring       L 25.57106 -80.45500
## 94                    0 spring       L 25.57106 -80.45500
## 95                    0 spring       S 25.57106 -80.45500
## 96                    0 spring       L 25.57106 -80.45500
## 97                    0 spring       L 25.57106 -80.45500
## 98                    0 spring       L 25.57106 -80.45500
## 99                    0 spring       L 25.57106 -80.45500
## 100                   0 spring       S 25.57106 -80.45500
## 101                   0 spring       L 25.57106 -80.45500
## 102                   0 spring       L 25.57106 -80.45500
## 103                   0 spring       L 25.57106 -80.45500
## 104                   0 spring       L 25.57106 -80.45500
## 105                   0 spring       L 25.57106 -80.45500
## 106                   0 spring       L 25.57106 -80.45500
## 107                   0 spring       S 25.57106 -80.45500
## 108                   0 spring       L 25.57106 -80.45500
## 109                   0 spring       L 25.57106 -80.45500
## 110                   0 spring       L 25.57106 -80.45500
## 111                   0 spring       L 25.57106 -80.45500
## 112                   0 spring       S 25.57106 -80.45500
## 113                   0 spring       L 25.57106 -80.45500
## 114                   0 spring       L 25.49131 -80.48578
## 115                   0 spring       L 25.49131 -80.48578
## 116                   0 spring       L 25.49131 -80.48578
## 117                   0 spring       L 25.49131 -80.48578
## 118                   0 spring       L 25.49131 -80.48578
## 119                   0 spring       L 25.49131 -80.48578
## 120                   0 spring       L 25.49131 -80.48578
## 121                   0 spring       L 25.49131 -80.48578
## 122                   0 spring       L 25.49131 -80.48578
## 123                   0 spring       L 25.49131 -80.48578
## 124                   0 spring       L 25.49131 -80.48578
## 125                   0 spring       L 25.49131 -80.48578
## 126                   0 spring       L 25.49131 -80.48578
## 127                   0 spring       L 25.49131 -80.48578
## 128                   0 spring       L 25.49131 -80.48578
## 129                   0 spring       L 25.49131 -80.48578
## 130                   0 spring       L 25.49131 -80.48578
## 131                   0 spring       L 25.49131 -80.48578
## 132                   0 spring       L 25.49131 -80.48578
## 133                   0 spring       L 25.49131 -80.48578
## 134                   0 spring       L 25.49131 -80.48578
## 135                   0 spring       L 25.49131 -80.48578
## 136                   0 spring       L 25.49131 -80.48578
## 137                   0 spring       L 25.49131 -80.48578
## 138                   0 spring       L 25.49131 -80.48578
## 139                   0 spring       L 25.49131 -80.48578
## 140                   0 spring       L 25.19515 -80.34592
## 141                   0 spring       L 25.19515 -80.34592
## 142                   0 spring       L 25.19515 -80.34592
## 143                   0 spring       L 25.19515 -80.34592
## 144                   0 spring       S 25.19515 -80.34592
## 145                   0 spring       L 25.19515 -80.34592
## 146                   0 spring       L 25.19515 -80.34592
## 147                   0 spring       L 25.19515 -80.34592
## 148                   0 spring       L 25.19515 -80.34592
## 149                   0 spring       L 25.19515 -80.34592
## 150                   0 spring       S 25.19515 -80.34592
## 151                   0 spring       L 25.19515 -80.34592
## 152                   0 spring       L 25.19515 -80.34592
## 153                   0 spring       L 25.19515 -80.34592
## 154                   0 spring       L 25.19515 -80.34592
## 155                   0 spring       L 25.19515 -80.34592
## 156                   0 spring       L 25.19515 -80.34592
## 157                   0 spring       L 25.19515 -80.34592
## 158                   0 spring       L 25.19515 -80.34592
## 159                   0 spring       S 25.19515 -80.34592
## 160                   0 spring       L 25.19515 -80.34592
## 161                   0 spring       S 25.19515 -80.34592
## 162                   0 spring       L 25.19515 -80.34592
## 163                   0 spring       L 25.19515 -80.34592
## 164                   0 spring       L 25.19515 -80.34592
## 165                   0 spring       L 25.19515 -80.34592
## 166                   0 spring       L 25.19515 -80.34592
## 167                   0 spring       L 25.19515 -80.34592
## 168                   0 spring       L 25.19515 -80.34592
## 169                   0 spring       L 25.19515 -80.34592
## 170                   0 spring       L 25.19515 -80.34592
## 171                   0 spring       L 25.19515 -80.34592
## 172                   0 spring       L 25.19515 -80.34592
## 173                   0 spring       L 25.19515 -80.34592
## 174                   0 spring       L 25.19515 -80.34592
## 175                   0 spring       S 25.19515 -80.34592
## 176                   0 spring       L 25.19515 -80.34592
## 177                   0 spring       L 25.19515 -80.34592
## 178                   0 spring       L 25.19515 -80.34592
## 179                   0 spring       L 25.19515 -80.34592
## 180                   0 spring       L 25.19515 -80.34592
## 181                   0 spring       L 25.19515 -80.34592
## 182                   0 spring       S 25.19515 -80.34592
## 183                   0 spring       L 25.19515 -80.34592
## 184                   0 spring       S 25.19515 -80.34592
## 185                   0 spring       L 25.19515 -80.34592
## 186                   0 spring       L 25.19515 -80.34592
## 187                   0 spring       L 25.19515 -80.34592
## 188                   0 spring       L 25.19515 -80.34592
## 189                   0 spring       S 25.19515 -80.34592
## 190                   0 spring       S 25.19515 -80.34592
## 191                   0 spring       L 25.19515 -80.34592
## 192                   0 spring       L 25.19515 -80.34592
## 193                   0 spring       S 25.19515 -80.34592
## 194                   0 spring       S 25.19515 -80.34592
## 195                   0 spring       L 25.19515 -80.34592
## 196                   0 spring       L 25.19515 -80.34592
## 197                   0 spring       L 25.19515 -80.34592
## 198                   0 spring       L 25.19515 -80.34592
## 199                   0 spring       L 25.19515 -80.34592
## 200                   0 spring       L 25.19515 -80.34592
## 201                   0 spring       L 27.93615 -81.57455
## 202                   0 spring       L 27.93615 -81.57455
## 203                   0 spring       L 27.93615 -81.57455
## 204                   0 spring       L 27.93615 -81.57455
## 205                   0 spring       L 27.93615 -81.57455
## 206                   0 spring       L 27.93615 -81.57455
## 207                   0 spring       L 27.93615 -81.57455
## 208                   0 spring       L 27.93615 -81.57455
## 209                   0 spring       L 27.93615 -81.57455
## 210                   0 spring       L 27.93615 -81.57455
## 211                   0 spring       L 27.93615 -81.57455
## 212                   0 spring       L 27.93615 -81.57455
## 213                   0 spring       L 27.93615 -81.57455
## 214                   0 spring       S 27.93615 -81.57455
## 215                   0 spring       L 27.93615 -81.57455
## 216                   0 spring       S 27.93615 -81.57455
## 217                   0 spring       L 27.93615 -81.57455
## 218                   0 spring       S 27.93615 -81.57455
## 219                   0 spring       L 27.93615 -81.57455
## 220                   0 spring       L 27.93615 -81.57455
## 221                   0 spring       L 27.93615 -81.57455
## 222                   0 spring       L 27.93615 -81.57455
## 223                   0 spring       L 27.93615 -81.57455
## 224                   0 spring       L 27.93615 -81.57455
## 225                   0 spring       S 27.93615 -81.57455
## 226                   0 spring       L 27.93615 -81.57455
## 227                   0 spring       L 27.93615 -81.57455
## 228                   0 spring       L 27.93615 -81.57455
## 229                   0 spring       S 27.93615 -81.57455
## 230                   0 spring       L 27.93615 -81.57455
## 231                   0 spring       L 27.93615 -81.57455
## 232                   0 spring       L 27.93615 -81.57455
## 233                   0 spring       L 27.93615 -81.57455
## 234                   0 spring       L 27.93615 -81.57455
## 235                   0 spring       L 27.93615 -81.57455
## 236                   0 spring       L 27.93615 -81.57455
## 237                   0 spring       L 27.93615 -81.57455
## 238                   0 spring       L 27.93615 -81.57455
## 239                   0 spring       L 27.93615 -81.57455
## 240                   0 spring       L 27.93615 -81.57455
## 241                   0 spring       L 27.93615 -81.57455
## 242                   0 spring       S 27.93615 -81.57455
## 243                   0 spring       L 27.93615 -81.57455
## 244                   0 spring       L 27.93615 -81.57455
## 245                   0 spring       L 27.93615 -81.57455
## 246                   0 spring       L 27.93615 -81.57455
## 247                   0 spring       L 27.93615 -81.57455
## 248                   0 spring       L 27.93615 -81.57455
## 249                   0 spring       L 27.93615 -81.57455
## 250                   0 spring       L 27.93615 -81.57455
## 251                   0 spring       L 27.93615 -81.57455
## 252                   0 spring       L 27.93615 -81.57455
## 253                   0 spring       L 27.93615 -81.57455
## 254                   0 spring       L 27.93615 -81.57455
## 255                   0 spring       L 27.93615 -81.57455
## 256                   0 spring       L 27.93615 -81.57455
## 257                   0 spring       L 27.93615 -81.57455
## 258                   0 spring       S 27.93615 -81.57455
## 259                   0 spring       L 27.93615 -81.57455
## 260                   0 spring       L 27.93615 -81.57455
## 261                   0 spring       S 28.79622 -81.87803
## 262                   0 spring       S 28.79622 -81.87803
## 263                   0 spring       L 28.79622 -81.87803
## 264                   0 spring       S 28.79622 -81.87803
## 265                   0 spring       L 28.79622 -81.87803
## 266                   0 spring       S 28.79622 -81.87803
## 267                   0 spring       L 28.79622 -81.87803
## 268                   0 spring       L 28.79622 -81.87803
## 269                   0 spring       L 28.79622 -81.87803
## 270                   0 spring       L 28.79622 -81.87803
## 271                   0 spring       L 28.79622 -81.87803
## 272                   0 spring       L 28.79622 -81.87803
## 273                   0 spring       L 28.79622 -81.87803
## 274                   0 spring       S 28.79622 -81.87803
## 275                   0 spring       L 28.79622 -81.87803
## 276                   0 spring       L 28.79622 -81.87803
## 277                   0 spring       L 28.79622 -81.87803
## 278                   0 spring       L 28.79622 -81.87803
## 279                   0 spring       L 28.79622 -81.87803
## 280                   0 spring       L 28.79622 -81.87803
## 281                   0 spring       S 28.79622 -81.87803
## 282                   0 spring       L 28.79622 -81.87803
## 283                   0 spring       L 28.79622 -81.87803
## 284                   0 spring       S 28.79622 -81.87803
## 285                   0 spring       L 28.79622 -81.87803
## 286                   0 spring       L 24.96984 -80.55743
## 287                   0 spring       S 24.96984 -80.55743
## 288                   0 spring       L 24.96984 -80.55743
## 289                   0 spring       L 24.96984 -80.55743
## 290                   0 spring       L 24.96984 -80.55743
## 291                   0 spring       L 24.96984 -80.55743
## 292                   0 spring       L 24.96984 -80.55743
## 293                   0 spring       S 24.96984 -80.55743
## 294                   0 spring       L 24.96984 -80.55743
## 295                   0 spring       S 24.96984 -80.55743
## 296                   0 spring       S 24.96984 -80.55743
## 297                   0 spring       S 24.96984 -80.55743
## 298                   0 spring       L 24.96984 -80.55743
## 299                   0 spring       S 24.96984 -80.55743
## 300                   0 spring       L 24.96984 -80.55743
## 301                   0 spring       L 24.96984 -80.55743
## 302                   0 spring       L 24.96984 -80.55743
## 303                   0 spring       L 24.96984 -80.55743
## 304                   0 spring       S 24.96984 -80.55743
## 305                   0 spring       L 24.96984 -80.55743
## 306                   0 spring       L 24.96984 -80.55743
## 307                   0 spring       S 24.96984 -80.55743
## 308                   0 spring       S 24.96984 -80.55743
## 309                   0 spring       L 24.96984 -80.55743
## 310                   0 spring       S 24.96984 -80.55743
## 311                   0 spring       S 24.96984 -80.55743
## 312                   0 spring       S 24.96984 -80.55743
## 313                   0 spring       L 24.96984 -80.55743
## 314                   0 spring       L 24.96984 -80.55743
## 315                   0 spring       L 24.96984 -80.55743
## 316                   0 spring       L 24.96984 -80.55743
## 317                   0 spring       S 24.96984 -80.55743
## 318                   0 spring       S 24.96984 -80.55743
## 319                   0 spring       L 24.96984 -80.55743
## 320                   0 spring       S 24.96984 -80.55743
## 321                   0 spring       L 24.96984 -80.55743
## 322                   7 winter       L 26.63387 -81.87980
## 323                   7 winter       L 26.63387 -81.87980
## 324                   7 winter       L 26.63387 -81.87980
## 325                   7 winter       L 26.63387 -81.87980
## 326                   7 winter       L 26.63387 -81.87980
## 327                   7 winter       L 26.63387 -81.87980
## 328                   7 winter       L 26.63387 -81.87980
## 329                   7 winter       L 26.63387 -81.87980
## 330                   7 winter       L 26.63387 -81.87980
## 331                   7 winter       L 26.63387 -81.87980
## 332                   7 winter       L 26.63387 -81.87980
## 333                   7 winter       S 26.63387 -81.87980
## 334                   7 winter       L 26.63387 -81.87980
## 335                   7 winter       L 26.63387 -81.87980
## 336                   7 winter       L 26.63387 -81.87980
## 337                   7 winter       L 26.63387 -81.87980
## 338                   7 winter       L 26.63387 -81.87980
## 339                   7 winter       L 26.63387 -81.87980
## 340                   7 winter       L 26.63387 -81.87980
## 341                   7 winter       L 26.63387 -81.87980
## 342                   7 winter       L 26.63387 -81.87980
## 343                   7 winter       L 26.63387 -81.87980
## 344                   7 winter       L 26.63387 -81.87980
## 345                   7 winter       L 26.63387 -81.87980
## 346                   7 winter       L 26.63387 -81.87980
## 347                   7 winter       L 26.63387 -81.87980
## 348                   7 winter       L 26.63387 -81.87980
## 349                   7 winter       L 26.63387 -81.87980
## 350                   7 winter       L 26.63387 -81.87980
## 351                   7 winter       L 26.63387 -81.87980
## 352                   7 winter       L 26.63387 -81.87980
## 353                   7 winter       L 26.63387 -81.87980
## 354                   7 winter       L 26.63387 -81.87980
## 355                   7 winter       L 26.63387 -81.87980
## 356                   7 winter       L 26.63387 -81.87980
## 357                   7 winter       L 26.63387 -81.87980
## 358                   7 winter       L 26.63387 -81.87980
## 359                   7 winter       L 26.63387 -81.87980
## 360                   7 winter       L 26.63387 -81.87980
## 361                   7 winter       L 26.63387 -81.87980
## 362                   7 winter       L 26.63387 -81.87980
## 363                   7 winter       L 26.63387 -81.87980
## 364                   7 winter       L 26.63387 -81.87980
## 365                   7 winter       L 26.63387 -81.87980
## 366                   7 winter       L 26.63387 -81.87980
## 367                   7 winter       L 26.63387 -81.87980
## 368                   7 winter       L 26.63387 -81.87980
## 369                   7 winter       L 26.63387 -81.87980
## 370                   7 winter       L 26.63387 -81.87980
## 371                   7 winter       L 26.63387 -81.87980
## 372                   7 winter       L 26.63387 -81.87980
## 373                   7 winter       L 26.63387 -81.87980
## 374                   7 winter       L 26.63387 -81.87980
## 375                   7 winter       L 26.63387 -81.87980
## 376                   7 winter       L 26.63387 -81.87980
## 377                   7 winter       L 26.63387 -81.87980
## 378                   7 winter       L 26.63387 -81.87980
## 379                   7 winter       L 26.63387 -81.87980
## 380                   7 winter       L 26.63387 -81.87980
## 381                   7 winter       L 26.63387 -81.87980
## 382                   7 winter       L 26.63387 -81.87980
## 383                   7 winter       L 26.63387 -81.87980
## 384                   7 winter       L 26.63387 -81.87980
## 385                   7 winter       L 26.63387 -81.87980
## 386                   7 winter       L 26.63387 -81.87980
## 387                   7 winter       L 26.63387 -81.87980
## 388                   7 winter       L 26.63387 -81.87980
## 389                   7 winter       L 26.63387 -81.87980
## 390                   7 winter       L 26.63387 -81.87980
## 391                   7 winter       L 26.63387 -81.87980
## 392                   7 winter       L 26.63387 -81.87980
## 393                   7 winter       L 26.63387 -81.87980
## 394                   7 winter       L 26.63387 -81.87980
## 395                   7 winter       L 26.63387 -81.87980
## 396                   7 winter       L 26.63387 -81.87980
## 397                   7 winter       L 29.66374 -82.36091
## 398                   7 winter       L 29.66374 -82.36091
## 399                   7 winter       L 29.66374 -82.36091
## 400                   7 winter       L 29.66374 -82.36091
## 401                   7 winter       L 29.66374 -82.36091
## 402                   7 winter       L 29.66374 -82.36091
## 403                   7 winter       L 29.66374 -82.36091
## 404                   7 winter       L 29.66374 -82.36091
## 405                   7 winter       L 29.66374 -82.36091
## 406                   7 winter       L 29.66374 -82.36091
## 407                   7 winter       L 29.66374 -82.36091
## 408                   7 winter       L 29.66374 -82.36091
## 409                   7 winter       L 29.66374 -82.36091
## 410                   7 winter       L 29.66374 -82.36091
## 411                   7 winter       S 25.57106 -80.45500
## 412                   7 winter       S 25.57106 -80.45500
## 413                   7 winter       L 25.57106 -80.45500
## 414                   7 winter       L 25.57106 -80.45500
## 415                   7 winter       S 25.57106 -80.45500
## 416                   7 winter       S 25.57106 -80.45500
## 417                   7 winter       L 25.57106 -80.45500
## 418                   7 winter       L 25.57106 -80.45500
## 419                   7 winter       S 25.57106 -80.45500
## 420                   7 winter       L 25.57106 -80.45500
## 421                   7 winter       S 25.57106 -80.45500
## 422                   7 winter       L 25.57106 -80.45500
## 423                   7 winter       S 25.57106 -80.45500
## 424                   7 winter       S 25.57106 -80.45500
## 425                   7 winter       L 25.57106 -80.45500
## 426                   7 winter       L 25.57106 -80.45500
## 427                   7 winter       S 25.57106 -80.45500
## 428                   7 winter       S 25.57106 -80.45500
## 429                   7 winter       S 25.57106 -80.45500
## 430                   7 winter       L 25.57106 -80.45500
## 431                   7 winter       L 25.57106 -80.45500
## 432                   7 winter       L 25.57106 -80.45500
## 433                   7 winter       L 25.57106 -80.45500
## 434                   7 winter       L 25.49131 -80.48578
## 435                   7 winter       S 25.49131 -80.48578
## 436                   7 winter       L 25.49131 -80.48578
## 437                   7 winter       S 25.49131 -80.48578
## 438                   7 winter       S 25.49131 -80.48578
## 439                   7 winter       L 25.49131 -80.48578
## 440                   7 winter       L 25.49131 -80.48578
## 441                   7 winter       L 25.49131 -80.48578
## 442                   7 winter       L 25.49131 -80.48578
## 443                   7 winter       L 25.49131 -80.48578
## 444                   7 winter       S 25.49131 -80.48578
## 445                   7 winter       L 25.49131 -80.48578
## 446                   7 winter       L 25.49131 -80.48578
## 447                   7 winter       L 25.49131 -80.48578
## 448                   7 winter       S 25.49131 -80.48578
## 449                   7 winter       S 25.49131 -80.48578
## 450                   7 winter       L 25.49131 -80.48578
## 451                   7 winter       S 25.49131 -80.48578
## 452                   7 winter       S 25.49131 -80.48578
## 453                   7 winter       L 25.49131 -80.48578
## 454                   7 winter       L 25.49131 -80.48578
## 455                   7 winter       S 25.49131 -80.48578
## 456                   7 winter       L 25.49131 -80.48578
## 457                   7 winter       L 25.49131 -80.48578
## 458                   7 winter       S 25.49131 -80.48578
## 459                   7 winter       L 25.49131 -80.48578
## 460                   7 winter       L 25.49131 -80.48578
## 461                   7 winter       L 25.49131 -80.48578
## 462                   7 winter       L 25.49131 -80.48578
## 463                   7 winter       L 25.12308 -80.41528
## 464                   7 winter       L 25.12308 -80.41528
## 465                   7 winter       S 25.12308 -80.41528
## 466                   7 winter       L 25.12308 -80.41528
## 467                   7 winter       L 25.12308 -80.41528
## 468                   7 winter       L 25.12308 -80.41528
## 469                   7 winter       L 25.12308 -80.41528
## 470                   7 winter       S 25.12308 -80.41528
## 471                   7 winter       L 25.12308 -80.41528
## 472                   7 winter       S 25.12308 -80.41528
## 473                   7 winter       L 25.12308 -80.41528
## 474                   7 winter       L 25.12308 -80.41528
## 475                   7 winter       L 25.12308 -80.41528
## 476                   7 winter       L 25.12308 -80.41528
## 477                   7 winter       L 25.12308 -80.41528
## 478                   7 winter       S 25.12308 -80.41528
## 479                   7 winter       S 25.12308 -80.41528
## 480                   7 winter       L 25.12308 -80.41528
## 481                   7 winter       L 25.12308 -80.41528
## 482                   7 winter       L 25.12308 -80.41528
## 483                   7 winter       L 25.12308 -80.41528
## 484                   7 winter       L 25.12308 -80.41528
## 485                   7 winter       L 25.12308 -80.41528
## 486                   7 winter       L 25.12308 -80.41528
## 487                   7 winter       L 25.12308 -80.41528
## 488                   7 winter       L 25.12308 -80.41528
## 489                   7 winter       L 25.12308 -80.41528
## 490                   7 winter       L 25.12308 -80.41528
## 491                   7 winter       L 25.12308 -80.41528
## 492                   7 winter       L 25.12308 -80.41528
## 493                   7 winter       S 25.12308 -80.41528
## 494                   7 winter       L 25.12308 -80.41528
## 495                   7 winter       L 27.90335 -81.58946
## 496                   7 winter       L 27.90335 -81.58946
## 497                   7 winter       L 27.90335 -81.58946
## 498                   7 winter       L 27.90335 -81.58946
## 499                   7 winter       L 27.90335 -81.58946
## 500                   7 winter       L 27.90335 -81.58946
## 501                   7 winter       L 27.90335 -81.58946
## 502                   7 winter       L 27.90335 -81.58946
## 503                   7 winter       L 27.90335 -81.58946
## 504                   7 winter       L 27.90335 -81.58946
## 505                   7 winter       L 27.90335 -81.58946
## 506                   7 winter       L 27.90335 -81.58946
## 507                   7 winter       L 27.90335 -81.58946
## 508                   7 winter       L 27.90335 -81.58946
## 509                   7 winter       L 27.90335 -81.58946
## 510                   7 winter       L 27.90335 -81.58946
## 511                   7 winter       L 27.90335 -81.58946
## 512                   7 winter       L 27.90335 -81.58946
## 513                   7 winter       L 27.90335 -81.58946
## 514                   7 winter       L 27.90335 -81.58946
## 515                   7 winter       L 27.90335 -81.58946
## 516                   7 winter       L 27.90335 -81.58946
## 517                   7 winter       L 27.90335 -81.58946
## 518                   7 winter       L 27.90335 -81.58946
## 519                   7 winter       L 27.90335 -81.58946
## 520                   7 winter       L 27.90335 -81.58946
## 521                   7 winter       L 27.90335 -81.58946
## 522                   7 winter       L 27.90335 -81.58946
## 523                   7 winter       L 27.90335 -81.58946
## 524                   7 winter       L 27.90335 -81.58946
## 525                   7 winter       L 27.90335 -81.58946
## 526                   7 winter       L 27.90335 -81.58946
## 527                   7 winter       L 27.90335 -81.58946
## 528                   7 winter       L 27.90335 -81.58946
## 529                   7 winter       L 27.90335 -81.58946
## 530                   7 winter       L 27.90335 -81.58946
## 531                   7 winter       L 27.90335 -81.58946
## 532                   7 winter       L 27.90335 -81.58946
## 533                   7 winter       L 27.90335 -81.58946
## 534                   7 winter       L 27.90335 -81.58946
## 535                   7 winter       L 27.90335 -81.58946
## 536                   7 winter       L 27.90335 -81.58946
## 537                   7 winter       L 27.90335 -81.58946
## 538                   7 winter       L 27.90335 -81.58946
## 539                   7 winter       L 27.90335 -81.58946
## 540                   7 winter       L 27.90335 -81.58946
## 541                   7 winter       L 27.90335 -81.58946
## 542                   7 winter       L 27.90335 -81.58946
## 543                   7 winter       L 27.90335 -81.58946
## 544                   7 winter       L 27.90335 -81.58946
## 545                   7 winter       L 27.90335 -81.58946
## 546                   7 winter       L 27.90335 -81.58946
## 547                   7 winter       L 27.90335 -81.58946
## 548                   7 winter       L 27.90335 -81.58946
## 549                   7 winter       L 27.90335 -81.58946
## 550                   7 winter       L 27.90335 -81.58946
## 551                   7 winter       L 27.90335 -81.58946
## 552                   7 winter       L 27.90335 -81.58946
## 553                   7 winter       L 27.90335 -81.58946
## 554                   7 winter       L 27.90335 -81.58946
## 555                   7 winter       L 27.90335 -81.58946
## 556                   7 winter       L 27.90335 -81.58946
## 557                   7 winter       L 27.90335 -81.58946
## 558                   7 winter       L 27.90335 -81.58946
## 559                   7 winter       L 27.90335 -81.58946
## 560                   7 winter       L 27.90335 -81.58946
## 561                   7 winter       L 27.90335 -81.58946
## 562                   7 winter       L 27.90335 -81.58946
## 563                   7 winter       L 27.90335 -81.58946
## 564                   7 winter       L 27.90335 -81.58946
## 565                   7 winter       L 27.90335 -81.58946
## 566                   7 winter       L 27.90335 -81.58946
## 567                   7 winter       L 27.90335 -81.58946
## 568                   7 winter       L 27.90335 -81.58946
## 569                   7 winter       L 27.90335 -81.58946
## 570                   7 winter       L 27.90335 -81.58946
## 571                   7 winter       L 27.90335 -81.58946
## 572                   7 winter       L 27.90335 -81.58946
## 573                   7 winter       L 27.90335 -81.58946
## 574                   7 winter       L 27.90335 -81.58946
## 575                   7 winter       L 27.90335 -81.58946
## 576                   7 winter       L 27.90335 -81.58946
## 577                   7 winter       L 27.90335 -81.58946
## 578                   7 winter       L 27.90335 -81.58946
## 579                   7 winter       L 28.79602 -81.87777
## 580                   7 winter       L 28.79602 -81.87777
## 581                   7 winter       L 28.79602 -81.87777
## 582                   7 winter       L 28.79602 -81.87777
## 583                   7 winter       L 28.79602 -81.87777
## 584                   7 winter       L 28.79602 -81.87777
## 585                   7 winter       L 28.79602 -81.87777
## 586                   7 winter       L 28.79602 -81.87777
## 587                   7 winter       L 28.79602 -81.87777
## 588                   7 winter       L 28.79602 -81.87777
## 589                   7 winter       L 28.79602 -81.87777
## 590                   7 winter       L 28.79602 -81.87777
## 591                   7 winter       L 28.79602 -81.87777
## 592                   7 winter       L 28.79602 -81.87777
## 593                   7 winter       L 28.79602 -81.87777
## 594                   7 winter       L 28.79602 -81.87777
## 595                   7 winter       L 28.79602 -81.87777
## 596                   7 winter       L 28.79602 -81.87777
## 597                   7 winter       L 28.79602 -81.87777
## 598                   7 winter       L 28.79602 -81.87777
## 599                   7 winter       L 28.79602 -81.87777
## 600                   7 winter       L 28.79602 -81.87777
## 601                   7 winter       L 28.79602 -81.87777
## 602                   7 winter       L 28.79602 -81.87777
## 603                   7 winter       L 28.79602 -81.87777
## 604                   7 winter       L 28.79602 -81.87777
## 605                   7 winter       L 28.79602 -81.87777
## 606                   7 winter       L 28.79602 -81.87777
## 607                   7 winter       L 28.79602 -81.87777
## 608                   7 winter       L 28.79602 -81.87777
## 609                   7 winter       L 28.79602 -81.87777
## 610                   7 winter       L 28.79602 -81.87777
## 611                   7 winter       L 28.79602 -81.87777
## 612                   7 winter       L 28.79602 -81.87777
## 613                   7 winter       L 28.79602 -81.87777
## 614                   7 winter       L 28.79602 -81.87777
## 615                   7 winter       L 28.79602 -81.87777
## 616                   7 winter       L 28.79602 -81.87777
## 617                   7 winter       L 28.79602 -81.87777
## 618                   7 winter       L 28.79602 -81.87777
## 619                   7 winter       L 28.79602 -81.87777
## 620                   7 winter       L 28.79602 -81.87777
## 621                   7 winter       L 28.79602 -81.87777
## 622                   7 winter       L 28.79602 -81.87777
## 623                   7 winter       L 28.79602 -81.87777
## 624                   7 winter       L 28.79602 -81.87777
## 625                   7 winter       L 28.79602 -81.87777
## 626                   7 winter       L 28.79602 -81.87777
## 627                   7 winter       S 28.79602 -81.87777
## 628                   7 winter       L 28.79602 -81.87777
## 629                   7 winter       L 28.79602 -81.87777
## 630                   7 winter       L 28.79602 -81.87777
## 631                   7 winter       L 28.79602 -81.87777
## 632                   7 winter       L 28.79602 -81.87777
## 633                   7 winter       L 28.79602 -81.87777
## 634                   7 winter       L 28.79602 -81.87777
## 635                   7 winter       L 28.79602 -81.87777
## 636                   7 winter       L 28.79602 -81.87777
## 637                   7 winter       L 28.79602 -81.87777
## 638                   7 winter       L 28.79602 -81.87777
## 639                   7 winter       L 28.79602 -81.87777
## 640                   7 winter       L 28.79602 -81.87777
## 641                   7 winter       L 28.79602 -81.87777
## 642                   7 winter       L 28.79602 -81.87777
## 643                   7 winter       L 28.79602 -81.87777
## 644                   7 winter       L 28.79602 -81.87777
## 645                   7 winter       L 28.79602 -81.87777
## 646                   7 winter       L 28.79602 -81.87777
## 647                   7 winter       L 28.79602 -81.87777
## 648                   7 winter       L 28.79602 -81.87777
## 649                   7 winter       L 28.79602 -81.87777
## 650                   7 winter       L 28.79602 -81.87777
## 651                   7 winter       L 28.79602 -81.87777
## 652                   7 winter       L 28.79602 -81.87777
## 653                   7 winter       L 28.79602 -81.87777
## 654                   7 winter       L 28.79602 -81.87777
## 655                   7 winter       L 28.79602 -81.87777
## 656                   7 winter       L 28.79602 -81.87777
## 657                   7 winter       L 28.79602 -81.87777
## 658                   7 winter       L 28.79602 -81.87777
## 659                   7 winter       L 28.79602 -81.87777
## 660                   7 winter       L 28.79602 -81.87777
## 661                   7 winter       L 28.79602 -81.87777
## 662                   7 winter       L 28.79602 -81.87777
## 663                   7 winter       L 28.79602 -81.87777
## 664                   7 winter       L 28.79602 -81.87777
## 665                   7 winter       S 28.79602 -81.87777
## 666                   7 winter       L 28.79602 -81.87777
## 667                   7 winter       L 28.79602 -81.87777
## 668                   7 winter       L 28.79602 -81.87777
## 669                   7 winter       L 28.79602 -81.87777
## 670                   7 winter       L 24.96448 -80.56739
## 671                   7 winter       L 24.96448 -80.56739
## 672                   7 winter       L 24.96448 -80.56739
## 673                   7 winter       L 24.96448 -80.56739
## 674                   7 winter       L 24.96448 -80.56739
## 675                   7 winter       L 24.96448 -80.56739
## 676                   7 winter       L 24.96448 -80.56739
## 677                   7 winter       L 24.96448 -80.56739
## 678                   7 winter       L 24.96448 -80.56739
## 679                   7 winter       S 24.96448 -80.56739
## 680                   7 winter       L 24.96448 -80.56739
## 681                   7 winter       L 24.96448 -80.56739
## 682                   7 winter       L 24.96448 -80.56739
## 683                   7 winter       L 24.96448 -80.56739
## 684                   7 winter       L 24.96448 -80.56739
## 685                   7 winter       L 24.96448 -80.56739
## 686                   7 winter       L 24.96448 -80.56739
## 687                   7 winter       L 24.96448 -80.56739
## 688                   7 winter       L 24.96448 -80.56739
## 689                   7 winter       L 24.96448 -80.56739
## 690                   7 winter       L 24.96448 -80.56739
## 691                   7 winter       L 24.96448 -80.56739
## 692                   7 winter       L 24.96448 -80.56739
## 693                   7 winter       L 24.96448 -80.56739
## 694                   7 winter       L 24.96448 -80.56739
## 695                   7 winter       L 24.96448 -80.56739
## 696                   7 winter       S 24.96448 -80.56739
## 697                   7 winter       L 24.96448 -80.56739
## 698                   7 winter       L 24.96448 -80.56739
## 699                   7 winter       L 24.96448 -80.56739
## 700                   7 winter       L 24.96448 -80.56739
## 701                   7 winter       S 24.96448 -80.56739
## 702                   7 winter       L 24.96448 -80.56739
## 703                   7 winter       S 24.96448 -80.56739
## 704                   7 winter       L 24.96448 -80.56739
## 705                  11 spring       L 29.66374 -82.36091
## 706                  11 spring       L 29.66374 -82.36091
## 707                  11 spring       L 29.66374 -82.36091
## 708                  11 spring       L 29.66374 -82.36091
## 709                  11 spring       L 29.66374 -82.36091
## 710                  11 spring       L 29.66374 -82.36091
## 711                  11 spring       L 29.66374 -82.36091
## 712                  11 spring       L 29.66374 -82.36091
## 713                  11 spring       L 29.66374 -82.36091
## 714                  11 spring       L 29.66374 -82.36091
## 715                  11 spring       L 29.66374 -82.36091
## 716                  11 spring       L 29.66374 -82.36091
## 717                  11 spring       L 29.66374 -82.36091
## 718                  11 spring       L 29.66374 -82.36091
## 719                  11 spring       L 29.66374 -82.36091
## 720                  11 spring       L 29.66374 -82.36091
## 721                  11 spring       L 29.66374 -82.36091
## 722                  11 spring       L 29.66374 -82.36091
## 723                  11 spring       L 29.66374 -82.36091
## 724                  11 spring       L 29.66374 -82.36091
## 725                  11 spring       L 29.66374 -82.36091
## 726                  11 spring       S 29.66374 -82.36091
## 727                  11 spring       L 29.66374 -82.36091
## 728                  11 spring       L 29.66374 -82.36091
## 729                  11 spring       L 29.66374 -82.36091
## 730                  11 spring       L 29.66374 -82.36091
## 731                  11 spring       L 29.66374 -82.36091
## 732                  11 spring       S 29.66374 -82.36091
## 733                  11 spring       L 29.66374 -82.36091
## 734                  11 spring       L 29.66374 -82.36091
## 735                  11 spring       L 29.66374 -82.36091
## 736                  11 spring       L 29.66374 -82.36091
## 737                  11 spring       L 29.66374 -82.36091
## 738                  11 spring       L 29.66374 -82.36091
## 739                  11 spring       L 29.66374 -82.36091
## 740                  11 spring       L 29.66374 -82.36091
## 741                  11 spring       L 29.66374 -82.36091
## 742                  11 spring       L 29.66374 -82.36091
## 743                  11 spring       L 29.66374 -82.36091
## 744                  11 spring       L 29.66374 -82.36091
## 745                  11 spring       L 29.66374 -82.36091
## 746                  11 spring       L 29.66374 -82.36091
## 747                  11 spring       L 29.66374 -82.36091
## 748                  11 spring       L 29.66374 -82.36091
## 749                  11 spring       L 29.66374 -82.36091
## 750                  11 spring       L 29.66374 -82.36091
## 751                  11 spring       L 29.66374 -82.36091
## 752                  11 spring       L 29.66374 -82.36091
## 753                  11 spring       L 25.57106 -80.45500
## 754                  11 spring       L 25.57106 -80.45500
## 755                  11 spring       L 25.57106 -80.45500
## 756                  11 spring       L 25.57106 -80.45500
## 757                  11 spring       L 25.57106 -80.45500
## 758                  11 spring       S 25.57106 -80.45500
## 759                  11 spring       S 25.57106 -80.45500
## 760                  11 spring       S 25.57106 -80.45500
## 761                  11 spring       S 25.57106 -80.45500
## 762                  11 spring       S 25.57106 -80.45500
## 763                  11 spring       S 25.57106 -80.45500
## 764                  11 spring       S 25.57106 -80.45500
## 765                  11 spring       L 25.57106 -80.45500
## 766                  11 spring       L 25.57106 -80.45500
## 767                  11 spring       L 25.57106 -80.45500
## 768                  11 spring       L 25.57106 -80.45500
## 769                  11 spring       S 25.57106 -80.45500
## 770                  11 spring       S 25.12308 -80.41528
## 771                  11 spring       S 25.12308 -80.41528
## 772                  11 spring       S 25.12308 -80.41528
## 773                  11 spring       L 25.12308 -80.41528
## 774                  11 spring       S 25.12308 -80.41528
## 775                  11 spring       S 25.12308 -80.41528
## 776                  11 spring       L 25.12308 -80.41528
## 777                  11 spring       S 25.12308 -80.41528
## 778                  11 spring       L 25.12308 -80.41528
## 779                  11 spring       S 25.12308 -80.41528
## 780                  11 spring       S 25.12308 -80.41528
## 781                  11 spring       L 25.12308 -80.41528
## 782                  11 spring       S 25.12308 -80.41528
## 783                  11 spring       L 25.12308 -80.41528
## 784                  11 spring       L 25.12308 -80.41528
## 785                  11 spring       S 25.12308 -80.41528
## 786                  11 spring       S 25.12308 -80.41528
## 787                  11 spring       S 25.12308 -80.41528
## 788                  11 spring       L 25.12308 -80.41528
## 789                  11 spring       L 25.12308 -80.41528
## 790                  11 spring       S 25.12308 -80.41528
## 791                  11 spring       L 25.12308 -80.41528
## 792                  11 spring       L 25.12308 -80.41528
## 793                  11 spring       S 25.12308 -80.41528
## 794                  11 spring       S 25.12308 -80.41528
## 795                  11 spring       S 25.12308 -80.41528
## 796                  11 spring       L 25.12308 -80.41528
## 797                  11 spring       S 25.12308 -80.41528
## 798                  11 spring       L 25.12308 -80.41528
## 799                  11 spring       S 25.12308 -80.41528
## 800                  11 spring       S 25.12308 -80.41528
## 801                  11 spring       L 25.12308 -80.41528
## 802                  11 spring       S 25.12308 -80.41528
## 803                  11 spring       L 25.12308 -80.41528
## 804                  11 spring       L 25.12308 -80.41528
## 805                  11 spring       L 25.12308 -80.41528
## 806                  11 spring       S 25.12308 -80.41528
## 807                  11 spring       S 25.12308 -80.41528
## 808                  11 spring       L 25.12308 -80.41528
## 809                  11 spring       L 25.12308 -80.41528
## 810                  11 spring       S 27.90335 -81.58946
## 811                  11 spring       L 27.90335 -81.58946
## 812                  11 spring       L 27.90335 -81.58946
## 813                  11 spring       L 27.90335 -81.58946
## 814                  11 spring       L 27.90335 -81.58946
## 815                  11 spring       L 27.90335 -81.58946
## 816                  11 spring       L 27.90335 -81.58946
## 817                  11 spring       L 27.90335 -81.58946
## 818                  11 spring       L 27.90335 -81.58946
## 819                  11 spring       L 27.90335 -81.58946
## 820                  11 spring       L 27.90335 -81.58946
## 821                  11 spring       L 27.90335 -81.58946
## 822                  11 spring       L 27.90335 -81.58946
## 823                  11 spring       L 27.90335 -81.58946
## 824                  11 spring       L 27.90335 -81.58946
## 825                  11 spring       L 27.90335 -81.58946
## 826                  11 spring       L 27.90335 -81.58946
## 827                  11 spring       S 27.90335 -81.58946
## 828                  11 spring       L 27.90335 -81.58946
## 829                  11 spring       L 27.90335 -81.58946
## 830                  11 spring       L 27.90335 -81.58946
## 831                  11 spring       L 27.90335 -81.58946
## 832                  11 spring       S 27.90335 -81.58946
## 833                  11 spring       L 27.90335 -81.58946
## 834                  11 spring       L 27.90335 -81.58946
## 835                  11 spring       L 27.90335 -81.58946
## 836                  11 spring       L 27.90335 -81.58946
## 837                  11 spring       L 27.90335 -81.58946
## 838                  11 spring       L 27.90335 -81.58946
## 839                  11 spring       S 27.90335 -81.58946
## 840                  11 spring       L 27.90335 -81.58946
## 841                  11 spring       L 27.90335 -81.58946
## 842                  11 spring       L 27.90335 -81.58946
## 843                  11 spring       L 27.90335 -81.58946
## 844                  11 spring       L 27.90335 -81.58946
## 845                  11 spring       L 27.90335 -81.58946
## 846                  11 spring       L 27.90335 -81.58946
## 847                  11 spring       L 27.90335 -81.58946
## 848                  11 spring       S 27.90335 -81.58946
## 849                  11 spring       L 27.90335 -81.58946
## 850                  11 spring       L 27.90335 -81.58946
## 851                  11 spring       L 27.90335 -81.58946
## 852                  11 spring       L 27.90335 -81.58946
## 853                  11 spring       L 27.90335 -81.58946
## 854                  11 spring       L 28.79602 -81.87777
## 855                  11 spring       L 28.79602 -81.87777
## 856                  11 spring       L 28.79602 -81.87777
## 857                  11 spring       L 28.79602 -81.87777
## 858                  11 spring       L 28.79602 -81.87777
## 859                  11 spring       L 28.79602 -81.87777
## 860                  11 spring       L 28.79602 -81.87777
## 861                  11 spring       L 28.79602 -81.87777
## 862                  11 spring       L 28.79602 -81.87777
## 863                  11 spring       L 28.79602 -81.87777
## 864                  11 spring       L 28.79602 -81.87777
## 865                  11 spring       L 28.79602 -81.87777
## 866                  11 spring       L 28.79602 -81.87777
## 867                  11 spring       L 28.79602 -81.87777
## 868                  11 spring       L 24.96448 -80.56739
## 869                  11 spring       S 24.96448 -80.56739
## 870                  11 spring       L 24.96448 -80.56739
## 871                  11 spring       S 24.96448 -80.56739
## 872                  11 spring       S 24.96448 -80.56739
## 873                  11 spring       S 24.96448 -80.56739
## 874                  11 spring       L 24.96448 -80.56739
## 875                  11 spring       L 24.96448 -80.56739
## 876                  11 spring       S 24.96448 -80.56739
## 877                  11 spring       S 24.96448 -80.56739
## 878                  11 spring       L 24.96448 -80.56739
## 879                  11 spring       S 24.96448 -80.56739
## 880                  11 spring       L 24.96448 -80.56739
## 881                  11 spring       L 24.96448 -80.56739
## 882                  11 spring       S 24.96448 -80.56739
## 883                  11 spring       L 24.96448 -80.56739
## 884                  11 spring       L 24.96448 -80.56739
## 885                  11 spring       S 24.96448 -80.56739
## 886                  11 spring       L 24.96448 -80.56739
## 887                  11 spring       L 24.96448 -80.56739
## 888                  11 spring       S 24.96448 -80.56739
## 889                  11 spring       L 24.96448 -80.56739
## 890                  11 spring       L 24.96448 -80.56739
## 891                  11 spring       L 24.96448 -80.56739
## 892                  11 spring       L 24.96448 -80.56739
## 893                  11 spring       S 24.96448 -80.56739
## 894                  11 spring       L 24.96448 -80.56739
## 895                  11 spring       S 24.96448 -80.56739
## 896                  11 spring       L 24.96448 -80.56739
## 897                  11 spring       L 24.96448 -80.56739
## 898                  11 spring       S 24.96448 -80.56739
## 899                  11 spring       S 24.96448 -80.56739
## 900                  11 spring       S 24.96448 -80.56739
## 901                  11 spring       S 24.96448 -80.56739
## 902                  11 spring       S 24.96448 -80.56739
## 903                  11 spring       L 24.96448 -80.56739
## 904                  11 spring       L 24.96448 -80.56739
## 905                  11 spring       S 24.96448 -80.56739
## 906                  11 spring       L 24.96448 -80.56739
## 907                  11 spring       L 24.96448 -80.56739
## 908                  11 spring       L 24.96448 -80.56739
## 909                  11 spring       S 24.96448 -80.56739
## 910                  11 spring       L 24.96448 -80.56739
## 911                  11 spring       L 24.96448 -80.56739
## 912                  23 spring       S 25.12308 -80.41528
## 913                  23 spring       S 25.12308 -80.41528
## 914                  23 spring       S 25.12308 -80.41528
## 915                  23 spring       L 25.12308 -80.41528
## 916                  23 spring       S 25.12308 -80.41528
## 917                  23 spring       S 25.12308 -80.41528
## 918                  23 spring       L 25.12308 -80.41528
## 919                  23 spring       S 25.12308 -80.41528
## 920                  23 spring       S 25.12308 -80.41528
## 921                  23 spring       S 25.12308 -80.41528
## 922                  23 spring       S 25.12308 -80.41528
## 923                  23 spring       S 25.12308 -80.41528
## 924                  23 spring       S 25.12308 -80.41528
## 925                  23 spring       S 25.12308 -80.41528
## 926                  23 spring       L 25.12308 -80.41528
## 927                  23 spring       S 25.12308 -80.41528
## 928                  23 spring       S 25.12308 -80.41528
## 929                  23 spring       S 25.12308 -80.41528
## 930                  23 spring       L 25.12308 -80.41528
## 931                  23 spring       S 25.12308 -80.41528
## 932                  23 spring       S 25.12308 -80.41528
## 933                  23 spring       L 25.12308 -80.41528
## 934                  23 spring       S 25.12308 -80.41528
## 935                  23 spring       L 25.12308 -80.41528
## 936                  23 spring       L 25.12308 -80.41528
## 937                  23 spring       L 25.12308 -80.41528
## 938                  23 spring       S 25.12308 -80.41528
## 939                  23 spring       S 25.12308 -80.41528
## 940                  23 spring       S 25.12308 -80.41528
## 941                  23 spring       L 25.12308 -80.41528
## 942                  23 spring       S 25.12308 -80.41528
## 943                  23 spring       S 25.12308 -80.41528
## 944                  23 spring       S 25.12308 -80.41528
## 945                  23 spring       S 25.12308 -80.41528
## 946                  23 spring       S 25.12308 -80.41528
## 947                  23 spring       S 25.12308 -80.41528
## 948                  23 spring       S 25.12308 -80.41528
## 949                  23 spring       S 25.12308 -80.41528
## 950                  23 spring       S 25.12308 -80.41528
## 951                  23 spring       S 25.12308 -80.41528
## 952                  23 spring       L 25.12308 -80.41528
## 953                  23 spring       S 25.12308 -80.41528
## 954                  23 spring       S 25.12308 -80.41528
## 955                  23 spring       S 25.12308 -80.41528
## 956                  23 spring       S 25.12308 -80.41528
## 957                  23 spring       L 25.12308 -80.41528
## 958                  23 spring       S 25.12308 -80.41528
## 959                  23 spring       S 25.12308 -80.41528
## 960                  23 spring       S 25.12308 -80.41528
## 961                  23 spring       S 25.12308 -80.41528
## 962                  23 spring       S 25.12308 -80.41528
## 963                  23 spring       L 27.90335 -81.58946
## 964                  23 spring       L 27.90335 -81.58946
## 965                  23 spring       L 27.90335 -81.58946
## 966                  23 spring       L 27.90335 -81.58946
## 967                  23 spring       L 27.90335 -81.58946
## 968                  23 spring       L 27.90335 -81.58946
## 969                  23 spring       L 27.90335 -81.58946
## 970                  23 spring       L 27.90335 -81.58946
## 971                  23 spring       L 27.90335 -81.58946
## 972                  23 spring       L 27.90335 -81.58946
## 973                  23 spring       L 27.90335 -81.58946
## 974                  23 spring       L 27.90335 -81.58946
## 975                  23 spring       L 27.90335 -81.58946
## 976                  23 spring       L 27.90335 -81.58946
## 977                  23 spring       L 27.90335 -81.58946
## 978                  23 spring       L 27.90335 -81.58946
## 979                  23 spring       L 27.90335 -81.58946
## 980                  23 spring       L 27.90335 -81.58946
## 981                  23 spring       L 27.90335 -81.58946
## 982                  23 spring       L 27.90335 -81.58946
## 983                  23 spring       L 27.90335 -81.58946
## 984                  23 spring       L 27.90335 -81.58946
## 985                  23 spring       L 27.90335 -81.58946
## 986                  23 spring       L 27.90335 -81.58946
## 987                  23 spring       L 27.90335 -81.58946
## 988                  23 spring       L 27.90335 -81.58946
## 989                  23 spring       L 27.90335 -81.58946
## 990                  23 spring       L 27.90335 -81.58946
## 991                  23 spring       L 27.90335 -81.58946
## 992                  23 spring       L 27.90335 -81.58946
## 993                  23 spring       L 27.90335 -81.58946
## 994                  23 spring       L 27.90335 -81.58946
## 995                  23 spring       L 27.90335 -81.58946
## 996                  23 spring       L 27.90335 -81.58946
## 997                  23 spring       L 27.90335 -81.58946
## 998                  23 spring       L 27.90335 -81.58946
## 999                  23 spring       L 27.90335 -81.58946
## 1000                 23 spring       L 27.90335 -81.58946
## 1001                 23 spring       L 27.90335 -81.58946
## 1002                 23 spring       L 27.90335 -81.58946
## 1003                 23 spring       L 27.90335 -81.58946
## 1004                 23 spring       L 27.90335 -81.58946
## 1005                 23 spring       L 27.90335 -81.58946
## 1006                 23 spring       L 27.90335 -81.58946
## 1007                 23 spring       L 27.90335 -81.58946
## 1008                 23 spring       L 27.90335 -81.58946
## 1009                 23 spring       L 27.90335 -81.58946
## 1010                 23 spring       L 27.90335 -81.58946
## 1011                 23 spring       L 27.90335 -81.58946
## 1012                 23 spring       L 27.90335 -81.58946
## 1013                 23 spring       L 27.90335 -81.58946
## 1014                 23 spring       L 27.90335 -81.58946
## 1015                 23 spring       L 27.90335 -81.58946
## 1016                 23 spring       L 28.79602 -81.87777
## 1017                 23 spring       L 28.79602 -81.87777
## 1018                 23 spring       L 28.79602 -81.87777
## 1019                 23 spring       L 28.79602 -81.87777
## 1020                 23 spring       L 28.79602 -81.87777
## 1021                 23 spring       L 28.79602 -81.87777
## 1022                 23 spring       L 28.79602 -81.87777
## 1023                 23 spring       L 28.79602 -81.87777
## 1024                 23 spring       L 28.79602 -81.87777
## 1025                 23 spring       L 28.79602 -81.87777
## 1026                 23 spring       S 28.79602 -81.87777
## 1027                 23 spring       L 28.79602 -81.87777
## 1028                 23 spring       L 28.79602 -81.87777
## 1029                 23 spring       L 28.79602 -81.87777
## 1030                 23 spring       L 28.79602 -81.87777
## 1031                 23 spring       L 28.79602 -81.87777
## 1032                 23 spring       L 28.79602 -81.87777
## 1033                 23 spring       L 28.79602 -81.87777
## 1034                 23 spring       L 28.79602 -81.87777
## 1035                 23 spring       L 28.79602 -81.87777
## 1036                 23 spring       L 28.79602 -81.87777
## 1037                 23 spring       L 28.79602 -81.87777
## 1038                 23 spring       L 28.79602 -81.87777
## 1039                 23 spring       L 28.79602 -81.87777
## 1040                 23 spring       L 28.79602 -81.87777
## 1041                 23 spring       S 28.79602 -81.87777
## 1042                 23 spring       L 28.79602 -81.87777
## 1043                 23 spring       L 28.79602 -81.87777
## 1044                 23 spring       L 28.79602 -81.87777
## 1045                 23 spring       L 28.79602 -81.87777
## 1046                 23 spring       L 28.79602 -81.87777
## 1047                 23 spring       L 28.79602 -81.87777
## 1048                 23 spring       S 28.79602 -81.87777
## 1049                 23 spring       L 28.79602 -81.87777
## 1050                 23 spring       L 28.79602 -81.87777
## 1051                 23 spring       L 28.79602 -81.87777
## 1052                 23 spring       S 24.96448 -80.56739
## 1053                 23 spring       L 24.96448 -80.56739
## 1054                 23 spring       S 24.96448 -80.56739
## 1055                 23 spring       S 24.96448 -80.56739
## 1056                 23 spring       L 24.96448 -80.56739
## 1057                 23 spring       L 24.96448 -80.56739
## 1058                 23 spring       L 24.96448 -80.56739
## 1059                 23 spring       S 24.96448 -80.56739
## 1060                 23 spring       L 24.96448 -80.56739
## 1061                 23 spring       L 24.96448 -80.56739
## 1062                 23 spring       S 24.96448 -80.56739
## 1063                 23 spring       L 24.96448 -80.56739
## 1064                 43 winter       L 29.66374 -82.36091
## 1065                 43 winter       L 29.66374 -82.36091
## 1066                 43 winter       L 29.66374 -82.36091
## 1067                 43 winter       L 29.66374 -82.36091
## 1068                 43 winter       L 29.66374 -82.36091
## 1069                 43 winter       L 29.66374 -82.36091
## 1070                 43 winter       L 29.66374 -82.36091
## 1071                 43 winter       L 29.66374 -82.36091
## 1072                 43 winter       L 29.66374 -82.36091
## 1073                 43 winter       L 29.66374 -82.36091
## 1074                 43 winter       L 29.66374 -82.36091
## 1075                 43 winter       L 29.66374 -82.36091
## 1076                 43 winter       L 29.66374 -82.36091
## 1077                 43 winter       L 29.66374 -82.36091
## 1078                 43 winter       L 29.66374 -82.36091
## 1079                 43 winter       L 29.66374 -82.36091
## 1080                 43 winter       L 29.66374 -82.36091
## 1081                 43 winter       L 29.66374 -82.36091
## 1082                 43 winter       L 29.66374 -82.36091
## 1083                 43 winter       L 29.66374 -82.36091
## 1084                 43 winter       L 29.66374 -82.36091
## 1085                 43 winter       L 29.66374 -82.36091
## 1086                 43 winter       L 29.66374 -82.36091
## 1087                 43 winter       L 29.66374 -82.36091
## 1088                 43 winter       L 29.66374 -82.36091
## 1089                 43 winter       L 29.66374 -82.36091
## 1090                 43 winter       L 29.66374 -82.36091
## 1091                 43 winter       L 29.66374 -82.36091
## 1092                 43 winter       L 29.66374 -82.36091
## 1093                 43 winter       L 29.66374 -82.36091
## 1094                 43 winter       L 29.66374 -82.36091
## 1095                 43 winter       L 29.66374 -82.36091
## 1096                 43 winter       L 29.66374 -82.36091
## 1097                 43 winter       L 29.66374 -82.36091
## 1098                 43 winter       S 29.66374 -82.36091
## 1099                 43 winter       L 29.66374 -82.36091
## 1100                 43 winter       L 29.66374 -82.36091
## 1101                 43 winter       L 29.66374 -82.36091
## 1102                 43 winter       L 29.66374 -82.36091
## 1103                 43 winter       L 29.66374 -82.36091
## 1104                 43 winter       L 29.66374 -82.36091
## 1105                 43 winter       L 29.66374 -82.36091
## 1106                 43 winter       L 29.66374 -82.36091
## 1107                 43 winter       S 29.66374 -82.36091
## 1108                 43 winter       L 29.66374 -82.36091
## 1109                 43 winter       L 29.66374 -82.36091
## 1110                 43 winter       S 29.66374 -82.36091
## 1111                 43 winter       L 29.66374 -82.36091
## 1112                 43 winter       L 29.66374 -82.36091
## 1113                 43 winter       L 29.66374 -82.36091
## 1114                 43 winter       S 29.66374 -82.36091
## 1115                 43 winter       L 29.66374 -82.36091
## 1116                 43 winter       L 29.66374 -82.36091
## 1117                 43 winter       L 29.66374 -82.36091
## 1118                 43 winter       L 29.66374 -82.36091
## 1119                 43 winter       L 29.66374 -82.36091
## 1120                 43 winter       L 29.66374 -82.36091
## 1121                 43 winter       L 25.49172 -80.48586
## 1122                 43 winter       S 25.49172 -80.48586
## 1123                 43 winter       S 25.49172 -80.48586
## 1124                 43 winter       L 25.49172 -80.48586
## 1125                 43 winter       L 25.49172 -80.48586
## 1126                 43 winter       S 25.49172 -80.48586
## 1127                 43 winter       L 25.49172 -80.48586
## 1128                 43 winter       L 25.49172 -80.48586
## 1129                 43 winter       S 25.49172 -80.48586
## 1130                 43 winter       L 25.49172 -80.48586
## 1131                 43 winter       L 25.49172 -80.48586
## 1132                 43 winter       L 25.49172 -80.48586
## 1133                 43 winter       L 25.49172 -80.48586
## 1134                 43 winter       L 25.19515 -80.34592
## 1135                 43 winter       L 25.19515 -80.34592
## 1136                 43 winter       L 25.19515 -80.34592
## 1137                 43 winter       S 25.19515 -80.34592
## 1138                 43 winter       L 25.19515 -80.34592
## 1139                 43 winter       S 25.19515 -80.34592
## 1140                 43 winter       L 25.19515 -80.34592
## 1141                 43 winter       L 25.19515 -80.34592
## 1142                 43 winter       L 25.19515 -80.34592
## 1143                 43 winter       L 25.19515 -80.34592
## 1144                 43 winter       L 25.19515 -80.34592
## 1145                 43 winter       S 25.19515 -80.34592
## 1146                 43 winter       S 25.19515 -80.34592
## 1147                 43 winter       L 25.19515 -80.34592
## 1148                 43 winter       L 25.19515 -80.34592
## 1149                 43 winter       L 25.19515 -80.34592
## 1150                 43 winter       L 25.19515 -80.34592
## 1151                 43 winter       L 25.19515 -80.34592
## 1152                 43 winter       L 25.19515 -80.34592
## 1153                 43 winter       L 25.19515 -80.34592
## 1154                 43 winter       L 25.19515 -80.34592
## 1155                 43 winter       S 25.19515 -80.34592
## 1156                 43 winter       L 25.19515 -80.34592
## 1157                 43 winter       S 25.19515 -80.34592
## 1158                 43 winter       L 25.19515 -80.34592
## 1159                 43 winter       S 25.19515 -80.34592
## 1160                 43 winter       L 25.19515 -80.34592
## 1161                 43 winter       L 25.19515 -80.34592
## 1162                 43 winter       L 25.19515 -80.34592
## 1163                 43 winter       L 25.19515 -80.34592
## 1164                 43 winter       L 25.19515 -80.34592
## 1165                 43 winter       L 25.19515 -80.34592
## 1166                 43 winter       L 25.19515 -80.34592
## 1167                 43 winter       L 25.19515 -80.34592
## 1168                 43 winter       S 25.19515 -80.34592
## 1169                 43 winter       L 25.19515 -80.34592
## 1170                 43 winter       S 25.19515 -80.34592
## 1171                 43 winter       S 25.19515 -80.34592
## 1172                 43 winter       S 25.19515 -80.34592
## 1173                 43 winter       L 25.19515 -80.34592
## 1174                 43 winter       L 25.19515 -80.34592
## 1175                 43 winter       S 25.19515 -80.34592
## 1176                 43 winter       L 25.19515 -80.34592
## 1177                 43 winter       L 25.19515 -80.34592
## 1178                 43 winter       L 25.19515 -80.34592
## 1179                 43 winter       S 25.19515 -80.34592
## 1180                 43 winter       L 25.19515 -80.34592
## 1181                 43 winter       S 25.19515 -80.34592
## 1182                 43 winter       L 25.19515 -80.34592
## 1183                 43 winter       L 25.19515 -80.34592
## 1184                 43 winter       L 25.19515 -80.34592
## 1185                 43 winter       L 25.19515 -80.34592
## 1186                 43 winter       L 25.19515 -80.34592
## 1187                 43 winter       L 25.12308 -80.41528
## 1188                 43 winter       L 25.12308 -80.41528
## 1189                 43 winter       L 25.12308 -80.41528
## 1190                 43 winter       S 25.12308 -80.41528
## 1191                 43 winter       L 25.12308 -80.41528
## 1192                 43 winter       L 25.12308 -80.41528
## 1193                 43 winter       S 25.12308 -80.41528
## 1194                 43 winter       L 25.12308 -80.41528
## 1195                 43 winter       S 25.12308 -80.41528
## 1196                 43 winter       L 25.12308 -80.41528
## 1197                 43 winter       L 25.12308 -80.41528
## 1198                 43 winter       L 27.93574 -81.57414
## 1199                 43 winter       L 27.93574 -81.57414
## 1200                 43 winter       L 27.93574 -81.57414
## 1201                 43 winter       L 27.93574 -81.57414
## 1202                 43 winter       L 27.93574 -81.57414
## 1203                 43 winter       L 27.93574 -81.57414
## 1204                 43 winter       L 27.93574 -81.57414
## 1205                 43 winter       S 27.93574 -81.57414
## 1206                 43 winter       L 27.93574 -81.57414
## 1207                 43 winter       L 27.93574 -81.57414
## 1208                 43 winter       L 27.93574 -81.57414
## 1209                 43 winter       L 27.93574 -81.57414
## 1210                 43 winter       L 27.93574 -81.57414
## 1211                 43 winter       L 27.93574 -81.57414
## 1212                 43 winter       L 27.93574 -81.57414
## 1213                 43 winter       L 28.80523 -81.88178
## 1214                 43 winter       L 28.80523 -81.88178
## 1215                 43 winter       L 28.80523 -81.88178
## 1216                 43 winter       L 28.80523 -81.88178
## 1217                 43 winter       L 28.80523 -81.88178
## 1218                 43 winter       L 28.80523 -81.88178
## 1219                 43 winter       L 28.80523 -81.88178
## 1220                 43 winter       L 28.80523 -81.88178
## 1221                 43 winter       L 28.80523 -81.88178
## 1222                 43 winter       L 28.80523 -81.88178
## 1223                 43 winter       L 28.80523 -81.88178
## 1224                 43 winter       L 28.80523 -81.88178
## 1225                 43 winter       L 28.80523 -81.88178
## 1226                 43 winter       L 28.80523 -81.88178
## 1227                 43 winter       L 28.80523 -81.88178
## 1228                 43 winter       L 28.80523 -81.88178
## 1229                 43 winter       L 28.80523 -81.88178
## 1230                 43 winter       L 28.80523 -81.88178
## 1231                 43 winter       L 28.80523 -81.88178
## 1232                 43 winter       L 28.80523 -81.88178
## 1233                 43 winter       L 28.79602 -81.87777
## 1234                 43 winter       L 28.79602 -81.87777
## 1235                 43 winter       L 28.79602 -81.87777
## 1236                 43 winter       L 28.79602 -81.87777
## 1237                 43 winter       L 28.79602 -81.87777
## 1238                 43 winter       L 28.79602 -81.87777
## 1239                 43 winter       L 28.79602 -81.87777
## 1240                 43 winter       L 28.79602 -81.87777
## 1241                 43 winter       L 28.79602 -81.87777
## 1242                 43 winter       L 28.79602 -81.87777
## 1243                 43 winter       L 28.79602 -81.87777
## 1244                 43 winter       S 28.79602 -81.87777
## 1245                 43 winter       L 28.79602 -81.87777
## 1246                 43 winter       L 28.79602 -81.87777
## 1247                 43 winter       L 28.79602 -81.87777
## 1248                 43 winter       L 28.79602 -81.87777
## 1249                 43 winter       L 28.79602 -81.87777
## 1250                 43 winter       L 28.79602 -81.87777
## 1251                 43 winter       L 28.79602 -81.87777
## 1252                 43 winter       L 28.79602 -81.87777
## 1253                 43 winter       L 28.79602 -81.87777
## 1254                 43 winter       L 28.79602 -81.87777
## 1255                 43 winter       L 28.79602 -81.87777
## 1256                 43 winter       L 28.79602 -81.87777
## 1257                 43 winter       L 28.79602 -81.87777
## 1258                 43 winter       L 28.79602 -81.87777
## 1259                 43 winter       L 28.79602 -81.87777
## 1260                 43 winter       L 28.79602 -81.87777
## 1261                 43 winter       L 28.79602 -81.87777
## 1262                 43 winter       L 28.79602 -81.87777
## 1263                 43 winter       L 28.79602 -81.87777
## 1264                 43 winter       L 28.79602 -81.87777
## 1265                 43 winter       L 28.79602 -81.87777
## 1266                 43 winter       L 28.79602 -81.87777
## 1267                 43 winter       L 28.79602 -81.87777
## 1268                 43 winter       L 28.79602 -81.87777
## 1269                 43 winter       L 28.79602 -81.87777
## 1270                 43 winter       L 28.79602 -81.87777
## 1271                 43 winter       L 28.79602 -81.87777
## 1272                 43 winter       L 28.79602 -81.87777
## 1273                 43 winter       L 28.79602 -81.87777
## 1274                 43 winter       L 28.79602 -81.87777
## 1275                 43 winter       L 28.79602 -81.87777
## 1276                 43 winter       L 28.79602 -81.87777
## 1277                 43 winter       L 28.79602 -81.87777
## 1278                 43 winter       S 24.97998 -80.54862
## 1279                 43 winter       L 24.97998 -80.54862
## 1280                 43 winter       L 24.97998 -80.54862
## 1281                 43 winter       S 24.97998 -80.54862
## 1282                 43 winter       L 24.97998 -80.54862
## 1283                 43 winter       L 24.97998 -80.54862
## 1284                 43 winter       S 24.97998 -80.54862
## 1285                 43 winter       L 24.97998 -80.54862
## 1286                 43 winter       L 24.97998 -80.54862
## 1287                 43 winter       S 24.97998 -80.54862
## 1288                 43 winter       L 24.97998 -80.54862
## 1289                 43 winter       S 24.97998 -80.54862
## 1290                 43 winter       S 24.97998 -80.54862
## 1291                 43 winter       S 24.97998 -80.54862
## 1292                 43 winter       S 24.97998 -80.54862
## 1293                 43 winter       L 24.97998 -80.54862
## 1294                 43 winter       L 24.97998 -80.54862
## 1295                 43 winter       L 24.97998 -80.54862
## 1296                 43 winter       L 24.97998 -80.54862
## 1297                 43 winter       L 24.97998 -80.54862
## 1298                 43 winter       S 24.97998 -80.54862
## 1299                 43 winter       S 24.97998 -80.54862
## 1300                 43 winter       L 24.97998 -80.54862
## 1301                 43 winter       S 24.97998 -80.54862
## 1302                 43 winter       S 24.97998 -80.54862
## 1303                 43 winter       L 24.97998 -80.54862
## 1304                 43 winter       L 24.97998 -80.54862
## 1305                 43 winter       S 24.97998 -80.54862
## 1306                 43 winter       L 24.97998 -80.54862
## 1307                 43 winter       L 24.97998 -80.54862
## 1308                 43 winter       L 24.97998 -80.54862
## 1309                 43 winter       L 24.97998 -80.54862
## 1310                 43 winter       L 24.97998 -80.54862
## 1311                 43 winter       L 24.97998 -80.54862
## 1312                 43 winter       S 24.97998 -80.54862
## 1313                 43 winter       S 24.97998 -80.54862
## 1314                 43 winter       L 24.97998 -80.54862
## 1315                 51 summer       L 29.66668 -82.35574
## 1316                 51 summer       L 29.66668 -82.35574
## 1317                 51 summer       L 29.66668 -82.35574
## 1318                 51 summer       S 29.66668 -82.35574
## 1319                 51 summer       L 29.66668 -82.35574
## 1320                 51 summer       L 29.66668 -82.35574
## 1321                 51 summer       S 29.66668 -82.35574
## 1322                 51 summer       L 29.66668 -82.35574
## 1323                 51 summer       L 29.66668 -82.35574
## 1324                 51 summer       L 29.66668 -82.35574
## 1325                 51 summer       L 29.66668 -82.35574
## 1326                 51 summer       L 29.66668 -82.35574
## 1327                 51 summer       L 29.66668 -82.35574
## 1328                 51 summer       L 29.66668 -82.35574
## 1329                 51 summer       L 29.66668 -82.35574
## 1330                 51 summer       L 29.66668 -82.35574
## 1331                 51 summer       S 29.66668 -82.35574
## 1332                 51 summer       L 29.66668 -82.35574
## 1333                 51 summer       L 29.66668 -82.35574
## 1334                 51 summer       L 29.66668 -82.35574
## 1335                 51 summer       L 29.66668 -82.35574
## 1336                 51 summer       L 29.66668 -82.35574
## 1337                 51 summer       L 29.66668 -82.35574
## 1338                 51 summer       L 29.66668 -82.35574
## 1339                 51 summer       L 29.66668 -82.35574
## 1340                 51 summer       S 29.66668 -82.35574
## 1341                 51 summer       L 29.66668 -82.35574
## 1342                 51 summer       L 29.66668 -82.35574
## 1343                 51 summer       L 29.66668 -82.35574
## 1344                 51 summer       L 29.66668 -82.35574
## 1345                 51 summer       L 29.66668 -82.35574
## 1346                 51 summer       L 29.66668 -82.35574
## 1347                 51 summer       L 29.66668 -82.35574
## 1348                 51 summer       L 29.66668 -82.35574
## 1349                 51 summer       L 29.66668 -82.35574
## 1350                 51 summer       L 29.66668 -82.35574
## 1351                 51 summer       L 29.66668 -82.35574
## 1352                 51 summer       L 29.66668 -82.35574
## 1353                 51 summer       L 29.66668 -82.35574
## 1354                 51 summer       L 29.66668 -82.35574
## 1355                 51 summer       L 29.66668 -82.35574
## 1356                 51 summer       L 29.66668 -82.35574
## 1357                 51 summer       L 29.66668 -82.35574
## 1358                 51 summer       S 29.66668 -82.35574
## 1359                 51 summer       L 29.66668 -82.35574
## 1360                 51 summer       L 29.66668 -82.35574
## 1361                 51 summer       L 29.66668 -82.35574
## 1362                 51 summer       L 29.66668 -82.35574
## 1363                 51 summer       L 29.66668 -82.35574
## 1364                 51 summer       L 29.66668 -82.35574
## 1365                 51 summer       L 29.66668 -82.35574
## 1366                 51 summer       L 29.66668 -82.35574
## 1367                 51 summer       L 29.66668 -82.35574
## 1368                 51 summer       L 29.66668 -82.35574
## 1369                 51 summer       L 29.66668 -82.35574
## 1370                 51 summer       L 29.66668 -82.35574
## 1371                 51 summer       L 29.66668 -82.35574
## 1372                 51 summer       L 29.66668 -82.35574
## 1373                 51 summer       L 29.66668 -82.35574
## 1374                 51 summer       S 29.66668 -82.35574
## 1375                 51 summer       L 25.49157 -80.48569
## 1376                 51 summer       S 25.49157 -80.48569
## 1377                 51 summer       L 25.49157 -80.48569
## 1378                 51 summer       L 25.49157 -80.48569
## 1379                 51 summer       S 25.49157 -80.48569
## 1380                 51 summer       L 25.49157 -80.48569
## 1381                 51 summer       L 25.49157 -80.48569
## 1382                 51 summer       L 25.49157 -80.48569
## 1383                 51 summer       L 25.49157 -80.48569
## 1384                 51 summer       L 25.49157 -80.48569
## 1385                 51 summer       L 25.49157 -80.48569
## 1386                 51 summer       L 25.49157 -80.48569
## 1387                 51 summer       L 25.49157 -80.48569
## 1388                 51 summer       L 25.49157 -80.48569
## 1389                 51 summer       L 25.49157 -80.48569
## 1390                 51 summer       L 25.49157 -80.48569
## 1391                 51 summer       L 25.49157 -80.48569
## 1392                 51 summer       L 25.49157 -80.48569
## 1393                 51 summer       S 25.49157 -80.48569
## 1394                 51 summer       L 25.49157 -80.48569
## 1395                 51 summer       L 25.49157 -80.48569
## 1396                 51 summer       L 25.49157 -80.48569
## 1397                 51 summer       L 25.49157 -80.48569
## 1398                 51 summer       L 25.49157 -80.48569
## 1399                 51 summer       L 25.49157 -80.48569
## 1400                 51 summer       L 25.49157 -80.48569
## 1401                 51 summer       L 25.49157 -80.48569
## 1402                 51 summer       L 25.49157 -80.48569
## 1403                 51 summer       S 25.49157 -80.48569
## 1404                 51 summer       L 25.49157 -80.48569
## 1405                 51 summer       L 25.49157 -80.48569
## 1406                 51 summer       L 25.49157 -80.48569
## 1407                 51 summer       L 25.49157 -80.48569
## 1408                 51 summer       S 25.49157 -80.48569
## 1409                 51 summer       L 25.49157 -80.48569
## 1410                 51 summer       L 25.49157 -80.48569
## 1411                 51 summer       L 25.49157 -80.48569
## 1412                 51 summer       L 25.49157 -80.48569
## 1413                 51 summer       L 25.49157 -80.48569
## 1414                 51 summer       L 25.49157 -80.48569
## 1415                 51 summer       L 25.49157 -80.48569
## 1416                 51 summer       L 25.49157 -80.48569
## 1417                 51 summer       L 25.49157 -80.48569
## 1418                 51 summer       S 25.49157 -80.48569
## 1419                 51 summer       L 25.49157 -80.48569
## 1420                 51 summer       L 25.49157 -80.48569
## 1421                 51 summer       L 25.49157 -80.48569
## 1422                 51 summer       L 25.49157 -80.48569
## 1423                 51 summer       L 25.49157 -80.48569
## 1424                 51 summer       L 25.49157 -80.48569
## 1425                 51 summer       L 25.49157 -80.48569
## 1426                 51 summer       L 25.49157 -80.48569
## 1427                 51 summer       L 25.49157 -80.48569
## 1428                 51 summer       L 25.49157 -80.48569
## 1429                 51 summer       L 25.49157 -80.48569
## 1430                 51 summer       L 25.49157 -80.48569
## 1431                 51 summer       L 25.49157 -80.48569
## 1432                 51 summer       L 25.49157 -80.48569
## 1433                 51 summer       L 25.49157 -80.48569
## 1434                 51 summer       L 25.49157 -80.48569
## 1435                 51 summer       L 25.49157 -80.48569
## 1436                 51 summer       L 25.49157 -80.48569
## 1437                 51 summer       L 25.49157 -80.48569
## 1438                 51 summer       L 25.49157 -80.48569
## 1439                 51 summer       L 25.49157 -80.48569
## 1440                 51 summer       L 25.49157 -80.48569
## 1441                 51 summer       L 25.49157 -80.48569
## 1442                 51 summer       L 25.49157 -80.48569
## 1443                 51 summer       L 25.49157 -80.48569
## 1444                 51 summer       L 25.49157 -80.48569
## 1445                 51 summer       L 25.49157 -80.48569
## 1446                 51 summer       L 25.49157 -80.48569
## 1447                 51 summer       L 25.49157 -80.48569
## 1448                 51 summer       L 25.49157 -80.48569
## 1449                 51 summer       L 25.49157 -80.48569
## 1450                 51 summer       L 25.49157 -80.48569
## 1451                 51 summer       L 25.49157 -80.48569
## 1452                 51 summer       L 25.49157 -80.48569
## 1453                 51 summer       L 25.49157 -80.48569
## 1454                 51 summer       L 25.49157 -80.48569
## 1455                 51 summer       L 25.49157 -80.48569
## 1456                 51 summer       L 25.49157 -80.48569
## 1457                 51 summer       L 25.49157 -80.48569
## 1458                 51 summer       L 25.49157 -80.48569
## 1459                 51 summer       L 25.49157 -80.48569
## 1460                 51 summer       L 25.49157 -80.48569
## 1461                 51 summer       L 25.49157 -80.48569
## 1462                 51 summer       L 25.49157 -80.48569
## 1463                 51 summer       L 25.49157 -80.48569
## 1464                 51 summer       L 25.49157 -80.48569
## 1465                 51 summer       L 25.49157 -80.48569
## 1466                 51 summer       L 25.49157 -80.48569
## 1467                 51 summer       L 25.49157 -80.48569
## 1468                 51 summer       L 25.49157 -80.48569
## 1469                 51 summer       L 25.49157 -80.48569
## 1470                 51 summer       L 25.49157 -80.48569
## 1471                 51 summer       L 25.49157 -80.48569
## 1472                 51 summer       L 25.49157 -80.48569
## 1473                 51 summer       L 25.49157 -80.48569
## 1474                 51 summer       L 25.49157 -80.48569
## 1475                 51 summer       L 25.49157 -80.48569
## 1476                 51 summer       L 25.49157 -80.48569
## 1477                 51 summer       L 25.49157 -80.48569
## 1478                 51 summer       L 25.49157 -80.48569
## 1479                 51 summer       L 25.49157 -80.48569
## 1480                 51 summer       L 25.49157 -80.48569
## 1481                 51 summer       L 25.49157 -80.48569
## 1482                 51 summer       L 25.49157 -80.48569
## 1483                 51 summer       L 25.49157 -80.48569
## 1484                 51 summer       L 25.49157 -80.48569
## 1485                 51 summer       L 25.49157 -80.48569
## 1486                 51 summer       L 25.49157 -80.48569
## 1487                 51 summer       L 25.49157 -80.48569
## 1488                 51 summer       L 25.49157 -80.48569
## 1489                 51 summer       L 25.49157 -80.48569
## 1490                 51 summer       L 25.49157 -80.48569
## 1491                 51 summer       L 25.49157 -80.48569
## 1492                 51 summer       L 25.49157 -80.48569
## 1493                 51 summer       L 25.49157 -80.48569
## 1494                 51 summer       L 25.49157 -80.48569
## 1495                 51 summer       L 25.49157 -80.48569
## 1496                 51 summer       L 25.49157 -80.48569
## 1497                 51 summer       L 25.49157 -80.48569
## 1498                 51 summer       L 25.49157 -80.48569
## 1499                 51 summer       L 25.49157 -80.48569
## 1500                 51 summer       L 25.49157 -80.48569
## 1501                 51 summer       L 25.49157 -80.48569
## 1502                 51 summer       L 25.12811 -80.40805
## 1503                 51 summer       L 25.12811 -80.40805
## 1504                 51 summer       L 25.12811 -80.40805
## 1505                 51 summer       S 25.12811 -80.40805
## 1506                 51 summer       L 25.12811 -80.40805
## 1507                 51 summer       L 25.12811 -80.40805
## 1508                 51 summer       L 25.12811 -80.40805
## 1509                 51 summer       L 25.12811 -80.40805
## 1510                 51 summer       L 25.12811 -80.40805
## 1511                 51 summer       L 25.12811 -80.40805
## 1512                 51 summer       L 25.12811 -80.40805
## 1513                 51 summer       S 25.12811 -80.40805
## 1514                 51 summer       L 25.12811 -80.40805
## 1515                 51 summer       L 25.12811 -80.40805
## 1516                 51 summer       L 25.12811 -80.40805
## 1517                 51 summer       L 25.12811 -80.40805
## 1518                 51 summer       L 25.12811 -80.40805
## 1519                 51 summer       L 25.12800 -80.40808
## 1520                 51 summer       L 25.12800 -80.40808
## 1521                 51 summer       L 25.12800 -80.40808
## 1522                 51 summer       L 25.12800 -80.40808
## 1523                 51 summer       L 25.12800 -80.40808
## 1524                 51 summer       S 25.12800 -80.40808
## 1525                 51 summer       S 25.12800 -80.40808
## 1526                 51 summer       L 25.12800 -80.40808
## 1527                 51 summer       L 25.12800 -80.40808
## 1528                 51 summer       L 25.12800 -80.40808
## 1529                 51 summer       L 25.12800 -80.40808
## 1530                 51 summer       L 25.12800 -80.40808
## 1531                 51 summer       L 25.12800 -80.40808
## 1532                 51 summer       L 25.12800 -80.40808
## 1533                 51 summer       L 25.12800 -80.40808
## 1534                 51 summer       L 25.12800 -80.40808
## 1535                 51 summer       S 25.12800 -80.40808
## 1536                 51 summer       L 25.12800 -80.40808
## 1537                 51 summer       L 25.19515 -80.34592
## 1538                 51 summer       L 25.19515 -80.34592
## 1539                 51 summer       L 25.19515 -80.34592
## 1540                 51 summer       L 25.19515 -80.34592
## 1541                 51 summer       S 25.19515 -80.34592
## 1542                 51 summer       L 25.19515 -80.34592
## 1543                 51 summer       L 25.19515 -80.34592
## 1544                 51 summer       L 25.19515 -80.34592
## 1545                 51 summer       S 25.19515 -80.34592
## 1546                 51 summer       S 25.19515 -80.34592
## 1547                 51 summer       L 25.19515 -80.34592
## 1548                 51 summer       L 25.19515 -80.34592
## 1549                 51 summer       S 25.19515 -80.34592
## 1550                 51 summer       L 25.19515 -80.34592
## 1551                 51 summer       S 25.19515 -80.34592
## 1552                 51 summer       S 25.19515 -80.34592
## 1553                 51 summer       L 25.19515 -80.34592
## 1554                 51 summer       L 25.19515 -80.34592
## 1555                 51 summer       S 25.19515 -80.34592
## 1556                 51 summer       L 25.19515 -80.34592
## 1557                 51 summer       L 25.19515 -80.34592
## 1558                 51 summer       L 25.19515 -80.34592
## 1559                 51 summer       L 25.19515 -80.34592
## 1560                 51 summer       S 25.19515 -80.34592
## 1561                 51 summer       L 25.19515 -80.34592
## 1562                 51 summer       S 25.19515 -80.34592
## 1563                 51 summer       S 25.19515 -80.34592
## 1564                 51 summer       S 25.19515 -80.34592
## 1565                 51 summer       S 25.19515 -80.34592
## 1566                 51 summer       S 25.19515 -80.34592
## 1567                 51 summer       S 25.19515 -80.34592
## 1568                 51 summer       L 25.19515 -80.34592
## 1569                 51 summer       S 25.19515 -80.34592
## 1570                 51 summer       L 25.19515 -80.34592
## 1571                 51 summer       S 25.19515 -80.34592
## 1572                 51 summer       S 25.19515 -80.34592
## 1573                 51 summer       L 25.19515 -80.34592
## 1574                 51 summer       L 25.19515 -80.34592
## 1575                 51 summer       L 25.19515 -80.34592
## 1576                 51 summer       L 25.19515 -80.34592
## 1577                 51 summer       L 25.19515 -80.34592
## 1578                 51 summer       L 25.19515 -80.34592
## 1579                 51 summer       L 25.19515 -80.34592
## 1580                 51 summer       L 25.19515 -80.34592
## 1581                 51 summer       L 25.19515 -80.34592
## 1582                 51 summer       L 25.19515 -80.34592
## 1583                 51 summer       L 25.19515 -80.34592
## 1584                 51 summer       L 25.19515 -80.34592
## 1585                 51 summer       L 25.19515 -80.34592
## 1586                 51 summer       S 25.19515 -80.34592
## 1587                 51 summer       L 25.19515 -80.34592
## 1588                 51 summer       S 25.19515 -80.34592
## 1589                 51 summer       L 25.19515 -80.34592
## 1590                 51 summer       L 25.19515 -80.34592
## 1591                 51 summer       L 25.19515 -80.34592
## 1592                 51 summer       L 25.19515 -80.34592
## 1593                 51 summer       S 25.19515 -80.34592
## 1594                 51 summer       L 27.93573 -81.57409
## 1595                 51 summer       L 27.93573 -81.57409
## 1596                 51 summer       L 27.93573 -81.57409
## 1597                 51 summer       L 27.93573 -81.57409
## 1598                 51 summer       L 27.93573 -81.57409
## 1599                 51 summer       L 27.93573 -81.57409
## 1600                 51 summer       L 27.93573 -81.57409
## 1601                 51 summer       L 27.93573 -81.57409
## 1602                 51 summer       L 27.93573 -81.57409
## 1603                 51 summer       L 27.93573 -81.57409
## 1604                 51 summer       L 27.93573 -81.57409
## 1605                 51 summer       L 27.93573 -81.57409
## 1606                 51 summer       L 27.93573 -81.57409
## 1607                 51 summer       L 27.93573 -81.57409
## 1608                 51 summer       L 27.93573 -81.57409
## 1609                 51 summer       S 27.93573 -81.57409
## 1610                 51 summer       L 27.93573 -81.57409
## 1611                 51 summer       S 27.93573 -81.57409
## 1612                 51 summer       L 27.93573 -81.57409
## 1613                 51 summer       L 27.93573 -81.57409
## 1614                 51 summer       L 27.93573 -81.57409
## 1615                 51 summer       L 27.93573 -81.57409
## 1616                 51 summer       L 27.93573 -81.57409
## 1617                 51 summer       L 27.93573 -81.57409
## 1618                 51 summer       L 27.93573 -81.57409
## 1619                 51 summer       S 27.93573 -81.57409
## 1620                 51 summer       L 27.93573 -81.57409
## 1621                 51 summer       L 27.93573 -81.57409
## 1622                 51 summer       L 27.93573 -81.57409
## 1623                 51 summer       L 27.93573 -81.57409
## 1624                 51 summer       L 27.93573 -81.57409
## 1625                 51 summer       L 27.93573 -81.57409
## 1626                 51 summer       L 27.93573 -81.57409
## 1627                 51 summer       L 27.93573 -81.57409
## 1628                 51 summer       S 27.93573 -81.57409
## 1629                 51 summer       S 27.93573 -81.57409
## 1630                 51 summer       L 27.93573 -81.57409
## 1631                 51 summer       L 27.93573 -81.57409
## 1632                 51 summer       L 27.93573 -81.57409
## 1633                 51 summer       S 27.93573 -81.57409
## 1634                 51 summer       S 27.93573 -81.57409
## 1635                 51 summer       L 27.93573 -81.57409
## 1636                 51 summer       L 27.93573 -81.57409
## 1637                 51 summer       S 27.93573 -81.57409
## 1638                 51 summer       S 27.93573 -81.57409
## 1639                 51 summer       L 27.93573 -81.57409
## 1640                 51 summer       S 27.93573 -81.57409
## 1641                 51 summer       S 27.93573 -81.57409
## 1642                 51 summer       L 27.93573 -81.57409
## 1643                 51 summer       S 27.93573 -81.57409
## 1644                 51 summer       L 27.93573 -81.57409
## 1645                 51 summer       S 27.93573 -81.57409
## 1646                 51 summer       L 27.93573 -81.57409
## 1647                 51 summer       L 27.93573 -81.57409
## 1648                 51 summer       S 27.93573 -81.57409
## 1649                 51 summer       L 27.93573 -81.57409
## 1650                 51 summer       L 27.93573 -81.57409
## 1651                 51 summer       S 27.93573 -81.57409
## 1652                 51 summer       L 27.93573 -81.57409
## 1653                 51 summer       L 27.93573 -81.57409
## 1654                 51 summer       S 27.93573 -81.57409
## 1655                 51 summer       L 27.93573 -81.57409
## 1656                 51 summer       S 27.93573 -81.57409
## 1657                 51 summer       S 27.93573 -81.57409
## 1658                 51 summer       S 27.93573 -81.57409
## 1659                 51 summer       S 27.93573 -81.57409
## 1660                 51 summer       L 27.93573 -81.57409
## 1661                 51 summer       S 27.93573 -81.57409
## 1662                 51 summer       L 27.93573 -81.57409
## 1663                 51 summer       L 27.93573 -81.57409
## 1664                 51 summer       L 27.93573 -81.57409
## 1665                 51 summer       L 27.93573 -81.57409
## 1666                 51 summer       L 27.93573 -81.57409
## 1667                 51 summer       S 27.93573 -81.57409
## 1668                 51 summer       S 27.93573 -81.57409
## 1669                 51 summer       L 27.93573 -81.57409
## 1670                 51 summer       S 27.93573 -81.57409
## 1671                 51 summer       S 27.93573 -81.57409
## 1672                 51 summer       S 27.93573 -81.57409
## 1673                 51 summer       L 27.93573 -81.57409
## 1674                 51 summer       S 27.93573 -81.57409
## 1675                 51 summer       L 27.93573 -81.57409
## 1676                 51 summer       S 27.93573 -81.57409
## 1677                 51 summer       S 27.93573 -81.57409
## 1678                 51 summer       S 27.93573 -81.57409
## 1679                 51 summer       S 27.93573 -81.57409
## 1680                 51 summer       L 27.93573 -81.57409
## 1681                 51 summer       S 27.93573 -81.57409
## 1682                 51 summer       L 27.93573 -81.57409
## 1683                 51 summer       L 27.93573 -81.57409
## 1684                 51 summer       S 27.93573 -81.57409
## 1685                 51 summer       L 28.80530 -81.88184
## 1686                 51 summer       L 28.80530 -81.88184
## 1687                 51 summer       S 28.80530 -81.88184
## 1688                 51 summer       S 28.80530 -81.88184
## 1689                 51 summer       S 28.80530 -81.88184
## 1690                 51 summer       L 28.80530 -81.88184
## 1691                 51 summer       L 28.80530 -81.88184
## 1692                 51 summer       L 28.80530 -81.88184
## 1693                 51 summer       L 28.80530 -81.88184
## 1694                 51 summer       S 28.80530 -81.88184
## 1695                 51 summer       L 28.80530 -81.88184
## 1696                 51 summer       L 28.80530 -81.88184
## 1697                 51 summer       L 28.80530 -81.88184
## 1698                 51 summer       L 28.80530 -81.88184
## 1699                 51 summer       S 28.80530 -81.88184
## 1700                 51 summer       S 28.80530 -81.88184
## 1701                 51 summer       L 28.80530 -81.88184
## 1702                 51 summer       S 28.80530 -81.88184
## 1703                 51 summer       L 28.80530 -81.88184
## 1704                 51 summer       L 28.80530 -81.88184
## 1705                 51 summer       L 28.80530 -81.88184
## 1706                 51 summer       L 28.80530 -81.88184
## 1707                 51 summer       L 28.80530 -81.88184
## 1708                 51 summer       S 28.80530 -81.88184
## 1709                 51 summer       L 28.80530 -81.88184
## 1710                 51 summer       L 28.80530 -81.88184
## 1711                 51 summer       S 28.80530 -81.88184
## 1712                 51 summer       L 28.80530 -81.88184
## 1713                 51 summer       L 28.80530 -81.88184
## 1714                 51 summer       L 28.80530 -81.88184
## 1715                 51 summer       L 28.80530 -81.88184
## 1716                 51 summer       L 28.80530 -81.88184
## 1717                 51 summer       L 28.80530 -81.88184
## 1718                 51 summer       S 28.80530 -81.88184
## 1719                 51 summer       S 28.80530 -81.88184
## 1720                 51 summer       L 28.80530 -81.88184
## 1721                 51 summer       L 28.80530 -81.88184
## 1722                 51 summer       S 28.80530 -81.88184
## 1723                 51 summer       L 28.80530 -81.88184
## 1724                 51 summer       L 28.80530 -81.88184
## 1725                 51 summer       S 28.80530 -81.88184
## 1726                 51 summer       L 28.80530 -81.88184
## 1727                 51 summer       L 28.80530 -81.88184
## 1728                 51 summer       L 28.80530 -81.88184
## 1729                 51 summer       S 28.80530 -81.88184
## 1730                 51 summer       S 28.80530 -81.88184
## 1731                 51 summer       L 28.80530 -81.88184
## 1732                 51 summer       L 28.80530 -81.88184
## 1733                 51 summer       L 28.80530 -81.88184
## 1734                 51 summer       S 28.80530 -81.88184
## 1735                 51 summer       S 28.80530 -81.88184
## 1736                 51 summer       S 28.80530 -81.88184
## 1737                 51 summer       S 28.80530 -81.88184
## 1738                 51 summer       S 28.80530 -81.88184
## 1739                 51 summer       S 28.80530 -81.88184
## 1740                 51 summer       S 28.80530 -81.88184
## 1741                 51 summer       L 28.80530 -81.88184
## 1742                 51 summer       S 28.80530 -81.88184
## 1743                 64   fall       L 29.66648 -82.35720
## 1744                 64   fall       L 29.66648 -82.35720
## 1745                 64   fall       L 29.66648 -82.35720
## 1746                 64   fall       L 29.66648 -82.35720
## 1747                 64   fall       L 29.66648 -82.35720
## 1748                 64   fall       L 29.66648 -82.35720
## 1749                 64   fall       L 29.66648 -82.35720
## 1750                 64   fall       L 29.66648 -82.35720
## 1751                 64   fall       L 29.66648 -82.35720
## 1752                 64   fall       L 29.66648 -82.35720
## 1753                 64   fall       L 29.66648 -82.35720
## 1754                 64   fall       L 29.66648 -82.35720
## 1755                 64   fall       L 29.66648 -82.35720
## 1756                 64   fall       L 29.66648 -82.35720
## 1757                 64   fall       L 29.66648 -82.35720
## 1758                 64   fall       L 29.66648 -82.35720
## 1759                 64   fall       S 29.66648 -82.35720
## 1760                 64   fall       L 29.66648 -82.35720
## 1761                 64   fall       L 29.66648 -82.35720
## 1762                 64   fall       L 29.66648 -82.35720
## 1763                 64   fall       L 29.66648 -82.35720
## 1764                 64   fall       L 29.66648 -82.35720
## 1765                 64   fall       L 29.66648 -82.35720
## 1766                 64   fall       L 29.66648 -82.35720
## 1767                 64   fall       L 29.66648 -82.35720
## 1768                 64   fall       L 29.66648 -82.35720
## 1769                 64   fall       L 29.66648 -82.35720
## 1770                 64   fall       L 29.66648 -82.35720
## 1771                 64   fall       L 29.66648 -82.35720
## 1772                 64   fall       L 29.66648 -82.35720
## 1773                 64   fall       L 29.66648 -82.35720
## 1774                 64   fall       L 29.66648 -82.35720
## 1775                 64   fall       L 29.66648 -82.35720
## 1776                 64   fall       L 29.66648 -82.35720
## 1777                 64   fall       L 29.66648 -82.35720
## 1778                 64   fall       L 29.66648 -82.35720
## 1779                 64   fall       L 29.66648 -82.35720
## 1780                 64   fall       L 29.66648 -82.35720
## 1781                 64   fall       L 29.66648 -82.35720
## 1782                 64   fall       L 29.66648 -82.35720
## 1783                 64   fall       L 29.66648 -82.35720
## 1784                 64   fall       L 29.66648 -82.35720
## 1785                 64   fall       L 29.66648 -82.35720
## 1786                 64   fall       L 29.66648 -82.35720
## 1787                 64   fall       L 29.66648 -82.35720
## 1788                 64   fall       L 29.66648 -82.35720
## 1789                 64   fall       L 29.66648 -82.35720
## 1790                 64   fall       L 29.66648 -82.35720
## 1791                 64   fall       L 29.66648 -82.35720
## 1792                 64   fall       L 29.66648 -82.35720
## 1793                 64   fall       L 29.66648 -82.35720
## 1794                 64   fall       L 29.66648 -82.35720
## 1795                 64   fall       L 29.66648 -82.35720
## 1796                 64   fall       L 29.66648 -82.35720
## 1797                 64   fall       L 29.66648 -82.35720
## 1798                 64   fall       S 29.66648 -82.35720
## 1799                 64   fall       L 29.66648 -82.35720
## 1800                 64   fall       L 29.66648 -82.35720
## 1801                 64   fall       L 29.66648 -82.35720
## 1802                 64   fall       L 29.66648 -82.35720
## 1803                 64   fall       S 29.66648 -82.35720
## 1804                 64   fall       L 29.66648 -82.35720
## 1805                 64   fall       L 29.66648 -82.35720
## 1806                 64   fall       L 29.66648 -82.35720
## 1807                 64   fall       L 25.19515 -80.34592
## 1808                 64   fall       L 25.19515 -80.34592
## 1809                 64   fall       L 25.19515 -80.34592
## 1810                 64   fall       L 25.19515 -80.34592
## 1811                 64   fall       S 25.19515 -80.34592
## 1812                 64   fall       S 25.19515 -80.34592
## 1813                 64   fall       S 25.19515 -80.34592
## 1814                 64   fall       S 25.19515 -80.34592
## 1815                 64   fall       L 25.19515 -80.34592
## 1816                 64   fall       S 25.19515 -80.34592
## 1817                 64   fall       S 25.19515 -80.34592
## 1818                 64   fall       L 25.19515 -80.34592
## 1819                 64   fall       S 25.19515 -80.34592
## 1820                 64   fall       S 25.19515 -80.34592
## 1821                 64   fall       L 25.19515 -80.34592
## 1822                 64   fall       S 25.19515 -80.34592
## 1823                 64   fall       L 25.19515 -80.34592
## 1824                 64   fall       S 25.19515 -80.34592
## 1825                 64   fall       L 25.19515 -80.34592
## 1826                 64   fall       L 25.19515 -80.34592
## 1827                 64   fall       L 25.19515 -80.34592
## 1828                 64   fall       S 25.19515 -80.34592
## 1829                 64   fall       S 25.19515 -80.34592
## 1830                 64   fall       L 25.19515 -80.34592
## 1831                 64   fall       S 25.19515 -80.34592
## 1832                 64   fall       L 25.19515 -80.34592
## 1833                 64   fall       L 25.19515 -80.34592
## 1834                 64   fall       S 25.19515 -80.34592
## 1835                 64   fall       S 25.19515 -80.34592
## 1836                 64   fall       S 25.19515 -80.34592
## 1837                 64   fall       L 25.19515 -80.34592
## 1838                 64   fall       S 25.19515 -80.34592
## 1839                 64   fall       L 25.19515 -80.34592
## 1840                 64   fall       L 25.19515 -80.34592
## 1841                 64   fall       L 25.19515 -80.34592
## 1842                 64   fall       S 25.19515 -80.34592
## 1843                 64   fall       S 25.19515 -80.34592
## 1844                 64   fall       S 25.19515 -80.34592
## 1845                 64   fall       S 25.19515 -80.34592
## 1846                 64   fall       S 25.19515 -80.34592
## 1847                 64   fall       L 25.19515 -80.34592
## 1848                 64   fall       S 25.19515 -80.34592
## 1849                 64   fall       L 25.19515 -80.34592
## 1850                 64   fall       L 25.19515 -80.34592
## 1851                 64   fall       L 25.19515 -80.34592
## 1852                 64   fall       S 25.19515 -80.34592
## 1853                 64   fall       L 25.19515 -80.34592
## 1854                 64   fall       L 25.19515 -80.34592
## 1855                 64   fall       L 25.19515 -80.34592
## 1856                 64   fall       L 25.19515 -80.34592
## 1857                 64   fall       S 25.19515 -80.34592
## 1858                 64   fall       S 25.19515 -80.34592
## 1859                 64   fall       L 25.19515 -80.34592
## 1860                 64   fall       S 25.19515 -80.34592
## 1861                 64   fall       S 25.19515 -80.34592
## 1862                 64   fall       L 25.19515 -80.34592
## 1863                 64   fall       L 25.19515 -80.34592
## 1864                 64   fall       S 25.19515 -80.34592
## 1865                 64   fall       L 25.19515 -80.34592
## 1866                 64   fall       S 25.19515 -80.34592
## 1867                 64   fall       L 25.19515 -80.34592
## 1868                 64   fall       S 25.19515 -80.34592
## 1869                 64   fall       L 25.19515 -80.34592
## 1870                 64   fall       S 25.19515 -80.34592
## 1871                 64   fall       L 25.19515 -80.34592
## 1872                 64   fall       S 25.19515 -80.34592
## 1873                 64   fall       S 25.19515 -80.34592
## 1874                 64   fall       S 25.19515 -80.34592
## 1875                 64   fall       L 27.93575 -81.57412
## 1876                 64   fall       L 27.93575 -81.57412
## 1877                 64   fall       L 27.93575 -81.57412
## 1878                 64   fall       L 27.93575 -81.57412
## 1879                 64   fall       L 27.93575 -81.57412
## 1880                 64   fall       L 27.93575 -81.57412
## 1881                 64   fall       L 27.93575 -81.57412
## 1882                 64   fall       S 27.93575 -81.57412
## 1883                 64   fall       L 27.93575 -81.57412
## 1884                 64   fall       L 27.93575 -81.57412
## 1885                 64   fall       L 27.93575 -81.57412
## 1886                 64   fall       L 27.93575 -81.57412
## 1887                 64   fall       L 27.93575 -81.57412
## 1888                 64   fall       L 27.93575 -81.57412
## 1889                 64   fall       L 27.93575 -81.57412
## 1890                 64   fall       L 27.93575 -81.57412
## 1891                 64   fall       L 27.93575 -81.57412
## 1892                 64   fall       L 27.93575 -81.57412
## 1893                 64   fall       L 27.93575 -81.57412
## 1894                 64   fall       L 27.93575 -81.57412
## 1895                 64   fall       L 27.93575 -81.57412
## 1896                 64   fall       L 27.93575 -81.57412
## 1897                 64   fall       L 27.93575 -81.57412
## 1898                 64   fall       L 27.93575 -81.57412
## 1899                 64   fall       L 27.93575 -81.57412
## 1900                 64   fall       S 27.93575 -81.57412
## 1901                 64   fall       L 27.93575 -81.57412
## 1902                 64   fall       L 27.93575 -81.57412
## 1903                 64   fall       S 27.93575 -81.57412
## 1904                 64   fall       L 27.93575 -81.57412
## 1905                 64   fall       L 27.93575 -81.57412
## 1906                 64   fall       L 27.93575 -81.57412
## 1907                 64   fall       L 27.93575 -81.57412
## 1908                 64   fall       L 27.93575 -81.57412
## 1909                 64   fall       L 27.93575 -81.57412
## 1910                 64   fall       L 27.93575 -81.57412
## 1911                 64   fall       L 27.93575 -81.57412
## 1912                 64   fall       L 27.93575 -81.57412
## 1913                 64   fall       L 27.93575 -81.57412
## 1914                 64   fall       L 27.93575 -81.57412
## 1915                 64   fall       L 28.81527 -81.88217
## 1916                 72 spring       L 29.66679 -82.35761
## 1917                 72 spring       L 29.66679 -82.35761
## 1918                 72 spring       L 29.66679 -82.35761
## 1919                 72 spring       L 29.66679 -82.35761
## 1920                 72 spring       L 29.66679 -82.35761
## 1921                 72 spring       S 29.66679 -82.35761
## 1922                 72 spring       L 29.66679 -82.35761
## 1923                 72 spring       L 29.66679 -82.35761
## 1924                 72 spring       L 29.66679 -82.35761
## 1925                 72 spring       L 29.66197 -82.34728
## 1926                 72 spring       L 29.66197 -82.34728
## 1927                 72 spring       L 29.66197 -82.34728
## 1928                 72 spring       L 29.66197 -82.34728
## 1929                 72 spring       L 29.66197 -82.34728
## 1930                 72 spring       L 29.66197 -82.34728
## 1931                 72 spring       L 29.66197 -82.34728
## 1932                 72 spring       L 29.66197 -82.34728
## 1933                 72 spring       L 29.66197 -82.34728
## 1934                 72 spring       L 29.66197 -82.34728
## 1935                 72 spring       S 29.66197 -82.34728
## 1936                 72 spring       L 29.66197 -82.34728
## 1937                 72 spring       L 29.66197 -82.34728
## 1938                 72 spring       L 29.66197 -82.34728
## 1939                 72 spring       L 29.66197 -82.34728
## 1940                 72 spring       L 29.66197 -82.34728
## 1941                 72 spring       L 29.66197 -82.34728
## 1942                 72 spring       L 29.66197 -82.34728
## 1943                 72 spring       L 29.66197 -82.34728
## 1944                 72 spring       L 29.66197 -82.34728
## 1945                 72 spring       L 29.66197 -82.34728
## 1946                 72 spring       L 29.66197 -82.34728
## 1947                 72 spring       L 29.66197 -82.34728
## 1948                 72 spring       L 29.66197 -82.34728
## 1949                 72 spring       L 29.66197 -82.34728
## 1950                 72 spring       L 29.66197 -82.34728
## 1951                 72 spring       L 29.66197 -82.34728
## 1952                 72 spring       L 29.66197 -82.34728
## 1953                 72 spring       L 29.66197 -82.34728
## 1954                 72 spring       L 29.66197 -82.34728
## 1955                 72 spring       L 29.66197 -82.34728
## 1956                 72 spring       L 29.66197 -82.34728
## 1957                 72 spring       L 29.66197 -82.34728
## 1958                 72 spring       L 29.66197 -82.34728
## 1959                 72 spring       L 29.66197 -82.34728
## 1960                 72 spring       L 29.66197 -82.34728
## 1961                 72 spring       L 29.66197 -82.34728
## 1962                 72 spring       L 29.66197 -82.34728
## 1963                 72 spring       L 29.66197 -82.34728
## 1964                 72 spring       L 29.66197 -82.34728
## 1965                 72 spring       S 25.48862 -80.48976
## 1966                 72 spring       L 25.48862 -80.48976
## 1967                 72 spring       L 25.48862 -80.48976
## 1968                 72 spring       L 25.48862 -80.48976
## 1969                 72 spring       L 25.48862 -80.48976
## 1970                 72 spring       L 25.48862 -80.48976
## 1971                 72 spring       S 25.48862 -80.48976
## 1972                 72 spring       L 25.48862 -80.48976
## 1973                 72 spring       L 25.48862 -80.48976
## 1974                 72 spring       S 25.48862 -80.48976
## 1975                 72 spring       S 25.48862 -80.48976
## 1976                 72 spring       S 25.48862 -80.48976
## 1977                 72 spring       L 25.48862 -80.48976
## 1978                 72 spring       S 25.48862 -80.48976
## 1979                 72 spring       S 25.48862 -80.48976
## 1980                 72 spring       L 25.48862 -80.48976
## 1981                 72 spring       L 25.48862 -80.48976
## 1982                 72 spring       S 25.48862 -80.48976
## 1983                 72 spring       S 25.12848 -80.40754
## 1984                 72 spring       S 25.12848 -80.40754
## 1985                 72 spring       S 25.12848 -80.40754
## 1986                 72 spring       L 25.12848 -80.40754
## 1987                 72 spring       L 25.12848 -80.40754
## 1988                 72 spring       L 25.12848 -80.40754
## 1989                 72 spring       L 25.12848 -80.40754
## 1990                 72 spring       S 25.12848 -80.40754
## 1991                 72 spring       S 25.12848 -80.40754
## 1992                 72 spring       S 25.12848 -80.40754
## 1993                 72 spring       S 25.12848 -80.40754
## 1994                 72 spring       S 25.12848 -80.40754
## 1995                 72 spring       S 25.12848 -80.40754
## 1996                 72 spring       L 25.12848 -80.40754
## 1997                 72 spring       S 25.12848 -80.40754
## 1998                 72 spring       S 25.12848 -80.40754
## 1999                 72 spring       S 25.12848 -80.40754
## 2000                 72 spring       L 25.12848 -80.40754
## 2001                 72 spring       L 25.12848 -80.40754
## 2002                 72 spring       L 25.12848 -80.40754
## 2003                 72 spring       L 25.12848 -80.40754
## 2004                 72 spring       S 25.12848 -80.40754
## 2005                 72 spring       L 25.12848 -80.40754
## 2006                 72 spring       L 25.12848 -80.40754
## 2007                 72 spring       S 25.12848 -80.40754
## 2008                 72 spring       L 25.12848 -80.40754
## 2009                 72 spring       S 25.12848 -80.40754
## 2010                 72 spring       S 25.12848 -80.40754
## 2011                 72 spring       S 25.12848 -80.40754
## 2012                 72 spring       S 25.12848 -80.40754
## 2013                 72 spring       L 25.12848 -80.40754
## 2014                 72 spring       S 25.12848 -80.40754
## 2015                 72 spring       L 25.12848 -80.40754
## 2016                 72 spring       S 25.12848 -80.40754
## 2017                 72 spring       S 25.12848 -80.40754
## 2018                 72 spring       S 25.12848 -80.40754
## 2019                 72 spring       L 25.12848 -80.40754
## 2020                 72 spring       S 25.12848 -80.40754
## 2021                 72 spring       S 25.12848 -80.40754
## 2022                 72 spring       S 25.12848 -80.40754
## 2023                 72 spring       S 25.12848 -80.40754
## 2024                 72 spring       L 25.12848 -80.40754
## 2025                 72 spring       S 25.12848 -80.40754
## 2026                 72 spring       S 25.12848 -80.40754
## 2027                 72 spring       S 25.12848 -80.40754
## 2028                 72 spring       S 25.12848 -80.40754
## 2029                 72 spring       L 25.12848 -80.40754
## 2030                 72 spring       L 25.12848 -80.40754
## 2031                 72 spring       L 25.12848 -80.40754
## 2032                 72 spring       S 25.12848 -80.40754
## 2033                 72 spring       S 25.12848 -80.40754
## 2034                 72 spring       L 25.12848 -80.40754
## 2035                 72 spring       S 25.12848 -80.40754
## 2036                 72 spring       L 25.12848 -80.40754
## 2037                 72 spring       S 25.12848 -80.40754
## 2038                 72 spring       L 25.12848 -80.40754
## 2039                 72 spring       S 25.12848 -80.40754
## 2040                 72 spring       S 25.12848 -80.40754
## 2041                 72 spring       S 25.12848 -80.40754
## 2042                 72 spring       L 25.12848 -80.40754
## 2043                 72 spring       S 25.12848 -80.40754
## 2044                 72 spring       S 25.12848 -80.40754
## 2045                 72 spring       S 25.12848 -80.40754
## 2046                 72 spring       S 25.12848 -80.40754
## 2047                 72 spring       S 25.12848 -80.40754
## 2048                 72 spring       S 25.12848 -80.40754
## 2049                 72 spring       S 25.12848 -80.40754
## 2050                 72 spring       L 25.12848 -80.40754
## 2051                 72 spring       S 25.12848 -80.40754
## 2052                 72 spring       S 25.12848 -80.40754
## 2053                 72 spring       L 25.12848 -80.40754
## 2054                 72 spring       S 25.12848 -80.40754
## 2055                 72 spring       S 25.12848 -80.40754
## 2056                 72 spring       L 25.12848 -80.40754
## 2057                 72 spring       S 25.12848 -80.40754
## 2058                 72 spring       S 25.12848 -80.40754
## 2059                 72 spring       L 27.29866 -81.36612
## 2060                 72 spring       L 27.29866 -81.36612
## 2061                 72 spring       L 27.29866 -81.36612
## 2062                 72 spring       L 27.29866 -81.36612
## 2063                 72 spring       L 27.29866 -81.36612
## 2064                 72 spring       L 27.29866 -81.36612
## 2065                 72 spring       L 27.29866 -81.36612
## 2066                 72 spring       L 27.29866 -81.36612
## 2067                 72 spring       S 27.29866 -81.36612
## 2068                 72 spring       L 27.29866 -81.36612
## 2069                 72 spring       S 27.29866 -81.36612
## 2070                 72 spring       L 27.29866 -81.36612
## 2071                 72 spring       S 27.29866 -81.36612
## 2072                 72 spring       L 27.29866 -81.36612
## 2073                 72 spring       L 27.29866 -81.36612
## 2074                 72 spring       L 27.29866 -81.36612
## 2075                 72 spring       L 27.29866 -81.36612
## 2076                 72 spring       S 27.29866 -81.36612
## 2077                 72 spring       L 27.29866 -81.36612
## 2078                 72 spring       S 27.29866 -81.36612
## 2079                 72 spring       L 27.29866 -81.36612
## 2080                 72 spring       L 27.29866 -81.36612
## 2081                 72 spring       L 27.29866 -81.36612
## 2082                 72 spring       L 27.29866 -81.36612
## 2083                 72 spring       L 27.29866 -81.36612
## 2084                 72 spring       L 27.29866 -81.36612
## 2085                 72 spring       L 27.29866 -81.36612
## 2086                 72 spring       L 27.29866 -81.36612
## 2087                 72 spring       L 27.29866 -81.36612
## 2088                 72 spring       L 27.29866 -81.36612
## 2089                 72 spring       L 27.29866 -81.36612
## 2090                 72 spring       L 27.29866 -81.36612
## 2091                 72 spring       L 27.29866 -81.36612
## 2092                 72 spring       L 27.29866 -81.36612
## 2093                 72 spring       L 27.29866 -81.36612
## 2094                 72 spring       L 27.29866 -81.36612
## 2095                 72 spring       L 27.29866 -81.36612
## 2096                 72 spring       L 27.29866 -81.36612
## 2097                 72 spring       L 27.29866 -81.36612
## 2098                 72 spring       L 27.29866 -81.36612
## 2099                 72 spring       L 27.29866 -81.36612
## 2100                 72 spring       L 27.29866 -81.36612
## 2101                 72 spring       L 27.29866 -81.36612
## 2102                 72 spring       L 27.29866 -81.36612
## 2103                 72 spring       S 27.29866 -81.36612
## 2104                 72 spring       L 27.29866 -81.36612
## 2105                 72 spring       L 27.29866 -81.36612
## 2106                 72 spring       S 27.29866 -81.36612
## 2107                 72 spring       L 27.29866 -81.36612
## 2108                 72 spring       S 27.29866 -81.36612
## 2109                 72 spring       L 27.29866 -81.36612
## 2110                 72 spring       L 27.29866 -81.36612
## 2111                 72 spring       L 27.29866 -81.36612
## 2112                 72 spring       L 27.29866 -81.36612
## 2113                 72 spring       L 27.29866 -81.36612
## 2114                 72 spring       L 27.29866 -81.36612
## 2115                 72 spring       L 27.29866 -81.36612
## 2116                 72 spring       L 27.29866 -81.36612
## 2117                 72 spring       L 27.29866 -81.36612
## 2118                 72 spring       L 27.29866 -81.36612
## 2119                 72 spring       L 27.29866 -81.36612
## 2120                 72 spring       L 27.29866 -81.36612
## 2121                 72 spring       L 25.19515 -80.34592
## 2122                 72 spring       L 25.19515 -80.34592
## 2123                 72 spring       L 25.19515 -80.34592
## 2124                 72 spring       L 25.19515 -80.34592
## 2125                 72 spring       S 25.19515 -80.34592
## 2126                 72 spring       L 25.19515 -80.34592
## 2127                 72 spring       S 25.19515 -80.34592
## 2128                 72 spring       L 25.19515 -80.34592
## 2129                 72 spring       L 25.19515 -80.34592
## 2130                 72 spring       L 25.19515 -80.34592
## 2131                 72 spring       S 25.19515 -80.34592
## 2132                 72 spring       L 25.19515 -80.34592
## 2133                 72 spring       L 25.19515 -80.34592
## 2134                 72 spring       L 25.19515 -80.34592
## 2135                 72 spring       L 25.19515 -80.34592
## 2136                 72 spring       S 25.19515 -80.34592
## 2137                 72 spring       L 25.19515 -80.34592
## 2138                 72 spring       L 25.19515 -80.34592
## 2139                 72 spring       L 25.19515 -80.34592
## 2140                 72 spring       L 25.19515 -80.34592
## 2141                 72 spring       L 25.19515 -80.34592
## 2142                 72 spring       S 25.19515 -80.34592
## 2143                 72 spring       L 25.19515 -80.34592
## 2144                 72 spring       S 25.19515 -80.34592
## 2145                 72 spring       S 25.19515 -80.34592
## 2146                 72 spring       L 25.19515 -80.34592
## 2147                 72 spring       S 25.19515 -80.34592
## 2148                 72 spring       L 25.19515 -80.34592
## 2149                 72 spring       S 25.19515 -80.34592
## 2150                 72 spring       L 25.19515 -80.34592
## 2151                 72 spring       S 25.19515 -80.34592
## 2152                 72 spring       S 25.19515 -80.34592
## 2153                 72 spring       L 25.19515 -80.34592
## 2154                 72 spring       L 25.19515 -80.34592
## 2155                 72 spring       L 25.19515 -80.34592
## 2156                 72 spring       L 25.19515 -80.34592
## 2157                 72 spring       L 25.19515 -80.34592
## 2158                 72 spring       L 25.19515 -80.34592
## 2159                 72 spring       L 25.19515 -80.34592
## 2160                 72 spring       S 25.19515 -80.34592
## 2161                 72 spring       L 25.19515 -80.34592
## 2162                 72 spring       L 25.19515 -80.34592
## 2163                 72 spring       S 25.19515 -80.34592
## 2164                 72 spring       S 25.19515 -80.34592
## 2165                 72 spring       L 25.19515 -80.34592
## 2166                 72 spring       L 25.19515 -80.34592
## 2167                 72 spring       L 25.19515 -80.34592
## 2168                 72 spring       L 25.19515 -80.34592
## 2169                 72 spring       S 25.19515 -80.34592
## 2170                 72 spring       L 25.19515 -80.34592
## 2171                 72 spring       L 25.19515 -80.34592
## 2172                 72 spring       S 25.19515 -80.34592
## 2173                 72 spring       L 25.19515 -80.34592
## 2174                 72 spring       S 25.19515 -80.34592
## 2175                 72 spring       L 25.19515 -80.34592
## 2176                 72 spring       L 25.19515 -80.34592
## 2177                 72 spring       L 25.19515 -80.34592
## 2178                 72 spring       S 25.19515 -80.34592
## 2179                 72 spring       S 25.19515 -80.34592
## 2180                 72 spring       S 25.19515 -80.34592
## 2181                 72 spring       S 25.19515 -80.34592
## 2182                 72 spring       S 25.19515 -80.34592
## 2183                 72 spring       S 25.19515 -80.34592
## 2184                 72 spring       L 25.19515 -80.34592
## 2185                 72 spring       L 25.19515 -80.34592
## 2186                 72 spring       S 25.19515 -80.34592
## 2187                 72 spring       L 25.19515 -80.34592
## 2188                 72 spring       L 25.19515 -80.34592
## 2189                 72 spring       L 25.19515 -80.34592
## 2190                 72 spring       L 25.19515 -80.34592
## 2191                 72 spring       S 25.19515 -80.34592
## 2192                 72 spring       L 25.19515 -80.34592
## 2193                 72 spring       S 25.19515 -80.34592
## 2194                 72 spring       S 25.19515 -80.34592
## 2195                 72 spring       L 25.19515 -80.34592
## 2196                 72 spring       L 25.19515 -80.34592
## 2197                 72 spring       S 25.19515 -80.34592
## 2198                 72 spring       L 25.19515 -80.34592
## 2199                 72 spring       L 25.19515 -80.34592
## 2200                 72 spring       S 25.19515 -80.34592
## 2201                 72 spring       L 25.19515 -80.34592
## 2202                 72 spring       S 25.19515 -80.34592
## 2203                 72 spring       L 25.19515 -80.34592
## 2204                 72 spring       S 25.19515 -80.34592
## 2205                 72 spring       S 25.19515 -80.34592
## 2206                 72 spring       L 25.19515 -80.34592
## 2207                 72 spring       L 25.19515 -80.34592
## 2208                 72 spring       L 25.19515 -80.34592
## 2209                 72 spring       S 25.19515 -80.34592
## 2210                 72 spring       S 25.19515 -80.34592
## 2211                 72 spring       S 25.19515 -80.34592
## 2212                 72 spring       S 25.19515 -80.34592
## 2213                 72 spring       S 25.19515 -80.34592
## 2214                 72 spring       L 25.19515 -80.34592
## 2215                 72 spring       S 25.19515 -80.34592
## 2216                 72 spring       S 25.19515 -80.34592
## 2217                 72 spring       S 25.19515 -80.34592
## 2218                 72 spring       S 25.19515 -80.34592
## 2219                 72 spring       L 25.19515 -80.34592
## 2220                 72 spring       S 25.19515 -80.34592
## 2221                 72 spring       S 25.19515 -80.34592
## 2222                 72 spring       S 25.19515 -80.34592
## 2223                 72 spring       L 25.19515 -80.34592
## 2224                 72 spring       L 25.19515 -80.34592
## 2225                 72 spring       S 25.19515 -80.34592
## 2226                 72 spring       L 25.19515 -80.34592
## 2227                 72 spring       S 25.19515 -80.34592
## 2228                 72 spring       S 25.19515 -80.34592
## 2229                 72 spring       S 25.19515 -80.34592
## 2230                 72 spring       S 25.19515 -80.34592
## 2231                 72 spring       S 25.19515 -80.34592
## 2232                 72 spring       S 25.19515 -80.34592
## 2233                 72 spring       L 25.19515 -80.34592
## 2234                 72 spring       S 25.19515 -80.34592
## 2235                 72 spring       S 25.19515 -80.34592
## 2236                 72 spring       L 25.19515 -80.34592
## 2237                 72 spring       L 25.19515 -80.34592
## 2238                 72 spring       S 25.19515 -80.34592
## 2239                 72 spring       L 25.19515 -80.34592
## 2240                 72 spring       L 25.19515 -80.34592
## 2241                 72 spring       S 25.19515 -80.34592
## 2242                 72 spring       S 25.19515 -80.34592
## 2243                 72 spring       L 25.19515 -80.34592
## 2244                 72 spring       L 25.19515 -80.34592
## 2245                 72 spring       L 25.19515 -80.34592
## 2246                 72 spring       L 25.19515 -80.34592
## 2247                 72 spring       L 25.19515 -80.34592
## 2248                 72 spring       S 25.19515 -80.34592
## 2249                 72 spring       L 25.19515 -80.34592
## 2250                 72 spring       S 25.19515 -80.34592
## 2251                 72 spring       L 25.19515 -80.34592
## 2252                 72 spring       S 25.19515 -80.34592
## 2253                 72 spring       S 25.19515 -80.34592
## 2254                 72 spring       L 25.19515 -80.34592
## 2255                 72 spring       S 25.19515 -80.34592
## 2256                 72 spring       S 25.19515 -80.34592
## 2257                 72 spring       S 25.19515 -80.34592
## 2258                 72 spring       S 25.19515 -80.34592
## 2259                 72 spring       S 25.19515 -80.34592
## 2260                 72 spring       S 25.19515 -80.34592
## 2261                 72 spring       S 25.19515 -80.34592
## 2262                 72 spring       S 25.19515 -80.34592
## 2263                 72 spring       L 25.19515 -80.34592
## 2264                 72 spring       L 25.19515 -80.34592
## 2265                 72 spring       L 25.19515 -80.34592
## 2266                 72 spring       L 25.19515 -80.34592
## 2267                 72 spring       S 25.19515 -80.34592
## 2268                 72 spring       L 25.19515 -80.34592
## 2269                 72 spring       L 25.19515 -80.34592
## 2270                 72 spring       L 25.19515 -80.34592
## 2271                 72 spring       L 25.19515 -80.34592
## 2272                 72 spring       L 25.19515 -80.34592
## 2273                 72 spring       S 25.19515 -80.34592
## 2274                 72 spring       L 25.19515 -80.34592
## 2275                 72 spring       S 25.19515 -80.34592
## 2276                 72 spring       S 25.19515 -80.34592
## 2277                 72 spring       L 25.19515 -80.34592
## 2278                 72 spring       S 25.19515 -80.34592
## 2279                 72 spring       L 25.19515 -80.34592
## 2280                 72 spring       S 25.19515 -80.34592
## 2281                 72 spring       L 25.19515 -80.34592
## 2282                 72 spring       S 25.19515 -80.34592
## 2283                 72 spring       S 25.19515 -80.34592
## 2284                 72 spring       S 25.19515 -80.34592
## 2285                 72 spring       L 25.19515 -80.34592
## 2286                 72 spring       L 25.19515 -80.34592
## 2287                 72 spring       S 25.19515 -80.34592
## 2288                 72 spring       L 25.19515 -80.34592
## 2289                 72 spring       S 25.19515 -80.34592
## 2290                 72 spring       L 25.19515 -80.34592
## 2291                 72 spring       L 25.19515 -80.34592
## 2292                 72 spring       L 25.19515 -80.34592
## 2293                 72 spring       L 25.19515 -80.34592
## 2294                 72 spring       L 25.19515 -80.34592
## 2295                 72 spring       S 25.19515 -80.34592
## 2296                 72 spring       S 25.19515 -80.34592
## 2297                 72 spring       L 25.19515 -80.34592
## 2298                 72 spring       S 25.19515 -80.34592
## 2299                 72 spring       S 25.19515 -80.34592
## 2300                 72 spring       S 25.19515 -80.34592
## 2301                 72 spring       S 25.19515 -80.34592
## 2302                 72 spring       L 25.19515 -80.34592
## 2303                 72 spring       S 25.19515 -80.34592
## 2304                 72 spring       L 25.19515 -80.34592
## 2305                 72 spring       S 25.19515 -80.34592
## 2306                 72 spring       S 25.19515 -80.34592
## 2307                 72 spring       S 25.19515 -80.34592
## 2308                 72 spring       L 25.19515 -80.34592
## 2309                 72 spring       S 25.19515 -80.34592
## 2310                 72 spring       L 25.19515 -80.34592
## 2311                 72 spring       L 25.19515 -80.34592
## 2312                 72 spring       L 25.19515 -80.34592
## 2313                 72 spring       L 25.19515 -80.34592
## 2314                 72 spring       S 25.19515 -80.34592
## 2315                 72 spring       S 25.19515 -80.34592
## 2316                 72 spring       L 25.19515 -80.34592
## 2317                 72 spring       S 25.19515 -80.34592
## 2318                 72 spring       S 25.19515 -80.34592
## 2319                 72 spring       S 25.19515 -80.34592
## 2320                 72 spring       S 25.19515 -80.34592
## 2321                 72 spring       L 25.19515 -80.34592
## 2322                 72 spring       S 25.19515 -80.34592
## 2323                 72 spring       S 25.19515 -80.34592
## 2324                 72 spring       S 25.19515 -80.34592
## 2325                 72 spring       S 25.19515 -80.34592
## 2326                 72 spring       S 25.19515 -80.34592
## 2327                 72 spring       S 25.19515 -80.34592
## 2328                 72 spring       L 25.19515 -80.34592
## 2329                 72 spring       S 25.19515 -80.34592
## 2330                 72 spring       S 25.19515 -80.34592
## 2331                 72 spring       S 25.19515 -80.34592
## 2332                 72 spring       S 25.19515 -80.34592
## 2333                 72 spring       L 25.19515 -80.34592
## 2334                 72 spring       L 25.19515 -80.34592
## 2335                 72 spring       L 25.19515 -80.34592
## 2336                 72 spring       L 25.19515 -80.34592
## 2337                 72 spring       L 25.19515 -80.34592
## 2338                 72 spring       S 25.19515 -80.34592
## 2339                 72 spring       L 25.19515 -80.34592
## 2340                 72 spring       L 25.19515 -80.34592
## 2341                 72 spring       L 25.19515 -80.34592
## 2342                 72 spring       L 25.19515 -80.34592
## 2343                 72 spring       L 25.19515 -80.34592
## 2344                 72 spring       L 25.19515 -80.34592
## 2345                 72 spring       L 25.19515 -80.34592
## 2346                 72 spring       L 25.19515 -80.34592
## 2347                 72 spring       L 25.19515 -80.34592
## 2348                 72 spring       L 25.19515 -80.34592
## 2349                 72 spring       L 25.19515 -80.34592
## 2350                 72 spring       L 25.19515 -80.34592
## 2351                 72 spring       L 25.19515 -80.34592
## 2352                 72 spring       L 25.19515 -80.34592
## 2353                 72 spring       L 25.19515 -80.34592
## 2354                 72 spring       L 25.19515 -80.34592
## 2355                 72 spring       S 25.19515 -80.34592
## 2356                 72 spring       L 25.19515 -80.34592
## 2357                 72 spring       L 25.19515 -80.34592
## 2358                 72 spring       L 25.19515 -80.34592
## 2359                 72 spring       L 25.19515 -80.34592
## 2360                 72 spring       S 25.19515 -80.34592
## 2361                 72 spring       L 25.19515 -80.34592
## 2362                 72 spring       L 25.19515 -80.34592
## 2363                 72 spring       L 25.19515 -80.34592
## 2364                 72 spring       L 25.19515 -80.34592
## 2365                 72 spring       S 25.19515 -80.34592
## 2366                 72 spring       L 25.19515 -80.34592
## 2367                 72 spring       S 25.19515 -80.34592
## 2368                 72 spring       S 25.19515 -80.34592
## 2369                 72 spring       S 24.96448 -80.56739
## 2370                 72 spring       L 24.96448 -80.56739
## 2371                 72 spring       S 24.96448 -80.56739
## 2372                 72 spring       L 24.96448 -80.56739
## 2373                 72 spring       L 24.96448 -80.56739
## 2374                 72 spring       L 24.96448 -80.56739
## 2375                 72 spring       S 24.96448 -80.56739
## 2376                 72 spring       S 24.96448 -80.56739
## 2377                 72 spring       S 24.96448 -80.56739
## 2378                 72 spring       S 24.96448 -80.56739
## 2379                 72 spring       S 24.96448 -80.56739
## 2380                 72 spring       L 24.96448 -80.56739
## 2381                 72 spring       S 24.96448 -80.56739
## 2382                 72 spring       S 24.96448 -80.56739
## 2383                 72 spring       S 24.96448 -80.56739
## 2384                 72 spring       S 24.96448 -80.56739
## 2385                 72 spring       S 24.96448 -80.56739
## 2386                 72 spring       S 24.96448 -80.56739
## 2387                 72 spring       S 24.96448 -80.56739
## 2388                 72 spring       L 24.96448 -80.56739
## 2389                 72 spring       S 24.96448 -80.56739
## 2390                 72 spring       L 24.96448 -80.56739
## 2391                 72 spring       L 24.96448 -80.56739
## 2392                 72 spring       S 24.96448 -80.56739
## 2393                 72 spring       S 24.96448 -80.56739
## 2394                 72 spring       L 24.96448 -80.56739
## 2395                 72 spring       L 24.96448 -80.56739
## 2396                 72 spring       S 24.96448 -80.56739
## 2397                 72 spring       S 24.96448 -80.56739
## 2398                 72 spring       S 24.96448 -80.56739
## 2399                 72 spring       S 24.96448 -80.56739
## 2400                 72 spring       L 24.96448 -80.56739
## 2401                 72 spring       S 24.96448 -80.56739
## 2402                 72 spring       S 24.96448 -80.56739
## 2403                 77   fall       L 29.66182 -82.34721
## 2404                 77   fall       L 29.66182 -82.34721
## 2405                 77   fall       L 29.66182 -82.34721
## 2406                 77   fall       L 29.66182 -82.34721
## 2407                 77   fall       L 29.66182 -82.34721
## 2408                 77   fall       L 29.66182 -82.34721
## 2409                 77   fall       L 29.66182 -82.34721
## 2410                 77   fall       L 29.66182 -82.34721
## 2411                 77   fall       L 29.66182 -82.34721
## 2412                 77   fall       L 29.66182 -82.34721
## 2413                 77   fall       L 29.66182 -82.34721
## 2414                 77   fall       L 29.66182 -82.34721
## 2415                 77   fall       S 29.66182 -82.34721
## 2416                 77   fall       S 29.66182 -82.34721
## 2417                 77   fall       L 29.66182 -82.34721
## 2418                 77   fall       L 29.66182 -82.34721
## 2419                 77   fall       L 25.49197 -80.48562
## 2420                 77   fall       L 25.49197 -80.48562
## 2421                 77   fall       L 25.49197 -80.48562
## 2422                 77   fall       L 25.49197 -80.48562
## 2423                 77   fall       L 25.49197 -80.48562
## 2424                 77   fall       L 25.49197 -80.48562
## 2425                 77   fall       L 25.49197 -80.48562
## 2426                 77   fall       L 25.49197 -80.48562
## 2427                 77   fall       L 25.49197 -80.48562
## 2428                 77   fall       L 25.49197 -80.48562
## 2429                 77   fall       L 25.49197 -80.48562
## 2430                 77   fall       L 25.49197 -80.48562
## 2431                 77   fall       L 25.49197 -80.48562
## 2432                 77   fall       L 25.49197 -80.48562
## 2433                 77   fall       L 25.49197 -80.48562
## 2434                 77   fall       S 25.49197 -80.48562
## 2435                 77   fall       L 25.49197 -80.48562
## 2436                 77   fall       L 25.49197 -80.48562
## 2437                 77   fall       L 25.49197 -80.48562
## 2438                 77   fall       L 25.49197 -80.48562
## 2439                 77   fall       L 25.49197 -80.48562
## 2440                 77   fall       L 25.49197 -80.48562
## 2441                 77   fall       L 25.49197 -80.48562
## 2442                 77   fall       L 25.49197 -80.48562
## 2443                 77   fall       L 25.49197 -80.48562
## 2444                 77   fall       L 25.49197 -80.48562
## 2445                 77   fall       L 25.49197 -80.48562
## 2446                 77   fall       L 25.49197 -80.48562
## 2447                 77   fall       L 25.49197 -80.48562
## 2448                 77   fall       L 25.49197 -80.48562
## 2449                 77   fall       L 25.49197 -80.48562
## 2450                 77   fall       L 25.49197 -80.48562
## 2451                 77   fall       L 25.49197 -80.48562
## 2452                 77   fall       L 25.49197 -80.48562
## 2453                 77   fall       L 25.49197 -80.48562
## 2454                 77   fall       L 25.19515 -80.34592
## 2455                 77   fall       L 25.19515 -80.34592
## 2456                 77   fall       S 25.19515 -80.34592
## 2457                 77   fall       L 25.19515 -80.34592
## 2458                 77   fall       L 25.19515 -80.34592
## 2459                 77   fall       L 25.19515 -80.34592
## 2460                 77   fall       S 25.19515 -80.34592
## 2461                 77   fall       L 25.19515 -80.34592
## 2462                 77   fall       L 25.19515 -80.34592
## 2463                 77   fall       L 25.19515 -80.34592
## 2464                 77   fall       L 25.19515 -80.34592
## 2465                 77   fall       L 25.19515 -80.34592
## 2466                 77   fall       L 25.19515 -80.34592
## 2467                 77   fall       L 25.19515 -80.34592
## 2468                 77   fall       L 25.19515 -80.34592
## 2469                 77   fall       L 25.19515 -80.34592
## 2470                 77   fall       L 27.29866 -81.36612
## 2471                 77   fall       L 27.29866 -81.36612
## 2472                 77   fall       L 27.29866 -81.36612
## 2473                 77   fall       L 27.29866 -81.36612
## 2474                 77   fall       L 27.29866 -81.36612
## 2475                 77   fall       L 27.29866 -81.36612
## 2476                 77   fall       L 27.29866 -81.36612
## 2477                 77   fall       L 27.29866 -81.36612
## 2478                 77   fall       L 27.29866 -81.36612
## 2479                 77   fall       L 27.29866 -81.36612
## 2480                 77   fall       L 27.29866 -81.36612
## 2481                 77   fall       L 27.29866 -81.36612
## 2482                 77   fall       L 27.29866 -81.36612
## 2483                 77   fall       L 27.29866 -81.36612
## 2484                 77   fall       L 27.29866 -81.36612
## 2485                 77   fall       L 27.29866 -81.36612
## 2486                 77   fall       L 27.29866 -81.36612
## 2487                 77   fall       L 27.29866 -81.36612
## 2488                 77   fall       L 27.29866 -81.36612
## 2489                 77   fall       L 27.29866 -81.36612
## 2490                 77   fall       L 27.29866 -81.36612
## 2491                 77   fall       L 27.29866 -81.36612
## 2492                 77   fall       L 27.29866 -81.36612
## 2493                 77   fall       L 27.29866 -81.36612
## 2494                 77   fall       L 27.29866 -81.36612
## 2495                 77   fall       L 27.29866 -81.36612
## 2496                 77   fall       L 27.29866 -81.36612
## 2497                 77   fall       L 27.29866 -81.36612
## 2498                 77   fall       L 27.29866 -81.36612
## 2499                 77   fall       L 27.29866 -81.36612
## 2500                 77   fall       L 27.29866 -81.36612
## 2501                 77   fall       L 27.29866 -81.36612
## 2502                 77   fall       L 27.29866 -81.36612
## 2503                 77   fall       L 27.29866 -81.36612
## 2504                 77   fall       L 27.29866 -81.36612
## 2505                 77   fall       L 27.29866 -81.36612
## 2506                 77   fall       L 27.29866 -81.36612
## 2507                 77   fall       L 27.29866 -81.36612
## 2508                 77   fall       L 27.29866 -81.36612
## 2509                 77   fall       L 27.29866 -81.36612
## 2510                 77   fall       L 27.29866 -81.36612
## 2511                 77   fall       L 27.29866 -81.36612
## 2512                 77   fall       L 27.29866 -81.36612
## 2513                 77   fall       L 27.90335 -81.58946
## 2514                 77   fall       L 27.90335 -81.58946
## 2515                 77   fall       L 27.90335 -81.58946
## 2516                 77   fall       L 27.90335 -81.58946
## 2517                 77   fall       L 27.90335 -81.58946
## 2518                 77   fall       L 27.90335 -81.58946
## 2519                 77   fall       L 27.90335 -81.58946
## 2520                 77   fall       L 27.90335 -81.58946
## 2521                 77   fall       L 27.90335 -81.58946
## 2522                 77   fall       L 27.90335 -81.58946
## 2523                 77   fall       L 27.90335 -81.58946
## 2524                 77   fall       L 27.90335 -81.58946
## 2525                 77   fall       L 27.90335 -81.58946
## 2526                 77   fall       L 27.90335 -81.58946
## 2527                 77   fall       L 27.90335 -81.58946
## 2528                 77   fall       L 27.90335 -81.58946
## 2529                 77   fall       L 27.90335 -81.58946
## 2530                 77   fall       L 27.90335 -81.58946
## 2531                 77   fall       L 27.90335 -81.58946
## 2532                 77   fall       S 27.90335 -81.58946
## 2533                 77   fall       L 27.90335 -81.58946
## 2534                 77   fall       L 27.90335 -81.58946
## 2535                 77   fall       L 27.90335 -81.58946
## 2536                 77   fall       L 28.81298 -81.87789
## 2537                 77   fall       L 28.81298 -81.87789
## 2538                 77   fall       L 28.81298 -81.87789
## 2539                 77   fall       L 28.81298 -81.87789
## 2540                 77   fall       L 28.81298 -81.87789
## 2541                 77   fall       S 28.81298 -81.87789
## 2542                 77   fall       L 28.81298 -81.87789
## 2543                 77   fall       L 28.81298 -81.87789
## 2544                 77   fall       L 28.81298 -81.87789
## 2545                 77   fall       L 28.81298 -81.87789
## 2546                 77   fall       L 28.81298 -81.87789
## 2547                 77   fall       L 28.81298 -81.87789
## 2548                 77   fall       L 28.81527 -81.88217
## 2549                 77   fall       L 28.81527 -81.88217
## 2550                 77   fall       L 28.81527 -81.88217
## 2551                 77   fall       L 28.81527 -81.88217
## 2552                 77   fall       L 28.81527 -81.88217
## 2553                 77   fall       L 28.81527 -81.88217
## 2554                 77   fall       L 28.81527 -81.88217
## 2555                 77   fall       L 28.81527 -81.88217
## 2556                 77   fall       L 28.81527 -81.88217
## 2557                 77   fall       L 28.81527 -81.88217
## 2558                 77   fall       L 28.81527 -81.88217
## 2559                 77   fall       L 28.81527 -81.88217
## 2560                 77   fall       L 28.81527 -81.88217
## 2561                 77   fall       L 28.81527 -81.88217
## 2562                 77   fall       L 25.19515 -80.34592
## 2563                 77   fall       L 25.19515 -80.34592
## 2564                 77   fall       L 25.19515 -80.34592
## 2565                 77   fall       L 25.19515 -80.34592
## 2566                 77   fall       L 25.19515 -80.34592
## 2567                 77   fall       L 25.19515 -80.34592
## 2568                 77   fall       S 25.19515 -80.34592
## 2569                 77   fall       L 25.19515 -80.34592
## 2570                 77   fall       L 25.19515 -80.34592
## 2571                 77   fall       L 25.19515 -80.34592
## 2572                 77   fall       L 25.19515 -80.34592
## 2573                 77   fall       L 25.19515 -80.34592
## 2574                 77   fall       L 25.19515 -80.34592
## 2575                 77   fall       S 25.19515 -80.34592
## 2576                 77   fall       L 25.19515 -80.34592
## 2577                 77   fall       L 25.19515 -80.34592
## 2578                 77   fall       S 25.19515 -80.34592
## 2579                 77   fall       S 25.19515 -80.34592
## 2580                 77   fall       L 25.19515 -80.34592
## 2581                 77   fall       L 25.19515 -80.34592
## 2582                 77   fall       S 25.19515 -80.34592
## 2583                 77   fall       L 25.19515 -80.34592
## 2584                 77   fall       L 25.19515 -80.34592
## 2585                 77   fall       S 25.19515 -80.34592
## 2586                 77   fall       L 25.19515 -80.34592
## 2587                 77   fall       L 25.19515 -80.34592
## 2588                 77   fall       L 25.19515 -80.34592
## 2589                 77   fall       L 25.19515 -80.34592
## 2590                 77   fall       L 25.19515 -80.34592
## 2591                 77   fall       S 25.19515 -80.34592
## 2592                 77   fall       L 25.19515 -80.34592
## 2593                 77   fall       L 25.19515 -80.34592
## 2594                 77   fall       L 25.19515 -80.34592
## 2595                 77   fall       L 25.19515 -80.34592
## 2596                 77   fall       L 25.19515 -80.34592
## 2597                 77   fall       L 25.19515 -80.34592
## 2598                 77   fall       L 25.19515 -80.34592
## 2599                 77   fall       L 25.19515 -80.34592
## 2600                 77   fall       L 25.19515 -80.34592
## 2601                 77   fall       L 25.19515 -80.34592
## 2602                 77   fall       S 25.19515 -80.34592
## 2603                 77   fall       L 25.19515 -80.34592
## 2604                 77   fall       L 25.19515 -80.34592
## 2605                 77   fall       S 25.19515 -80.34592
## 2606                 77   fall       L 25.19515 -80.34592
## 2607                 77   fall       L 25.19515 -80.34592
## 2608                 77   fall       L 25.19515 -80.34592
## 2609                 77   fall       L 25.19515 -80.34592
## 2610                 77   fall       L 25.19515 -80.34592
## 2611                 77   fall       L 25.19515 -80.34592
## 2612                 77   fall       L 25.19515 -80.34592
## 2613                 77   fall       L 25.19515 -80.34592
## 2614                 77   fall       L 25.19515 -80.34592
## 2615                 77   fall       L 25.19515 -80.34592
## 2616                 77   fall       L 25.19515 -80.34592
## 2617                 77   fall       L 25.19515 -80.34592
## 2618                 77   fall       L 25.19515 -80.34592
## 2619                 77   fall       L 25.19515 -80.34592
## 2620                 77   fall       L 25.19515 -80.34592
## 2621                 77   fall       L 25.19515 -80.34592
## 2622                 77   fall       L 25.19515 -80.34592
## 2623                 77   fall       L 25.19515 -80.34592
## 2624                 77   fall       L 25.19515 -80.34592
## 2625                 77   fall       L 25.19515 -80.34592
## 2626                 77   fall       L 25.19515 -80.34592
## 2627                 77   fall       L 25.19515 -80.34592
## 2628                 77   fall       L 25.19515 -80.34592
## 2629                 77   fall       L 25.19515 -80.34592
## 2630                 77   fall       L 25.19515 -80.34592
## 2631                 77   fall       L 25.19515 -80.34592
## 2632                 77   fall       L 25.19515 -80.34592
## 2633                 77   fall       L 25.19515 -80.34592
## 2634                 77   fall       S 25.19515 -80.34592
## 2635                 77   fall       S 25.19515 -80.34592
## 2636                 77   fall       L 25.19515 -80.34592
## 2637                 77   fall       S 25.19515 -80.34592
## 2638                 77   fall       L 25.19515 -80.34592
## 2639                 77   fall       L 25.19515 -80.34592
## 2640                 77   fall       S 25.19515 -80.34592
## 2641                 77   fall       S 25.19515 -80.34592
## 2642                 77   fall       S 25.19515 -80.34592
## 2643                 77   fall       S 24.98519 -80.54710
## 2644                 77   fall       S 24.98519 -80.54710
## 2645                 77   fall       L 24.98519 -80.54710
## 2646                 77   fall       L 24.98519 -80.54710
## 2647                 77   fall       L 24.98519 -80.54710
## 2648                 77   fall       L 24.98519 -80.54710
## 2649                 77   fall       S 24.98519 -80.54710
## 2650                 77   fall       S 24.98519 -80.54710
## 2651                 77   fall       S 24.98519 -80.54710
## 2652                 77   fall       L 24.98519 -80.54710
## 2653                 77   fall       L 24.98519 -80.54710
## 2654                 77   fall       L 24.98519 -80.54710
## 2655                 77   fall       S 24.98519 -80.54710
## 2656                 77   fall       L 24.98519 -80.54710
## 2657                 77   fall       L 24.98519 -80.54710
## 2658                 81 winter       L 29.66200 -82.34731
## 2659                 81 winter       L 29.66200 -82.34731
## 2660                 81 winter       L 29.66200 -82.34731
## 2661                 81 winter       L 29.66200 -82.34731
## 2662                 81 winter       L 29.66200 -82.34731
## 2663                 81 winter       L 29.66200 -82.34731
## 2664                 81 winter       L 29.66200 -82.34731
## 2665                 81 winter       L 29.66200 -82.34731
## 2666                 81 winter       L 29.66200 -82.34731
## 2667                 81 winter       L 29.66200 -82.34731
## 2668                 81 winter       L 29.66200 -82.34731
## 2669                 81 winter       L 29.66200 -82.34731
## 2670                 81 winter       L 29.66200 -82.34731
## 2671                 81 winter       L 29.66200 -82.34731
## 2672                 81 winter       L 29.66200 -82.34731
## 2673                 81 winter       L 29.66200 -82.34731
## 2674                 81 winter       L 29.66200 -82.34731
## 2675                 81 winter       L 29.66202 -82.34731
## 2676                 81 winter       L 29.66202 -82.34731
## 2677                 81 winter       L 29.66202 -82.34731
## 2678                 81 winter       L 29.66202 -82.34731
## 2679                 81 winter       L 29.66202 -82.34731
## 2680                 81 winter       L 29.66202 -82.34731
## 2681                 81 winter       L 29.66202 -82.34731
## 2682                 81 winter       L 29.66202 -82.34731
## 2683                 81 winter       L 29.66202 -82.34731
## 2684                 81 winter       L 29.66202 -82.34731
## 2685                 81 winter       L 29.66202 -82.34731
## 2686                 81 winter       L 29.66202 -82.34731
## 2687                 81 winter       L 29.66202 -82.34731
## 2688                 81 winter       L 29.66202 -82.34731
## 2689                 81 winter       L 29.66202 -82.34731
## 2690                 81 winter       L 29.66202 -82.34731
## 2691                 81 winter       L 29.66202 -82.34731
## 2692                 81 winter       L 29.66202 -82.34731
## 2693                 81 winter       L 29.66202 -82.34731
## 2694                 81 winter       L 25.49136 -80.48582
## 2695                 81 winter       L 25.49136 -80.48582
## 2696                 81 winter       L 25.49136 -80.48582
## 2697                 81 winter       L 25.49136 -80.48582
## 2698                 81 winter       L 25.49136 -80.48582
## 2699                 81 winter       L 25.49136 -80.48582
## 2700                 81 winter       L 25.49136 -80.48582
## 2701                 81 winter       L 25.49136 -80.48582
## 2702                 81 winter       L 25.49136 -80.48582
## 2703                 81 winter       L 25.49136 -80.48582
## 2704                 81 winter       L 25.49136 -80.48582
## 2705                 81 winter       L 25.49136 -80.48582
## 2706                 81 winter       L 25.49136 -80.48582
## 2707                 81 winter       L 25.49136 -80.48582
## 2708                 81 winter       L 25.49136 -80.48582
## 2709                 81 winter       L 25.49136 -80.48582
## 2710                 81 winter       L 25.49136 -80.48582
## 2711                 81 winter       L 25.49136 -80.48582
## 2712                 81 winter       L 25.49136 -80.48582
## 2713                 81 winter       L 25.49136 -80.48582
## 2714                 81 winter       L 25.49136 -80.48582
## 2715                 81 winter       L 25.49136 -80.48582
## 2716                 81 winter       L 25.49136 -80.48582
## 2717                 81 winter       L 25.49136 -80.48582
## 2718                 81 winter       L 25.49136 -80.48582
## 2719                 81 winter       L 25.49136 -80.48582
## 2720                 81 winter       L 25.49136 -80.48582
## 2721                 81 winter       L 25.49136 -80.48582
## 2722                 81 winter       S 25.49136 -80.48582
## 2723                 81 winter       S 25.49136 -80.48582
## 2724                 81 winter       S 25.49136 -80.48582
## 2725                 81 winter       L 25.49136 -80.48582
## 2726                 81 winter       L 25.49136 -80.48582
## 2727                 81 winter       S 25.49136 -80.48582
## 2728                 81 winter       S 25.49136 -80.48582
## 2729                 81 winter       S 25.49136 -80.48582
## 2730                 81 winter       S 25.49136 -80.48582
## 2731                 81 winter       L 25.49136 -80.48582
## 2732                 81 winter       L 25.49136 -80.48582
## 2733                 81 winter       L 25.49136 -80.48582
## 2734                 81 winter       L 25.49136 -80.48582
## 2735                 81 winter       L 25.49136 -80.48582
## 2736                 81 winter       L 25.10002 -80.43752
## 2737                 81 winter       L 25.10002 -80.43752
## 2738                 81 winter       L 25.10002 -80.43752
## 2739                 81 winter       L 25.10002 -80.43752
## 2740                 81 winter       L 25.12846 -80.40809
## 2741                 81 winter       L 25.12846 -80.40809
## 2742                 81 winter       L 25.12846 -80.40809
## 2743                 81 winter       L 25.12846 -80.40809
## 2744                 81 winter       L 25.12846 -80.40809
## 2745                 81 winter       L 25.12846 -80.40809
## 2746                 81 winter       L 25.10002 -80.43752
## 2747                 81 winter       L 25.10002 -80.43752
## 2748                 81 winter       L 25.10002 -80.43752
## 2749                 81 winter       L 25.10002 -80.43752
## 2750                 81 winter       L 25.12846 -80.40809
## 2751                 81 winter       L 25.12846 -80.40809
## 2752                 81 winter       L 25.12846 -80.40809
## 2753                 81 winter       L 25.12846 -80.40809
## 2754                 81 winter       L 25.10002 -80.43752
## 2755                 81 winter       L 25.10002 -80.43752
## 2756                 81 winter       L 25.10002 -80.43752
## 2757                 81 winter       L 25.10002 -80.43752
## 2758                 81 winter       L 25.10002 -80.43752
## 2759                 81 winter       L 25.12846 -80.40809
## 2760                 81 winter       L 25.12846 -80.40809
## 2761                 81 winter       L 25.12846 -80.40809
## 2762                 81 winter       L 25.12846 -80.40809
## 2763                 81 winter       L 25.10002 -80.43752
## 2764                 81 winter       L 25.10002 -80.43752
## 2765                 81 winter       L 25.10002 -80.43752
## 2766                 81 winter       L 25.10002 -80.43752
## 2767                 81 winter       L 25.10002 -80.43752
## 2768                 81 winter       L 25.12846 -80.40809
## 2769                 81 winter       L 25.12846 -80.40809
## 2770                 81 winter       L 25.12846 -80.40809
## 2771                 81 winter       L 25.12846 -80.40809
## 2772                 81 winter       L 25.10002 -80.43752
## 2773                 81 winter       L 25.10002 -80.43752
## 2774                 81 winter       L 25.10002 -80.43752
## 2775                 81 winter       L 25.10002 -80.43752
## 2776                 81 winter       L 25.10002 -80.43752
## 2777                 81 winter       L 25.12846 -80.40809
## 2778                 81 winter       L 25.12846 -80.40809
## 2779                 81 winter       L 25.12846 -80.40809
## 2780                 81 winter       S 25.12858 -80.40809
## 2781                 81 winter       S 25.12858 -80.40809
## 2782                 81 winter       S 25.12858 -80.40809
## 2783                 81 winter       S 25.12858 -80.40809
## 2784                 81 winter       S 25.12858 -80.40809
## 2785                 81 winter       S 25.12858 -80.40809
## 2786                 81 winter       S 25.12858 -80.40809
## 2787                 81 winter       S 25.12858 -80.40809
## 2788                 81 winter       S 25.12858 -80.40809
## 2789                 81 winter       S 25.12858 -80.40809
## 2790                 81 winter       S 25.12858 -80.40809
## 2791                 81 winter       S 25.12858 -80.40809
## 2792                 81 winter       S 25.12858 -80.40809
## 2793                 81 winter       S 25.12858 -80.40809
## 2794                 81 winter       S 25.12858 -80.40809
## 2795                 81 winter       S 25.12858 -80.40809
## 2796                 81 winter       S 25.12858 -80.40809
## 2797                 81 winter       S 25.12858 -80.40809
## 2798                 81 winter       S 25.12858 -80.40809
## 2799                 81 winter       S 25.12858 -80.40809
## 2800                 81 winter       S 25.12858 -80.40809
## 2801                 81 winter       S 25.12858 -80.40809
## 2802                 81 winter       S 25.12858 -80.40809
## 2803                 81 winter       L 25.12858 -80.40809
## 2804                 81 winter       S 25.12858 -80.40809
## 2805                 81 winter       S 25.12858 -80.40809
## 2806                 81 winter       S 25.12858 -80.40809
## 2807                 81 winter       S 25.12858 -80.40809
## 2808                 81 winter       L 25.12858 -80.40809
## 2809                 81 winter       S 25.12858 -80.40809
## 2810                 81 winter       L 25.12858 -80.40809
## 2811                 81 winter       L 25.12858 -80.40809
## 2812                 81 winter       L 27.29866 -81.36612
## 2813                 81 winter       L 27.29866 -81.36612
## 2814                 81 winter       L 27.29866 -81.36612
## 2815                 81 winter       L 27.29866 -81.36612
## 2816                 81 winter       L 27.29866 -81.36612
## 2817                 81 winter       L 27.29866 -81.36612
## 2818                 81 winter       L 27.29866 -81.36612
## 2819                 81 winter       L 27.29866 -81.36612
## 2820                 81 winter       L 27.29866 -81.36612
## 2821                 81 winter       L 27.29866 -81.36612
## 2822                 81 winter       L 27.29866 -81.36612
## 2823                 81 winter       L 27.29866 -81.36612
## 2824                 81 winter       L 27.29866 -81.36612
## 2825                 81 winter       L 27.29866 -81.36612
## 2826                 81 winter       L 27.29866 -81.36612
## 2827                 81 winter       L 27.29866 -81.36612
## 2828                 81 winter       L 27.29866 -81.36612
## 2829                 81 winter       L 27.29866 -81.36612
## 2830                 81 winter       L 27.29866 -81.36612
## 2831                 81 winter       L 27.29866 -81.36612
## 2832                 81 winter       L 27.29866 -81.36612
## 2833                 81 winter       L 27.29866 -81.36612
## 2834                 81 winter       L 27.29866 -81.36612
## 2835                 81 winter       L 27.29866 -81.36612
## 2836                 81 winter       L 27.29866 -81.36612
## 2837                 81 winter       L 27.29866 -81.36612
## 2838                 81 winter       L 27.29866 -81.36612
## 2839                 81 winter       L 27.29866 -81.36612
## 2840                 81 winter       L 27.29866 -81.36612
## 2841                 81 winter       L 27.29866 -81.36612
## 2842                 81 winter       L 27.29866 -81.36612
## 2843                 81 winter       L 27.29866 -81.36612
## 2844                 81 winter       L 27.29866 -81.36612
## 2845                 81 winter       L 27.29866 -81.36612
## 2846                 81 winter       L 27.29866 -81.36612
## 2847                 81 winter       L 27.29866 -81.36612
## 2848                 81 winter       L 27.29866 -81.36612
## 2849                 81 winter       L 27.29866 -81.36612
## 2850                 81 winter       L 27.29866 -81.36612
## 2851                 81 winter       L 27.29866 -81.36612
## 2852                 81 winter       L 27.29866 -81.36612
## 2853                 81 winter       L 27.29866 -81.36612
## 2854                 81 winter       L 27.29866 -81.36612
## 2855                 81 winter       L 27.89674 -81.58047
## 2856                 81 winter       L 27.89674 -81.58047
## 2857                 81 winter       L 27.89674 -81.58047
## 2858                 81 winter       L 27.89674 -81.58047
## 2859                 81 winter       L 27.89674 -81.58047
## 2860                 81 winter       L 27.89674 -81.58047
## 2861                 81 winter       L 27.89674 -81.58047
## 2862                 81 winter       L 27.89674 -81.58047
## 2863                 81 winter       L 27.89674 -81.58047
## 2864                 81 winter       L 27.89674 -81.58047
## 2865                 81 winter       L 27.89674 -81.58047
## 2866                 81 winter       L 27.89674 -81.58047
## 2867                 81 winter       L 27.89674 -81.58047
## 2868                 81 winter       L 27.89674 -81.58047
## 2869                 81 winter       L 27.89674 -81.58047
## 2870                 81 winter       L 27.89674 -81.58047
## 2871                 81 winter       L 27.89674 -81.58047
## 2872                 81 winter       L 27.89674 -81.58047
## 2873                 81 winter       L 27.89674 -81.58047
## 2874                 81 winter       L 27.89674 -81.58047
## 2875                 81 winter       L 27.89674 -81.58047
## 2876                 81 winter       L 27.89674 -81.58047
## 2877                 81 winter       L 27.89674 -81.58047
## 2878                 81 winter       L 27.89674 -81.58047
## 2879                 81 winter       L 27.89674 -81.58047
## 2880                 81 winter       L 27.89674 -81.58047
## 2881                 81 winter       L 27.89674 -81.58047
## 2882                 81 winter       L 27.89674 -81.58047
## 2883                 81 winter       L 27.89674 -81.58047
## 2884                 81 winter       L 27.89674 -81.58047
## 2885                 81 winter       L 27.89674 -81.58047
## 2886                 81 winter       L 27.89674 -81.58047
## 2887                 81 winter       L 27.89674 -81.58047
## 2888                 81 winter       S 27.89674 -81.58047
## 2889                 81 winter       L 27.89674 -81.58047
## 2890                 81 winter       L 27.89674 -81.58047
## 2891                 81 winter       L 27.89674 -81.58047
## 2892                 81 winter       L 27.89674 -81.58047
## 2893                 81 winter       L 27.89674 -81.58047
## 2894                 81 winter       L 27.89674 -81.58047
## 2895                 81 winter       L 27.89674 -81.58047
## 2896                 81 winter       L 27.89674 -81.58047
## 2897                 81 winter       L 27.89674 -81.58047
## 2898                 81 winter       L 27.89674 -81.58047
## 2899                 81 winter       L 27.89674 -81.58047
## 2900                 81 winter       L 27.89674 -81.58047
## 2901                 81 winter       L 27.89674 -81.58047
## 2902                 81 winter       L 27.89674 -81.58047
## 2903                 81 winter       L 27.89674 -81.58047
## 2904                 81 winter       L 27.89674 -81.58047
## 2905                 81 winter       L 28.79634 -81.87788
## 2906                 81 winter       L 28.79634 -81.87788
## 2907                 81 winter       L 28.79634 -81.87788
## 2908                 81 winter       L 28.79634 -81.87788
## 2909                 81 winter       L 28.79634 -81.87788
## 2910                 81 winter       L 28.79634 -81.87788
## 2911                 81 winter       L 28.79634 -81.87788
## 2912                 81 winter       L 28.79634 -81.87788
## 2913                 81 winter       L 28.79634 -81.87788
## 2914                 81 winter       L 28.79634 -81.87788
## 2915                 81 winter       L 28.79634 -81.87788
## 2916                 81 winter       L 28.79634 -81.87788
## 2917                 81 winter       L 28.79634 -81.87788
## 2918                 81 winter       L 28.79634 -81.87788
## 2919                 81 winter       S 28.79634 -81.87788
## 2920                 81 winter       L 28.79634 -81.87788
## 2921                 81 winter       L 28.79634 -81.87788
## 2922                 81 winter       L 28.79634 -81.87788
## 2923                 81 winter       L 28.79634 -81.87788
## 2924                 81 winter       L 28.79634 -81.87788
## 2925                 81 winter       L 28.79634 -81.87788
## 2926                 81 winter       L 28.79634 -81.87788
## 2927                 81 winter       L 28.79634 -81.87788
## 2928                 81 winter       L 28.79634 -81.87788
## 2929                 81 winter       L 28.79634 -81.87788
## 2930                 81 winter       L 28.79634 -81.87788
## 2931                 81 winter       S 28.79634 -81.87788
## 2932                 81 winter       L 28.79634 -81.87788
## 2933                 81 winter       L 28.79634 -81.87788
## 2934                 81 winter       L 25.19515 -80.34592
## 2935                 81 winter       L 25.19515 -80.34592
## 2936                 81 winter       L 25.19515 -80.34592
## 2937                 81 winter       L 25.19515 -80.34592
## 2938                 81 winter       L 25.19515 -80.34592
## 2939                 81 winter       L 25.19515 -80.34592
## 2940                 81 winter       L 25.19515 -80.34592
## 2941                 81 winter       L 25.19515 -80.34592
## 2942                 81 winter       L 25.19515 -80.34592
## 2943                 81 winter       L 25.19515 -80.34592
## 2944                 81 winter       L 25.19515 -80.34592
## 2945                 81 winter       L 25.19515 -80.34592
## 2946                 81 winter       L 25.19515 -80.34592
## 2947                 81 winter       L 25.19515 -80.34592
## 2948                 81 winter       L 25.19515 -80.34592
## 2949                 81 winter       L 25.19515 -80.34592
## 2950                 81 winter       L 25.19515 -80.34592
## 2951                 81 winter       L 25.19515 -80.34592
## 2952                 81 winter       L 25.19515 -80.34592
## 2953                 81 winter       L 25.19515 -80.34592
## 2954                 81 winter       L 25.19515 -80.34592
## 2955                 81 winter       L 25.19515 -80.34592
## 2956                 81 winter       L 25.19515 -80.34592
## 2957                 81 winter       L 25.19515 -80.34592
## 2958                 81 winter       L 25.19515 -80.34592
## 2959                 81 winter       L 25.19515 -80.34592
## 2960                 81 winter       L 25.19515 -80.34592
## 2961                 81 winter       L 25.19515 -80.34592
## 2962                 81 winter       L 25.19515 -80.34592
## 2963                 81 winter       L 25.19515 -80.34592
## 2964                 81 winter       L 25.19515 -80.34592
## 2965                 81 winter       L 25.19515 -80.34592
## 2966                 81 winter       L 25.19515 -80.34592
## 2967                 81 winter       L 25.19515 -80.34592
## 2968                 81 winter       L 25.19515 -80.34592
## 2969                 81 winter       L 25.19515 -80.34592
## 2970                 81 winter       L 25.19515 -80.34592
## 2971                 81 winter       L 25.19515 -80.34592
## 2972                 81 winter       L 25.19515 -80.34592
## 2973                 81 winter       L 25.19515 -80.34592
## 2974                 81 winter       L 25.19515 -80.34592
## 2975                 81 winter       L 25.19515 -80.34592
## 2976                 81 winter       L 25.19515 -80.34592
## 2977                 81 winter       L 25.19515 -80.34592
## 2978                 81 winter       L 25.19515 -80.34592
## 2979                 81 winter       L 25.19515 -80.34592
## 2980                 81 winter       L 25.19515 -80.34592
## 2981                 81 winter       L 25.19515 -80.34592
## 2982                 81 winter       L 25.19515 -80.34592
## 2983                 81 winter       L 25.19515 -80.34592
## 2984                 81 winter       L 25.19515 -80.34592
## 2985                 81 winter       L 25.19515 -80.34592
## 2986                 81 winter       L 25.19515 -80.34592
## 2987                 81 winter       L 25.19515 -80.34592
## 2988                 81 winter       L 25.19515 -80.34592
## 2989                 81 winter       L 25.19515 -80.34592
## 2990                 81 winter       L 25.19515 -80.34592
## 2991                 81 winter       L 25.19515 -80.34592
## 2992                 81 winter       L 25.19515 -80.34592
## 2993                 81 winter       L 25.19515 -80.34592
## 2994                 81 winter       L 25.19515 -80.34592
## 2995                 81 winter       L 25.19515 -80.34592
## 2996                 81 winter       L 25.19515 -80.34592
## 2997                 81 winter       L 25.19515 -80.34592
## 2998                 81 winter       L 25.19515 -80.34592
## 2999                 81 winter       L 25.19515 -80.34592
## 3000                 81 winter       L 25.19515 -80.34592
## 3001                 81 winter       L 25.19515 -80.34592
## 3002                 81 winter       L 25.19515 -80.34592
## 3003                 81 winter       L 25.19515 -80.34592
## 3004                 81 winter       L 25.19515 -80.34592
## 3005                 81 winter       L 25.19515 -80.34592
## 3006                 81 winter       L 25.19515 -80.34592
## 3007                 81 winter       L 25.19515 -80.34592
## 3008                 81 winter       L 25.19515 -80.34592
## 3009                 81 winter       L 25.19515 -80.34592
## 3010                 81 winter       L 25.19515 -80.34592
## 3011                 81 winter       L 25.19515 -80.34592
## 3012                 81 winter       L 25.19515 -80.34592
## 3013                 81 winter       L 25.19515 -80.34592
## 3014                 81 winter       L 25.19515 -80.34592
## 3015                 81 winter       L 25.19515 -80.34592
## 3016                 81 winter       L 25.19515 -80.34592
## 3017                 81 winter       L 25.19515 -80.34592
## 3018                 81 winter       L 25.19515 -80.34592
## 3019                 81 winter       L 25.19515 -80.34592
## 3020                 81 winter       L 25.19515 -80.34592
## 3021                 81 winter       L 25.19515 -80.34592
## 3022                 81 winter       L 25.19515 -80.34592
## 3023                 81 winter       L 25.19515 -80.34592
## 3024                 81 winter       L 25.19515 -80.34592
## 3025                 81 winter       L 25.19515 -80.34592
## 3026                 81 winter       L 25.19515 -80.34592
## 3027                 81 winter       L 25.19515 -80.34592
## 3028                 81 winter       L 25.19515 -80.34592
## 3029                 81 winter       S 25.19515 -80.34592
## 3030                 81 winter       L 25.19515 -80.34592
## 3031                 81 winter       L 25.19515 -80.34592
## 3032                 81 winter       L 25.19515 -80.34592
## 3033                 81 winter       L 25.19515 -80.34592
## 3034                 81 winter       L 25.19515 -80.34592
## 3035                 81 winter       L 25.19515 -80.34592
## 3036                 81 winter       L 25.19515 -80.34592
## 3037                 81 winter       L 25.19515 -80.34592
## 3038                 81 winter       L 25.19515 -80.34592
## 3039                 81 winter       L 25.19515 -80.34592
## 3040                 81 winter       L 25.19515 -80.34592
## 3041                 81 winter       L 25.19515 -80.34592
## 3042                 81 winter       L 25.19515 -80.34592
## 3043                 81 winter       L 25.19515 -80.34592
## 3044                 81 winter       L 25.19515 -80.34592
## 3045                 81 winter       L 25.19515 -80.34592
## 3046                 81 winter       L 25.19515 -80.34592
## 3047                 81 winter       L 25.19515 -80.34592
## 3048                 81 winter       L 25.19515 -80.34592
## 3049                 81 winter       L 25.19515 -80.34592
## 3050                 81 winter       L 25.19515 -80.34592
## 3051                 81 winter       L 25.19515 -80.34592
## 3052                 81 winter       L 25.19515 -80.34592
## 3053                 81 winter       L 25.19515 -80.34592
## 3054                 81 winter       L 25.19515 -80.34592
## 3055                 81 winter       L 25.19515 -80.34592
## 3056                 81 winter       L 25.19515 -80.34592
## 3057                 81 winter       L 25.19515 -80.34592
## 3058                 81 winter       L 25.19515 -80.34592
## 3059                 81 winter       L 25.19515 -80.34592
## 3060                 81 winter       L 25.19515 -80.34592
## 3061                 81 winter       L 25.19515 -80.34592
## 3062                 81 winter       L 25.19515 -80.34592
## 3063                 81 winter       L 25.19515 -80.34592
## 3064                 81 winter       L 25.19515 -80.34592
## 3065                 81 winter       L 25.19515 -80.34592
## 3066                 81 winter       L 25.19515 -80.34592
## 3067                 81 winter       L 25.19515 -80.34592
## 3068                 81 winter       L 25.19515 -80.34592
## 3069                 81 winter       L 25.19515 -80.34592
## 3070                 81 winter       L 25.19515 -80.34592
## 3071                 81 winter       L 25.19515 -80.34592
## 3072                 81 winter       L 25.19515 -80.34592
## 3073                 81 winter       L 25.19515 -80.34592
## 3074                 81 winter       L 25.19515 -80.34592
## 3075                 81 winter       L 25.19515 -80.34592
## 3076                 81 winter       S 25.19515 -80.34592
## 3077                 81 winter       L 25.19515 -80.34592
## 3078                 81 winter       S 25.19515 -80.34592
## 3079                 81 winter       L 25.19515 -80.34592
## 3080                 81 winter       S 25.19515 -80.34592
## 3081                 81 winter       S 25.19515 -80.34592
## 3082                 81 winter       S 25.19515 -80.34592
## 3083                 81 winter       S 25.19515 -80.34592
## 3084                 81 winter       L 25.19515 -80.34592
## 3085                 81 winter       S 25.19515 -80.34592
## 3086                 81 winter       S 25.19515 -80.34592
## 3087                 81 winter       S 25.19515 -80.34592
## 3088                 81 winter       S 25.19515 -80.34592
## 3089                 81 winter       S 25.19515 -80.34592
## 3090                 81 winter       S 25.19515 -80.34592
## 3091                 81 winter       L 25.19515 -80.34592
## 3092                 81 winter       L 25.19515 -80.34592
## 3093                 81 winter       L 25.19515 -80.34592
## 3094                 81 winter       L 25.19515 -80.34592
## 3095                 81 winter       L 25.19515 -80.34592
## 3096                 81 winter       S 25.19515 -80.34592
## 3097                 81 winter       S 25.19515 -80.34592
## 3098                 81 winter       S 25.19515 -80.34592
## 3099                 81 winter       S 25.19515 -80.34592
## 3100                 81 winter       L 25.19515 -80.34592
## 3101                 81 winter       L 25.19515 -80.34592
## 3102                 81 winter       L 25.19515 -80.34592
## 3103                 81 winter       L 25.19515 -80.34592
## 3104                 81 winter       S 25.19515 -80.34592
## 3105                 81 winter       S 25.19515 -80.34592
## 3106                 81 winter       S 25.19515 -80.34592
## 3107                 81 winter       S 25.19515 -80.34592
## 3108                 81 winter       S 25.19515 -80.34592
## 3109                 81 winter       S 25.19515 -80.34592
## 3110                 81 winter       S 25.19515 -80.34592
## 3111                 81 winter       S 25.19515 -80.34592
## 3112                 81 winter       S 25.19515 -80.34592
## 3113                 81 winter       S 25.19515 -80.34592
## 3114                 81 winter       S 25.19515 -80.34592
## 3115                 81 winter       S 25.19515 -80.34592
## 3116                 81 winter       S 25.19515 -80.34592
## 3117                 81 winter       S 25.19515 -80.34592
## 3118                 81 winter       S 25.19515 -80.34592
## 3119                 81 winter       S 25.19515 -80.34592
## 3120                 81 winter       S 25.19515 -80.34592
## 3121                 81 winter       S 25.19515 -80.34592
## 3122                 81 winter       S 25.19515 -80.34592
## 3123                 81 winter       S 25.19515 -80.34592
## 3124                 81 winter       S 25.19515 -80.34592
## 3125                 81 winter       S 25.19515 -80.34592
## 3126                 81 winter       S 25.19515 -80.34592
## 3127                 81 winter       S 25.19515 -80.34592
## 3128                 81 winter       S 25.19515 -80.34592
## 3129                 81 winter       S 25.19515 -80.34592
## 3130                 81 winter       S 25.19515 -80.34592
## 3131                 81 winter       L 25.19515 -80.34592
## 3132                 81 winter       S 25.19515 -80.34592
## 3133                 81 winter       S 25.19515 -80.34592
## 3134                 81 winter       S 25.19515 -80.34592
## 3135                 81 winter       S 25.19515 -80.34592
## 3136                 81 winter       L 25.19515 -80.34592
## 3137                 81 winter       S 25.19515 -80.34592
## 3138                 81 winter       S 25.19515 -80.34592
## 3139                 81 winter       S 25.19515 -80.34592
## 3140                 81 winter       S 25.19515 -80.34592
## 3141                 81 winter       S 25.19515 -80.34592
## 3142                 81 winter       S 25.19515 -80.34592
## 3143                 81 winter       L 25.19515 -80.34592
## 3144                 81 winter       S 25.19515 -80.34592
## 3145                 81 winter       S 25.19515 -80.34592
## 3146                 81 winter       L 25.19515 -80.34592
## 3147                 81 winter       S 25.19515 -80.34592
## 3148                 81 winter       L 25.19515 -80.34592
## 3149                 81 winter       S 25.19515 -80.34592
## 3150                 81 winter       L 25.19515 -80.34592
## 3151                 81 winter       L 25.19515 -80.34592
## 3152                 81 winter       L 25.19515 -80.34592
## 3153                 81 winter       L 25.19515 -80.34592
## 3154                 81 winter       L 25.19515 -80.34592
## 3155                 81 winter       L 24.97357 -80.55392
## 3156                 81 winter       L 24.97357 -80.55392
## 3157                 81 winter       L 24.97357 -80.55392
## 3158                 81 winter       L 24.97357 -80.55392
## 3159                 81 winter       L 24.97357 -80.55392
## 3160                 81 winter       L 24.96424 -80.56733
## 3161                 81 winter       L 24.96424 -80.56733
## 3162                 81 winter       L 24.96424 -80.56733
## 3163                 81 winter       L 24.96424 -80.56733
## 3164                 81 winter       L 24.96424 -80.56733
## 3165                 81 winter       L 24.97357 -80.55392
## 3166                 81 winter       L 24.97357 -80.55392
## 3167                 81 winter       L 24.97357 -80.55392
## 3168                 81 winter       L 24.97357 -80.55392
## 3169                 81 winter       L 24.97357 -80.55392
## 3170                 81 winter       L 24.96424 -80.56733
## 3171                 81 winter       L 24.96424 -80.56733
## 3172                 81 winter       L 24.96424 -80.56733
## 3173                 81 winter       L 24.96424 -80.56733
## 3174                 81 winter       L 24.96424 -80.56733
## 3175                 81 winter       L 24.97357 -80.55392
## 3176                 81 winter       L 24.97357 -80.55392
## 3177                 81 winter       L 24.97357 -80.55392
## 3178                 81 winter       L 24.97357 -80.55392
## 3179                 81 winter       L 24.97357 -80.55392
## 3180                 81 winter       L 24.96424 -80.56733
## 3181                 81 winter       L 24.96424 -80.56733
## 3182                 81 winter       L 24.96424 -80.56733
## 3183                 81 winter       L 24.96424 -80.56733
## 3184                 81 winter       L 24.97357 -80.55392
## 3185                 81 winter       L 24.97357 -80.55392
## 3186                 81 winter       L 24.97357 -80.55392
## 3187                 81 winter       L 24.96424 -80.56733
## 3188                 81 winter       L 24.96424 -80.56733
## 3189                 81 winter       L 24.96424 -80.56733
## 3190                 81 winter       L 24.96424 -80.56733
## 3191                 81 winter       L 24.96424 -80.56733
## 3192                 81 winter       L 24.96424 -80.56733
## 3193                 81 winter       L 24.96424 -80.56733
## 3194                 81 winter       L 24.96424 -80.56733
## 3195                 81 winter       L 24.96424 -80.56733
## 3196                 81 winter       L 24.96424 -80.56733
## 3197                 81 winter       L 24.96424 -80.56733
## 3198                 81 winter       L 24.96424 -80.56733
## 3199                 81 winter       L 24.96424 -80.56733
## 3200                 81 winter       L 24.96424 -80.56733
## 3201                 81 winter       L 24.96424 -80.56733
## 3202                 81 winter       L 24.96424 -80.56733
## 3203                 81 winter       L 24.96424 -80.56733
## 3204                 81 winter       L 24.96424 -80.56733
## 3205                 81 winter       L 24.96424 -80.56733
## 3206                 81 winter       S 24.96424 -80.56733
## 3207                 81 winter       S 24.96424 -80.56733
## 3208                 81 winter       S 24.96424 -80.56733
## 3209                 81 winter       S 24.96424 -80.56733
## 3210                 81 winter       S 24.96424 -80.56733
## 3211                 81 winter       L 24.96424 -80.56733
## 3212                 81 winter       L 24.96424 -80.56733
## 3213                 81 winter       S 24.96424 -80.56733
## 3214                 81 winter       S 24.96424 -80.56733
## 3215                 81 winter       S 24.96424 -80.56733
## 3216                 81 winter       L 24.96424 -80.56733
## 3217                 81 winter       S 24.96424 -80.56733
## 3218                 81 winter       S 24.96424 -80.56733
## 3219                 81 winter       S 24.96424 -80.56733
## 3220                 81 winter       S 24.96424 -80.56733
## 3221                 81 winter       S 24.96424 -80.56733
## 3222                 81 winter       S 24.96424 -80.56733
## 3223                 81 winter       L 24.96424 -80.56733
## 3224                 81 winter       L 24.97357 -80.55392
## 3225                 81 winter       L 24.97357 -80.55392
## 3226                 77   fall       L 24.96424 -80.56733
## 3227                 77   fall       L 24.96424 -80.56733
## 3228                 77   fall       L 24.96424 -80.56733
## 3229                 77   fall       L 24.96424 -80.56733
## 3230                 77   fall       L 24.96424 -80.56733
## 3231                 77   fall       L 24.96424 -80.56733
## 3232                 77   fall       L 24.96424 -80.56733
## 3233                 77   fall       L 24.96424 -80.56733
## 3234                 77   fall       S 24.96424 -80.56733
## 3235                 77   fall       L 24.96424 -80.56733
## 3236                 77   fall       L 24.96424 -80.56733
## 3237                 77   fall       L 24.96424 -80.56733
## 3238                 77   fall       L 24.96424 -80.56733
## 3239                 77   fall       L 24.96424 -80.56733
## 3240                 77   fall       S 24.96424 -80.56733
## 3241                 77   fall       S 24.96424 -80.56733
## 3242                 77   fall       L 24.96424 -80.56733
## 3243                 77   fall       L 24.96424 -80.56733
## 3244                 77   fall       S 24.96424 -80.56733
## 3245                 77   fall       L 24.96424 -80.56733
## 3246                 77   fall       L 24.96424 -80.56733
## 3247                 77   fall       L 24.96424 -80.56733
## 3248                 77   fall       L 24.96424 -80.56733
## 3249                 77   fall       L 24.96424 -80.56733
## 3250                 77   fall       L 24.96424 -80.56733
## 3251                 77   fall       L 25.49136 -80.48582
## 3252                 77   fall       L 25.49136 -80.48582
## 3253                 77   fall       L 25.49136 -80.48582
## 3254                 77   fall       L 25.49136 -80.48582
## 3255                 77   fall       L 25.49136 -80.48582
## 3256                 77   fall       L 25.49136 -80.48582
## 3257                 77   fall       L 25.49136 -80.48582
## 3258                 77   fall       L 25.49136 -80.48582
## 3259                 77   fall       L 25.49136 -80.48582
## 3260                 77   fall       S 25.49136 -80.48582
## 3261                 77   fall       L 25.49136 -80.48582
## 3262                 77   fall       L 25.49136 -80.48582
## 3263                 77   fall       L 25.19515 -80.34592
## 3264                 77   fall       L 25.19515 -80.34592
## 3265                 77   fall       L 25.19515 -80.34592
## 3266                 77   fall       L 25.19515 -80.34592
## 3267                 77   fall       L 25.19515 -80.34592
## 3268                 77   fall       L 25.19515 -80.34592
## 3269                 77   fall       L 25.19515 -80.34592
## 3270                 77   fall       L 25.19515 -80.34592
## 3271                 77   fall       L 25.19515 -80.34592
## 3272                 77   fall       L 25.19515 -80.34592
## 3273                 77   fall       L 25.19515 -80.34592
## 3274                 77   fall       L 25.19515 -80.34592
## 3275                 77   fall       S 25.19515 -80.34592
## 3276                 77   fall       L 25.19515 -80.34592
## 3277                 77   fall       L 25.19515 -80.34592
## 3278                 77   fall       L 25.19515 -80.34592
## 3279                 77   fall       L 25.19515 -80.34592
## 3280                 77   fall       L 25.19515 -80.34592
## 3281                 77   fall       L 25.19515 -80.34592
## 3282                 77   fall       L 25.19515 -80.34592
## 3283                 77   fall       L 25.19515 -80.34592
## 3284                 77   fall       L 25.19515 -80.34592
## 3285                 77   fall       L 25.19515 -80.34592
## 3286                 77   fall       L 25.19515 -80.34592
## 3287                 77   fall       L 25.19515 -80.34592
## 3288                 77   fall       L 25.19515 -80.34592
## 3289                 77   fall       L 27.29863 -81.36615
## 3290                 77   fall       L 27.29863 -81.36615
## 3291                 77   fall       L 27.29863 -81.36615
## 3292                 77   fall       L 27.29863 -81.36615
## 3293                 77   fall       L 27.29863 -81.36615
## 3294                 77   fall       L 27.29863 -81.36615
## 3295                 77   fall       L 27.29863 -81.36615
## 3296                 77   fall       S 27.29863 -81.36615
## 3297                 77   fall       L 27.29863 -81.36615
## 3298                 77   fall       L 27.29863 -81.36615
## 3299                 77   fall       L 27.29863 -81.36615
## 3300                 77   fall       L 27.29863 -81.36615
## 3301                 77   fall       L 27.29863 -81.36615
## 3302                 77   fall       L 27.29863 -81.36615
## 3303                 77   fall       L 27.29863 -81.36615
## 3304                 77   fall       L 27.29863 -81.36615
## 3305                 77   fall       L 27.29863 -81.36615
## 3306                 77   fall       L 27.29863 -81.36615
## 3307                 77   fall       L 27.29863 -81.36615
## 3308                 77   fall       L 27.29863 -81.36615
## 3309                 77   fall       L 27.29863 -81.36615
## 3310                 77   fall       L 25.19515 -80.34592
## 3311                 77   fall       L 25.19515 -80.34592
## 3312                 77   fall       L 25.19515 -80.34592
## 3313                 77   fall       L 25.19515 -80.34592
## 3314                 43   fall       L 25.55090 -80.42110
## 3315                 43   fall       S 25.55090 -80.42110
## 3316                 43   fall       S 25.55090 -80.42110
## 3317                 43   fall       S 25.55090 -80.42110
## 3318                 77   fall       L 25.12846 -80.40809
## 3319                 77   fall       L 25.12846 -80.40809
## 3320                 77   fall       L 25.12846 -80.40809
## 3321                 77   fall       L 25.12846 -80.40809
## 3322                 77   fall       L 25.12846 -80.40809
## 3323                 77   fall       L 25.12846 -80.40809
## 3324                 77   fall       L 25.12846 -80.40809
## 3325                 77   fall       L 25.19515 -80.34592
## 3326                 77   fall       L 25.19515 -80.34592
## 3327                 77   fall       L 25.19515 -80.34592
## 3328                 77   fall       S 25.19515 -80.34592
## 3329                 77   fall       L 25.19515 -80.34592
## 3330                 77   fall       S 25.19515 -80.34592
## 3331                 77   fall       L 25.12848 -80.40754
## 3332                 77   fall       L 25.12848 -80.40754
## 3333                 77   fall       L 25.12848 -80.40754
## 3334                 77   fall       L 25.19515 -80.34592
## 3335                 77   fall       L 25.19515 -80.34592
## 3336                 77   fall       L 25.19515 -80.34592
## 3337                 77   fall       L 25.19515 -80.34592
## 3338                 77   fall       L 25.19515 -80.34592
## 3339                 77   fall       L 25.19515 -80.34592
## 3340                 72 spring       L 27.89664 -81.58064
## 3341                 72 spring       S 27.89664 -81.58064
## 3342                 72 spring       L 27.89664 -81.58064
## 3343                 72 spring       L 27.89664 -81.58064
## 3344                 72 spring       L 27.89664 -81.58064
## 3345                 72 spring       L 27.89664 -81.58064
## 3346                 72 spring       L 27.89664 -81.58064
## 3347                 72 spring       L 27.89664 -81.58064
## 3348                 72 spring       L 27.89664 -81.58064
## 3349                 72 spring       L 27.89664 -81.58064
## 3350                 72 spring       L 27.89664 -81.58064
## 3351                 72 spring       L 27.89664 -81.58064
## 3352                 72 spring       L 27.89664 -81.58064
## 3353                 72 spring       L 27.89664 -81.58064
## 3354                 72 spring       L 27.89664 -81.58064
## 3355                 72 spring       L 27.89664 -81.58064
## 3356                 72 spring       L 27.89664 -81.58064
## 3357                 72 spring       L 27.89664 -81.58064
## 3358                 72 spring       L 27.89664 -81.58064
## 3359                 72 spring       L 27.89664 -81.58064
## 3360                 72 spring       L 27.89664 -81.58064
## 3361                 72 spring       L 27.89664 -81.58064
## 3362                 72 spring       L 27.89664 -81.58064
## 3363                 72 spring       L 27.89664 -81.58064
## 3364                 72 spring       L 27.89664 -81.58064
## 3365                 72 spring       L 27.89664 -81.58064
## 3366                 72 spring       L 27.89664 -81.58064
## 3367                 72 spring       L 27.89664 -81.58064
## 3368                 72 spring       L 27.89664 -81.58064
## 3369                 72 spring       L 27.89664 -81.58064
## 3370                 72 spring       L 27.89664 -81.58064
## 3371                 72 spring       L 27.89664 -81.58064
## 3372                 72 spring       L 27.89664 -81.58064
## 3373                 72 spring       L 27.89664 -81.58064
## 3374                 72 spring       L 27.89664 -81.58064
## 3375                 72 spring       L 27.89664 -81.58064
## 3376                 72 spring       L 27.89664 -81.58064
## 3377                 72 spring       L 27.89664 -81.58064
## 3378                 72 spring       L 27.89664 -81.58064
## 3379                 72 spring       L 27.89664 -81.58064
## 3380                 72 spring       L 27.89664 -81.58064
## 3381                 72 spring       L 27.89664 -81.58064
## 3382                 72 spring       L 27.89664 -81.58064
## 3383                 72 spring       L 27.89664 -81.58064
## 3384                 72 spring       L 27.89664 -81.58064
## 3385                 72 spring       L 27.89664 -81.58064
## 3386                 72 spring       L 27.89664 -81.58064
## 3387                 72 spring       L 27.89664 -81.58064
## 3388                 72 spring       L 27.89664 -81.58064
## 3389                 72 spring       L 27.89664 -81.58064
## 3390                 72 spring       L 27.89664 -81.58064
## 3391                 72 spring       L 27.89664 -81.58064
## 3392                 72 spring       L 27.89664 -81.58064
## 3393                 72 spring       L 27.89664 -81.58064
## 3394                 72 spring       L 28.79642 -81.87792
## 3395                 72 spring       L 28.79642 -81.87792
## 3396                 72 spring       L 28.79642 -81.87792
## 3397                 72 spring       L 28.79642 -81.87792
## 3398                 72 spring       L 28.79642 -81.87792
## 3399                 72 spring       L 28.79642 -81.87792
## 3400                 72 spring       L 28.79642 -81.87792
## 3401                 72 spring       L 28.79642 -81.87792
## 3402                 72 spring       L 28.79642 -81.87792
## 3403                 72 spring       L 28.79642 -81.87792
## 3404                 72 spring       L 28.79642 -81.87792
## 3405                 72 spring       L 28.79642 -81.87792
## 3406                 72 spring       L 28.79642 -81.87792
## 3407                 72 spring       L 28.79642 -81.87792
## 3408                 72 spring       L 28.79642 -81.87792
## 3409                 72 spring       L 28.79642 -81.87792
## 3410                 72 spring       L 28.79642 -81.87792
## 3411                 72 spring       L 28.79642 -81.87792
## 3412                 72 spring       L 28.79642 -81.87792
## 3413                 72 spring       L 28.79642 -81.87792
## 3414                 72 spring       L 28.79642 -81.87792
## 3415                 72 spring       L 28.79642 -81.87792
## 3416                 72 spring       L 28.79642 -81.87792
## 3417                 72 spring       L 28.79642 -81.87792
## 3418                 72 spring       L 28.79642 -81.87792
## 3419                 72 spring       L 28.79642 -81.87792
## 3420                 72 spring       L 28.79642 -81.87792
## 3421                 72 spring       L 28.79642 -81.87792
## 3422                 72 spring       L 28.79642 -81.87792
## 3423                 72 spring       L 28.79642 -81.87792
## 3424                 72 spring       L 28.79642 -81.87792
## 3425                 72 spring       L 28.79642 -81.87792
## 3426                 72 spring       L 28.79642 -81.87792
## 3427                 72 spring       L 28.79642 -81.87792
## 3428                 72 spring       L 28.79642 -81.87792
## 3429                 72 spring       L 28.79642 -81.87792
## 3430                 72 spring       L 28.79642 -81.87792
## 3431                 72 spring       L 28.79642 -81.87792
## 3432                 72 spring       L 28.79642 -81.87792
## 3433                 72 spring       L 28.79642 -81.87792
## 3434                 72 spring       L 28.79642 -81.87792
## 3435                 72 spring       L 28.79642 -81.87792
## 3436                 72 spring       L 28.79642 -81.87792
## 3437                 72 spring       L 28.79642 -81.87792
## 3438                 72 spring       L 28.79642 -81.87792
## 3439                 72 spring       L 28.79642 -81.87792
## 3440                 72 spring       L 28.79642 -81.87792
## 3441                 72 spring       L 28.79642 -81.87792
## 3442                 72 spring       L 28.79642 -81.87792
## 3443                 72 spring       L 28.79642 -81.87792
## 3444                 72 spring       L 28.79642 -81.87792
## 3445                 72 spring       S 28.79642 -81.87792
## 3446                 72 spring       L 28.79642 -81.87792
## 3447                 72 spring       L 28.79642 -81.87792
## 3448                 72 spring       L 25.49116 -80.48571
## 3449                 72 spring       L 25.49116 -80.48571
## 3450                 72 spring       L 25.49116 -80.48571
## 3451                 72 spring       L 25.49116 -80.48571
## 3452                 72 spring       L 25.49116 -80.48571
## 3453                 72 spring       L 25.49116 -80.48571
## 3454                 72 spring       L 25.49116 -80.48571
## 3455                 72 spring       L 25.49116 -80.48571
## 3456                 72 spring       L 25.49116 -80.48571
## 3457                 72 spring       L 25.49116 -80.48571
## 3458                 72 spring       L 25.49116 -80.48571
## 3459                 72 spring       L 25.49116 -80.48571
## 3460                 72 spring       L 25.49116 -80.48571
## 3461                 72 spring       L 25.49116 -80.48571
## 3462                 72 spring       L 25.49116 -80.48571
## 3463                 72 spring       L 25.49116 -80.48571
## 3464                 72 spring       L 25.49116 -80.48571
## 3465                 72 spring       L 25.49116 -80.48571
## 3466                 72 spring       L 25.49116 -80.48571
## 3467                 72 spring       L 25.49116 -80.48571
## 3468                 72 spring       L 25.49116 -80.48571
## 3469                 72 spring       L 25.49116 -80.48571
## 3470                 72 spring       L 25.49116 -80.48571
## 3471                 72 spring       L 25.49116 -80.48571
## 3472                 72 spring       L 25.49116 -80.48571
## 3473                 72 spring       L 25.49116 -80.48571
## 3474                 72 spring       L 25.49116 -80.48571
## 3475                 72 spring       L 25.49116 -80.48571
## 3476                 72 spring       L 25.49116 -80.48571
## 3477                 72 spring       L 25.49116 -80.48571
## 3478                 72 spring       S 25.49116 -80.48571
## 3479                 72 spring       L 25.49116 -80.48571
## 3480                 72 spring       S 25.49116 -80.48571
## 3481                 72 spring       L 25.49116 -80.48571
## 3482                 72 spring       L 25.49116 -80.48571
## 3483                 72 spring       L 25.49116 -80.48571
## 3484                 72 spring       L 25.49116 -80.48571
## 3485                 72 spring       S 25.49116 -80.48571
##                             diapause field_date_collected
## 1                                              04.28.2013
## 2                                              04.28.2013
## 3                                              04.28.2013
## 4                                              04.28.2013
## 5                                              04.28.2013
## 6                                              04.28.2013
## 7                                              04.28.2013
## 8                                              04.28.2013
## 9                                              04.29.2013
## 10                                             04.29.2013
## 11                                             04.29.2013
## 12                                             04.29.2013
## 13                                             04.29.2013
## 14                                             04.29.2013
## 15                                             04.29.2013
## 16                                             04.29.2013
## 17                                             04.29.2013
## 18                                             04.29.2013
## 19                                             04.29.2013
## 20                                             04.29.2013
## 21                                             04.29.2013
## 22                                             04.29.2013
## 23                                             04.29.2013
## 24                                             04.29.2013
## 25                                             04.29.2013
## 26                                             04.29.2013
## 27                                             04.29.2013
## 28                                             04.29.2013
## 29                                             04.29.2013
## 30                                             04.29.2013
## 31                                             04.29.2013
## 32                                             04.29.2013
## 33                                             04.29.2013
## 34                                             04.29.2013
## 35                                             04.29.2013
## 36                                             04.29.2013
## 37                                             04.29.2013
## 38                                             04.29.2013
## 39                                             04.29.2013
## 40                                             04.29.2013
## 41                                             04.29.2013
## 42                                             04.29.2013
## 43                                             04.29.2013
## 44                                             04.29.2013
## 45                                             04.29.2013
## 46                                             04.29.2013
## 47                                             04.29.2013
## 48                                             04.29.2013
## 49                                             04.29.2013
## 50                                             04.29.2013
## 51                                             04.29.2013
## 52                                             04.29.2013
## 53                                             04.29.2013
## 54                                             04.29.2013
## 55                                             04.29.2013
## 56                                             04.29.2013
## 57                                             04.29.2013
## 58                                             04.29.2013
## 59                                             04.29.2013
## 60                                             04.29.2013
## 61                                             04.29.2013
## 62                                             04.29.2013
## 63                                             04.29.2013
## 64                                             04.29.2013
## 65                                             04.29.2013
## 66                                             04.29.2013
## 67                                             04.29.2013
## 68                                             04.29.2013
## 69                                             04.29.2013
## 70                                             04.29.2013
## 71                                             04.29.2013
## 72                                             04.29.2013
## 73                                             04.29.2013
## 74                                             04.29.2013
## 75                                             04.29.2013
## 76                                             05.06.2013
## 77                                             05.06.2013
## 78                                             05.06.2013
## 79                                             05.06.2013
## 80                                             05.06.2013
## 81                                             05.06.2013
## 82                                             05.06.2013
## 83                                             05.06.2013
## 84                                             05.06.2013
## 85                                             05.06.2013
## 86                                             05.06.2013
## 87                                             05.06.2013
## 88                                             05.06.2013
## 89                                             05.06.2013
## 90                                             05.06.2013
## 91                                             05.06.2013
## 92                                             05.06.2013
## 93                                             05.06.2013
## 94                                             05.06.2013
## 95                                             05.06.2013
## 96                                             05.06.2013
## 97                                             05.06.2013
## 98                                             05.06.2013
## 99                                             05.06.2013
## 100                                            05.06.2013
## 101                                            05.06.2013
## 102                                            05.06.2013
## 103                                            05.06.2013
## 104                                            05.06.2013
## 105                                            05.06.2013
## 106                                            05.06.2013
## 107                                            05.06.2013
## 108                                            05.06.2013
## 109                                            05.06.2013
## 110                                            05.06.2013
## 111                                            05.06.2013
## 112                                            05.06.2013
## 113                                            05.06.2013
## 114           diapausing aggregation           04.26.2013
## 115           diapausing aggregation           04.26.2013
## 116           diapausing aggregation           04.26.2013
## 117           diapausing aggregation           04.26.2013
## 118           diapausing aggregation           04.26.2013
## 119           diapausing aggregation           04.26.2013
## 120           diapausing aggregation           04.26.2013
## 121           diapausing aggregation           04.26.2013
## 122           diapausing aggregation           04.26.2013
## 123           diapausing aggregation           04.26.2013
## 124           diapausing aggregation           04.26.2013
## 125           diapausing aggregation           04.26.2013
## 126           diapausing aggregation           04.26.2013
## 127           diapausing aggregation           04.26.2013
## 128           diapausing aggregation           04.26.2013
## 129           diapausing aggregation           04.26.2013
## 130           diapausing aggregation           04.26.2013
## 131           diapausing aggregation           04.26.2013
## 132           diapausing aggregation           04.26.2013
## 133           diapausing aggregation           04.26.2013
## 134           diapausing aggregation           04.26.2013
## 135           diapausing aggregation           04.26.2013
## 136           diapausing aggregation           04.26.2013
## 137           diapausing aggregation           04.26.2013
## 138           diapausing aggregation           04.26.2013
## 139           diapausing aggregation           04.26.2013
## 140                                            04.25.2013
## 141                                            04.25.2013
## 142                                            04.25.2013
## 143                                            04.25.2013
## 144                                            04.25.2013
## 145                                            04.25.2013
## 146                                            04.25.2013
## 147                                            04.25.2013
## 148                                            04.25.2013
## 149                                            04.25.2013
## 150                                            04.25.2013
## 151                                            04.25.2013
## 152                                            04.25.2013
## 153                                            05.05.2013
## 154                                            05.05.2013
## 155                                            05.05.2013
## 156                                            05.05.2013
## 157                                            05.05.2013
## 158                                            05.05.2013
## 159                                            05.05.2013
## 160                                            05.05.2013
## 161                                            05.05.2013
## 162                                            05.05.2013
## 163                                            05.05.2013
## 164                                            05.05.2013
## 165                                            05.05.2013
## 166                                            05.05.2013
## 167                                            05.05.2013
## 168                                            05.05.2013
## 169                                            05.05.2013
## 170                                            05.05.2013
## 171                                            05.05.2013
## 172                                            05.05.2013
## 173                                            05.05.2013
## 174                                            05.05.2013
## 175                                            05.05.2013
## 176                                            05.05.2013
## 177                                            05.05.2013
## 178                                            05.05.2013
## 179                                            05.05.2013
## 180                                            05.05.2013
## 181                                            05.05.2013
## 182                                            05.05.2013
## 183                                            05.05.2013
## 184                                            05.05.2013
## 185                                            05.05.2013
## 186                                            05.05.2013
## 187                                            05.05.2013
## 188                                            05.05.2013
## 189                                            05.05.2013
## 190                                            05.05.2013
## 191                                            05.05.2013
## 192                                            05.05.2013
## 193                                            05.05.2013
## 194                                            05.05.2013
## 195                                            05.05.2013
## 196                                            05.05.2013
## 197                                            05.05.2013
## 198                                            05.05.2013
## 199                                            05.05.2013
## 200                                            05.05.2013
## 201                                            04.30.2013
## 202                                            04.30.2013
## 203                                            04.30.2013
## 204                                            04.30.2013
## 205                                            04.30.2013
## 206                                            04.30.2013
## 207                                            04.30.2013
## 208                                            04.30.2013
## 209                                            04.30.2013
## 210                                            04.30.2013
## 211                                            04.30.2013
## 212                                            04.30.2013
## 213                                            04.30.2013
## 214                                            04.30.2013
## 215                                            04.30.2013
## 216                                            04.30.2013
## 217                                            04.30.2013
## 218                                            04.30.2013
## 219                                            04.30.2013
## 220                                            04.30.2013
## 221                                            04.30.2013
## 222                                            04.30.2013
## 223                                            04.30.2013
## 224                                            04.30.2013
## 225                                            04.30.2013
## 226                                            04.30.2013
## 227                                            04.30.2013
## 228                                            04.30.2013
## 229                                            04.30.2013
## 230                                            05.01.2013
## 231                                            05.01.2013
## 232                                            05.01.2013
## 233                                            05.01.2013
## 234                                            05.01.2013
## 235                                            05.01.2013
## 236                                            05.01.2013
## 237                                            05.01.2013
## 238                                            05.01.2013
## 239                                            05.01.2013
## 240                                            05.01.2013
## 241                                            05.01.2013
## 242                                            05.01.2013
## 243                                            05.01.2013
## 244                                            05.01.2013
## 245                                            05.01.2013
## 246                                            05.01.2013
## 247                                            05.01.2013
## 248                                            05.01.2013
## 249                                            05.01.2013
## 250                                            05.01.2013
## 251                                            05.01.2013
## 252                                            05.01.2013
## 253                                            05.01.2013
## 254                                            05.01.2013
## 255                                            05.01.2013
## 256                                            05.01.2013
## 257                                            05.01.2013
## 258                                            05.01.2013
## 259                                            05.01.2013
## 260                                            05.01.2013
## 261                                            05.02.2013
## 262                                            05.02.2013
## 263                                            05.02.2013
## 264                                            05.02.2013
## 265                                            05.02.2013
## 266                                            05.02.2013
## 267                                            05.02.2013
## 268                                            05.02.2013
## 269                                            05.02.2013
## 270                                            05.02.2013
## 271                                            05.02.2013
## 272                                            05.02.2013
## 273                                            05.02.2013
## 274                                            05.02.2013
## 275                                            05.02.2013
## 276                                            05.02.2013
## 277                                            05.02.2013
## 278                                            05.02.2013
## 279                                            05.02.2013
## 280                                            05.02.2013
## 281                                            05.02.2013
## 282                                            05.02.2013
## 283                                            05.02.2013
## 284                                            05.02.2013
## 285                                            05.02.2013
## 286                                            05.04.2013
## 287                                            05.04.2013
## 288                                            05.04.2013
## 289                                            05.04.2013
## 290                                            05.04.2013
## 291                                            05.04.2013
## 292                                            05.04.2013
## 293                                            05.04.2013
## 294                                            05.04.2013
## 295                                            05.04.2013
## 296                                            05.04.2013
## 297                                            05.04.2013
## 298                                            05.04.2013
## 299                                            05.04.2013
## 300                                            05.04.2013
## 301                                            05.04.2013
## 302                                            05.04.2013
## 303                                            05.04.2013
## 304                                            05.04.2013
## 305                                            05.04.2013
## 306                                            05.04.2013
## 307                                            05.04.2013
## 308                                            05.04.2013
## 309                                            05.04.2013
## 310                                            05.04.2013
## 311                                            05.04.2013
## 312                                            05.04.2013
## 313                                            05.04.2013
## 314                                            05.04.2013
## 315                                            05.04.2013
## 316                                            05.04.2013
## 317                                            05.04.2013
## 318                                            05.04.2013
## 319                                            05.04.2013
## 320                                            05.04.2013
## 321                                            05.04.2013
## 322                                                      
## 323                                                      
## 324                                                      
## 325                                                      
## 326                                                      
## 327                                                      
## 328                                                      
## 329                                                      
## 330                                                      
## 331                                                      
## 332                                                      
## 333                                                      
## 334                                                      
## 335                                                      
## 336                                                      
## 337                                                      
## 338                                                      
## 339                                                      
## 340                                                      
## 341                                                      
## 342                                                      
## 343                                                      
## 344                                                      
## 345                                                      
## 346                                                      
## 347                                                      
## 348                                                      
## 349                                                      
## 350                                                      
## 351                                                      
## 352                                                      
## 353                                                      
## 354                                                      
## 355                                                      
## 356                                                      
## 357                                                      
## 358                                                      
## 359                                                      
## 360                                                      
## 361                                                      
## 362                                                      
## 363                                                      
## 364                                                      
## 365                                                      
## 366                                                      
## 367                                                      
## 368                                                      
## 369                                                      
## 370                                                      
## 371                                                      
## 372                                                      
## 373                                                      
## 374                                                      
## 375                                                      
## 376                                                      
## 377                                                      
## 378                                                      
## 379                                                      
## 380                                                      
## 381                                                      
## 382                                                      
## 383                                                      
## 384                                                      
## 385                                                      
## 386                                                      
## 387                                                      
## 388                                                      
## 389                                                      
## 390                                                      
## 391                                                      
## 392                                                      
## 393                                                      
## 394                                                      
## 395                                                      
## 396                                                      
## 397                                                      
## 398                                                      
## 399                                                      
## 400                                                      
## 401                                                      
## 402                                                      
## 403                                                      
## 404                                                      
## 405                                                      
## 406                                                      
## 407                                                      
## 408                                                      
## 409                                                      
## 410                                                      
## 411                                                      
## 412                                                      
## 413                                                      
## 414                                                      
## 415                                                      
## 416                                                      
## 417                                                      
## 418                                                      
## 419                                                      
## 420                                                      
## 421                                                      
## 422                                                      
## 423                                                      
## 424                                                      
## 425                                                      
## 426                                                      
## 427                                                      
## 428                                                      
## 429                                                      
## 430                                                      
## 431                                                      
## 432                                                      
## 433                                                      
## 434                                                      
## 435                                                      
## 436                                                      
## 437                                                      
## 438                                                      
## 439                                                      
## 440                                                      
## 441                                                      
## 442                                                      
## 443                                                      
## 444                                                      
## 445                                                      
## 446                                                      
## 447                                                      
## 448                                                      
## 449                                                      
## 450                                                      
## 451                                                      
## 452                                                      
## 453                                                      
## 454                                                      
## 455                                                      
## 456                                                      
## 457                                                      
## 458                                                      
## 459                                                      
## 460                                                      
## 461                                                      
## 462                                                      
## 463                                                      
## 464                                                      
## 465                                                      
## 466                                                      
## 467                                                      
## 468                                                      
## 469                                                      
## 470                                                      
## 471                                                      
## 472                                                      
## 473                                                      
## 474                                                      
## 475                                                      
## 476                                                      
## 477                                                      
## 478                                                      
## 479                                                      
## 480                                                      
## 481                                                      
## 482                                                      
## 483                                                      
## 484                                                      
## 485                                                      
## 486                                                      
## 487                                                      
## 488                                                      
## 489                                                      
## 490                                                      
## 491                                                      
## 492                                                      
## 493                                                      
## 494                                                      
## 495                                                      
## 496                                                      
## 497                                                      
## 498                                                      
## 499                                                      
## 500                                                      
## 501                                                      
## 502                                                      
## 503                                                      
## 504                                                      
## 505                                                      
## 506                                                      
## 507                                                      
## 508                                                      
## 509                                                      
## 510                                                      
## 511                                                      
## 512                                                      
## 513                                                      
## 514                                                      
## 515                                                      
## 516                                                      
## 517                                                      
## 518                                                      
## 519                                                      
## 520                                                      
## 521                                                      
## 522                                                      
## 523                                                      
## 524                                                      
## 525                                                      
## 526                                                      
## 527                                                      
## 528                                                      
## 529                                                      
## 530                                                      
## 531                                                      
## 532                                                      
## 533                                                      
## 534                                                      
## 535                                                      
## 536                                                      
## 537                                                      
## 538                                                      
## 539                                                      
## 540                                                      
## 541                                                      
## 542                                                      
## 543                                                      
## 544                                                      
## 545                                                      
## 546                                                      
## 547                                                      
## 548                                                      
## 549                                                      
## 550                                                      
## 551                                                      
## 552                                                      
## 553                                                      
## 554                                                      
## 555                                                      
## 556                                                      
## 557                                                      
## 558                                                      
## 559                                                      
## 560                                                      
## 561                                                      
## 562                                                      
## 563                                                      
## 564                                                      
## 565                                                      
## 566                                                      
## 567                                                      
## 568                                                      
## 569                                                      
## 570                                                      
## 571                                                      
## 572                                                      
## 573                                                      
## 574                                                      
## 575                                                      
## 576                                                      
## 577                                                      
## 578                                                      
## 579                                                      
## 580                                                      
## 581                                                      
## 582                                                      
## 583                                                      
## 584                                                      
## 585                                                      
## 586                                                      
## 587                                                      
## 588                                                      
## 589                                                      
## 590                                                      
## 591                                                      
## 592                                                      
## 593                                                      
## 594                                                      
## 595                                                      
## 596                                                      
## 597                                                      
## 598                                                      
## 599                                                      
## 600                                                      
## 601                                                      
## 602                                                      
## 603                                                      
## 604                                                      
## 605                                                      
## 606                                                      
## 607                                                      
## 608                                                      
## 609                                                      
## 610                                                      
## 611                                                      
## 612                                                      
## 613                                                      
## 614                                                      
## 615                                                      
## 616                                                      
## 617                                                      
## 618                                                      
## 619                                                      
## 620                                                      
## 621                                                      
## 622                                                      
## 623                                                      
## 624                                                      
## 625                                                      
## 626                                                      
## 627                                                      
## 628                                                      
## 629                                                      
## 630                                                      
## 631                                                      
## 632                                                      
## 633                                                      
## 634                                                      
## 635                                                      
## 636                                                      
## 637                                                      
## 638                                                      
## 639                                                      
## 640                                                      
## 641                                                      
## 642                                                      
## 643                                                      
## 644                                                      
## 645                                                      
## 646                                                      
## 647                                                      
## 648                                                      
## 649                                                      
## 650                                                      
## 651                                                      
## 652                                                      
## 653                                                      
## 654                                                      
## 655                                                      
## 656                                                      
## 657                                                      
## 658                                                      
## 659                                                      
## 660                                                      
## 661                                                      
## 662                                                      
## 663                                                      
## 664                                                      
## 665                                                      
## 666                                                      
## 667                                                      
## 668                                                      
## 669                                                      
## 670                                                      
## 671                                                      
## 672                                                      
## 673                                                      
## 674                                                      
## 675                                                      
## 676                                                      
## 677                                                      
## 678                                                      
## 679                                                      
## 680                                                      
## 681                                                      
## 682                                                      
## 683                                                      
## 684                                                      
## 685                                                      
## 686                                                      
## 687                                                      
## 688                                                      
## 689                                                      
## 690                                                      
## 691                                                      
## 692                                                      
## 693                                                      
## 694                                                      
## 695                                                      
## 696                                                      
## 697                                                      
## 698                                                      
## 699                                                      
## 700                                                      
## 701                                                      
## 702                                                      
## 703                                                      
## 704                                                      
## 705                                                      
## 706                                                      
## 707                                                      
## 708                                                      
## 709                                                      
## 710                                                      
## 711                                                      
## 712                                                      
## 713                                                      
## 714                                                      
## 715                                                      
## 716                                                      
## 717                                                      
## 718                                                      
## 719                                                      
## 720                                                      
## 721                                                      
## 722                                                      
## 723                                                      
## 724                                                      
## 725                                                      
## 726                                                      
## 727                                                      
## 728                                                      
## 729                                                      
## 730                                                      
## 731                                                      
## 732                                                      
## 733                                                      
## 734                                                      
## 735                                                      
## 736                                                      
## 737                                                      
## 738                                                      
## 739                                                      
## 740                                                      
## 741                                                      
## 742                                                      
## 743                                                      
## 744                                                      
## 745                                                      
## 746                                                      
## 747                                                      
## 748                                                      
## 749                                                      
## 750                                                      
## 751                                                      
## 752                                                      
## 753                                                      
## 754                                                      
## 755                                                      
## 756                                                      
## 757                                                      
## 758                                                      
## 759                                                      
## 760                                                      
## 761                                                      
## 762                                                      
## 763                                                      
## 764                                                      
## 765                                                      
## 766                                                      
## 767                                                      
## 768                                                      
## 769                                                      
## 770                                                      
## 771                                                      
## 772                                                      
## 773                                                      
## 774                                                      
## 775                                                      
## 776                                                      
## 777                                                      
## 778                                                      
## 779                                                      
## 780                                                      
## 781                                                      
## 782                                                      
## 783                                                      
## 784                                                      
## 785                                                      
## 786                                                      
## 787                                                      
## 788                                                      
## 789                                                      
## 790                                                      
## 791                                                      
## 792                                                      
## 793                                                      
## 794                                                      
## 795                                                      
## 796                                                      
## 797                                                      
## 798                                                      
## 799                                                      
## 800                                                      
## 801                                                      
## 802                                                      
## 803                                                      
## 804                                                      
## 805                                                      
## 806                                                      
## 807                                                      
## 808                                                      
## 809                                                      
## 810                                                      
## 811                                                      
## 812                                                      
## 813                                                      
## 814                                                      
## 815                                                      
## 816                                                      
## 817                                                      
## 818                                                      
## 819                                                      
## 820                                                      
## 821                                                      
## 822                                                      
## 823                                                      
## 824                                                      
## 825                                                      
## 826                                                      
## 827                                                      
## 828                                                      
## 829                                                      
## 830                                                      
## 831                                                      
## 832                                                      
## 833                                                      
## 834                                                      
## 835                                                      
## 836                                                      
## 837                                                      
## 838                                                      
## 839                                                      
## 840                                                      
## 841                                                      
## 842                                                      
## 843                                                      
## 844                                                      
## 845                                                      
## 846                                                      
## 847                                                      
## 848                                                      
## 849                                                      
## 850                                                      
## 851                                                      
## 852                                                      
## 853                                                      
## 854                                                      
## 855                                                      
## 856                                                      
## 857                                                      
## 858                                                      
## 859                                                      
## 860                                                      
## 861                                                      
## 862                                                      
## 863                                                      
## 864                                                      
## 865                                                      
## 866                                                      
## 867                                                      
## 868                                                      
## 869                                                      
## 870                                                      
## 871                                                      
## 872                                                      
## 873                                                      
## 874                                                      
## 875                                                      
## 876                                                      
## 877                                                      
## 878                                                      
## 879                                                      
## 880                                                      
## 881                                                      
## 882                                                      
## 883                                                      
## 884                                                      
## 885                                                      
## 886                                                      
## 887                                                      
## 888                                                      
## 889                                                      
## 890                                                      
## 891                                                      
## 892                                                      
## 893                                                      
## 894                                                      
## 895                                                      
## 896                                                      
## 897                                                      
## 898                                                      
## 899                                                      
## 900                                                      
## 901                                                      
## 902                                                      
## 903                                                      
## 904                                                      
## 905                                                      
## 906                                                      
## 907                                                      
## 908                                                      
## 909                                                      
## 910                                                      
## 911                                                      
## 912                                                      
## 913                                                      
## 914                                                      
## 915                                                      
## 916                                                      
## 917                                                      
## 918                                                      
## 919                                                      
## 920                                                      
## 921                                                      
## 922                                                      
## 923                                                      
## 924                                                      
## 925                                                      
## 926                                                      
## 927                                                      
## 928                                                      
## 929                                                      
## 930                                                      
## 931                                                      
## 932                                                      
## 933                                                      
## 934                                                      
## 935                                                      
## 936                                                      
## 937                                                      
## 938                                                      
## 939                                                      
## 940                                                      
## 941                                                      
## 942                                                      
## 943                                                      
## 944                                                      
## 945                                                      
## 946                                                      
## 947                                                      
## 948                                                      
## 949                                                      
## 950                                                      
## 951                                                      
## 952                                                      
## 953                                                      
## 954                                                      
## 955                                                      
## 956                                                      
## 957                                                      
## 958                                                      
## 959                                                      
## 960                                                      
## 961                                                      
## 962                                                      
## 963                                                      
## 964                                                      
## 965                                                      
## 966                                                      
## 967                                                      
## 968                                                      
## 969                                                      
## 970                                                      
## 971                                                      
## 972                                                      
## 973                                                      
## 974                                                      
## 975                                                      
## 976                                                      
## 977                                                      
## 978                                                      
## 979                                                      
## 980                                                      
## 981                                                      
## 982                                                      
## 983                                                      
## 984                                                      
## 985                                                      
## 986                                                      
## 987                                                      
## 988                                                      
## 989                                                      
## 990                                                      
## 991                                                      
## 992                                                      
## 993                                                      
## 994                                                      
## 995                                                      
## 996                                                      
## 997                                                      
## 998                                                      
## 999                                                      
## 1000                                                     
## 1001                                                     
## 1002                                                     
## 1003                                                     
## 1004                                                     
## 1005                                                     
## 1006                                                     
## 1007                                                     
## 1008                                                     
## 1009                                                     
## 1010                                                     
## 1011                                                     
## 1012                                                     
## 1013                                                     
## 1014                                                     
## 1015                                                     
## 1016                                                     
## 1017                                                     
## 1018                                                     
## 1019                                                     
## 1020                                                     
## 1021                                                     
## 1022                                                     
## 1023                                                     
## 1024                                                     
## 1025                                                     
## 1026                                                     
## 1027                                                     
## 1028                                                     
## 1029                                                     
## 1030                                                     
## 1031                                                     
## 1032                                                     
## 1033                                                     
## 1034                                                     
## 1035                                                     
## 1036                                                     
## 1037                                                     
## 1038                                                     
## 1039                                                     
## 1040                                                     
## 1041                                                     
## 1042                                                     
## 1043                                                     
## 1044                                                     
## 1045                                                     
## 1046                                                     
## 1047                                                     
## 1048                                                     
## 1049                                                     
## 1050                                                     
## 1051                                                     
## 1052                                                     
## 1053                                                     
## 1054                                                     
## 1055                                                     
## 1056                                                     
## 1057                                                     
## 1058                                                     
## 1059                                                     
## 1060                                                     
## 1061                                                     
## 1062                                                     
## 1063                                                     
## 1064                  non-diapausing           12.18.2016
## 1065                  non-diapausing           12.18.2016
## 1066                  non-diapausing           12.18.2016
## 1067                  non-diapausing           12.18.2016
## 1068                  non-diapausing           12.18.2016
## 1069                  non-diapausing           12.18.2016
## 1070                  non-diapausing           12.18.2016
## 1071                  non-diapausing           12.18.2016
## 1072                  non-diapausing           12.18.2016
## 1073                  non-diapausing           12.18.2016
## 1074                  non-diapausing           12.18.2016
## 1075                  non-diapausing           12.18.2016
## 1076                  non-diapausing           12.18.2016
## 1077                  non-diapausing           12.18.2016
## 1078                  non-diapausing           12.18.2016
## 1079                  non-diapausing           12.18.2016
## 1080                  non-diapausing           12.18.2016
## 1081                  non-diapausing           12.18.2016
## 1082                  non-diapausing           12.18.2016
## 1083                  non-diapausing           12.18.2016
## 1084                  non-diapausing           12.18.2016
## 1085                  non-diapausing           12.18.2016
## 1086                  non-diapausing           12.18.2016
## 1087                  non-diapausing           12.18.2016
## 1088                  non-diapausing           12.18.2016
## 1089                  non-diapausing           12.18.2016
## 1090                  non-diapausing           12.18.2016
## 1091                  non-diapausing           12.18.2016
## 1092                  non-diapausing           12.18.2016
## 1093                  non-diapausing           12.18.2016
## 1094                  non-diapausing           12.18.2016
## 1095                  non-diapausing           12.18.2016
## 1096                  non-diapausing           12.18.2016
## 1097                  non-diapausing           12.18.2016
## 1098                  non-diapausing           12.18.2016
## 1099                  non-diapausing           12.18.2016
## 1100                  non-diapausing           12.18.2016
## 1101                  non-diapausing           12.18.2016
## 1102                  non-diapausing           12.18.2016
## 1103                  non-diapausing           12.18.2016
## 1104                  non-diapausing           12.18.2016
## 1105                  non-diapausing           12.18.2016
## 1106                  non-diapausing           12.18.2016
## 1107                  non-diapausing           12.18.2016
## 1108                  non-diapausing           12.18.2016
## 1109                  non-diapausing           12.18.2016
## 1110                  non-diapausing           12.18.2016
## 1111                  non-diapausing           12.18.2016
## 1112                  non-diapausing           12.18.2016
## 1113                  non-diapausing           12.18.2016
## 1114                  non-diapausing           12.18.2016
## 1115                  non-diapausing           12.18.2016
## 1116                  non-diapausing           12.18.2016
## 1117                  non-diapausing           12.18.2016
## 1118                  non-diapausing           12.18.2016
## 1119                  non-diapausing           12.18.2016
## 1120                  non-diapausing           12.18.2016
## 1121                                           12.15.2016
## 1122                                           12.15.2016
## 1123                                           12.15.2016
## 1124                                           12.15.2016
## 1125                                           12.15.2016
## 1126                                           12.15.2016
## 1127                                           12.15.2016
## 1128                                           12.15.2016
## 1129                                           12.15.2016
## 1130                                           12.15.2016
## 1131                                           12.15.2016
## 1132                                           12.15.2016
## 1133                                           12.15.2016
## 1134                                           12.14.2016
## 1135                                           12.14.2016
## 1136                                           12.14.2016
## 1137                                           12.14.2016
## 1138                                           12.14.2016
## 1139                                           12.14.2016
## 1140                                           12.14.2016
## 1141                                           12.14.2016
## 1142                                           12.14.2016
## 1143                                           12.14.2016
## 1144                                           12.14.2016
## 1145                                           12.14.2016
## 1146                                           12.14.2016
## 1147                                           12.14.2016
## 1148                                           12.14.2016
## 1149                                           12.14.2016
## 1150                                           12.14.2016
## 1151                                           12.14.2016
## 1152                                           12.14.2016
## 1153                                           12.14.2016
## 1154                                           12.14.2016
## 1155                                           12.14.2016
## 1156                                           12.14.2016
## 1157                                           12.14.2016
## 1158                                           12.14.2016
## 1159                                           12.14.2016
## 1160                                           12.14.2016
## 1161                                           12.14.2016
## 1162                                           12.14.2016
## 1163                                           12.14.2016
## 1164                                           12.14.2016
## 1165                                           12.14.2016
## 1166                                           12.14.2016
## 1167                                           12.14.2016
## 1168                                           12.14.2016
## 1169                                           12.14.2016
## 1170                                           12.14.2016
## 1171                                           12.14.2016
## 1172                                           12.14.2016
## 1173                                           12.14.2016
## 1174                                           12.14.2016
## 1175                                           12.14.2016
## 1176                                           12.14.2016
## 1177                                           12.14.2016
## 1178                                           12.14.2016
## 1179                                           12.14.2016
## 1180                                           12.14.2016
## 1181                                           12.14.2016
## 1182                                           12.14.2016
## 1183                                           12.14.2016
## 1184                                           12.14.2016
## 1185                                           12.14.2016
## 1186                                           12.14.2016
## 1187                  non-diapausing           12.14.2016
## 1188                  non-diapausing           12.14.2016
## 1189                  non-diapausing           12.14.2016
## 1190                  non-diapausing           12.14.2016
## 1191                  non-diapausing           12.14.2016
## 1192                  non-diapausing           12.14.2016
## 1193                  non-diapausing           12.14.2016
## 1194                  non-diapausing           12.14.2016
## 1195                  non-diapausing           12.14.2016
## 1196                  non-diapausing           12.14.2016
## 1197                  non-diapausing           12.14.2016
## 1198                                           12.16.2016
## 1199                                           12.16.2016
## 1200                                           12.16.2016
## 1201                                           12.16.2016
## 1202                                           12.16.2016
## 1203                                           12.16.2016
## 1204                                           12.16.2016
## 1205                                           12.16.2016
## 1206                                           12.16.2016
## 1207                                           12.16.2016
## 1208                                           12.16.2016
## 1209                                           12.16.2016
## 1210                                           12.16.2016
## 1211                                           12.16.2016
## 1212                                           12.16.2016
## 1213                                           12.13.2016
## 1214                                           12.13.2016
## 1215                                           12.13.2016
## 1216                                           12.13.2016
## 1217                                           12.13.2016
## 1218                                           12.13.2016
## 1219                                           12.13.2016
## 1220                                           12.13.2016
## 1221                                           12.13.2016
## 1222                                           12.13.2016
## 1223                                           12.13.2016
## 1224                                           12.13.2016
## 1225                                           12.13.2016
## 1226                                           12.13.2016
## 1227                                           12.13.2016
## 1228                                           12.13.2016
## 1229                                           12.13.2016
## 1230                                           12.13.2016
## 1231                                           12.13.2016
## 1232                                           12.13.2016
## 1233                  non-diapausing           12.13.2016
## 1234                  non-diapausing           12.13.2016
## 1235                  non-diapausing           12.13.2016
## 1236                  non-diapausing           12.13.2016
## 1237                  non-diapausing           12.13.2016
## 1238                  non-diapausing           12.13.2016
## 1239                  non-diapausing           12.13.2016
## 1240                  non-diapausing           12.13.2016
## 1241                  non-diapausing           12.13.2016
## 1242                  non-diapausing           12.13.2016
## 1243                  non-diapausing           12.13.2016
## 1244                  non-diapausing           12.13.2016
## 1245                  non-diapausing           12.13.2016
## 1246                  non-diapausing           12.13.2016
## 1247                  non-diapausing           12.13.2016
## 1248                  non-diapausing           12.13.2016
## 1249                  non-diapausing           12.13.2016
## 1250                  non-diapausing           12.13.2016
## 1251                  non-diapausing           12.13.2016
## 1252                  non-diapausing           12.13.2016
## 1253                  non-diapausing           12.13.2016
## 1254                  non-diapausing           12.13.2016
## 1255                  non-diapausing           12.13.2016
## 1256                  non-diapausing           12.13.2016
## 1257                  non-diapausing           12.13.2016
## 1258                  non-diapausing           12.13.2016
## 1259                  non-diapausing           12.13.2016
## 1260                  non-diapausing           12.13.2016
## 1261                  non-diapausing           12.13.2016
## 1262                  non-diapausing           12.13.2016
## 1263                  non-diapausing           12.13.2016
## 1264                  non-diapausing           12.13.2016
## 1265                  non-diapausing           12.13.2016
## 1266                  non-diapausing           12.13.2016
## 1267                  non-diapausing           12.13.2016
## 1268                  non-diapausing           12.13.2016
## 1269                  non-diapausing           12.13.2016
## 1270                  non-diapausing           12.13.2016
## 1271                  non-diapausing           12.13.2016
## 1272                  non-diapausing           12.13.2016
## 1273                  non-diapausing           12.13.2016
## 1274                  non-diapausing           12.13.2016
## 1275                  non-diapausing           12.13.2016
## 1276                  non-diapausing           12.13.2016
## 1277                  non-diapausing           12.13.2016
## 1278                  non-diapausing           12.14.2016
## 1279                  non-diapausing           12.14.2016
## 1280                  non-diapausing           12.14.2016
## 1281                  non-diapausing           12.14.2016
## 1282                  non-diapausing           12.14.2016
## 1283                  non-diapausing           12.14.2016
## 1284                  non-diapausing           12.14.2016
## 1285                  non-diapausing           12.14.2016
## 1286                  non-diapausing           12.14.2016
## 1287                  non-diapausing           12.14.2016
## 1288                  non-diapausing           12.14.2016
## 1289                  non-diapausing           12.14.2016
## 1290                  non-diapausing           12.14.2016
## 1291                  non-diapausing           12.14.2016
## 1292                  non-diapausing           12.14.2016
## 1293                  non-diapausing           12.14.2016
## 1294                  non-diapausing           12.14.2016
## 1295                  non-diapausing           12.14.2016
## 1296                  non-diapausing           12.14.2016
## 1297                  non-diapausing           12.14.2016
## 1298                  non-diapausing           12.14.2016
## 1299                  non-diapausing           12.14.2016
## 1300                  non-diapausing           12.14.2016
## 1301                  non-diapausing           12.14.2016
## 1302                  non-diapausing           12.14.2016
## 1303                  non-diapausing           12.14.2016
## 1304                  non-diapausing           12.14.2016
## 1305                  non-diapausing           12.14.2016
## 1306                  non-diapausing           12.14.2016
## 1307                  non-diapausing           12.14.2016
## 1308                  non-diapausing           12.14.2016
## 1309                  non-diapausing           12.14.2016
## 1310                  non-diapausing           12.14.2016
## 1311                  non-diapausing           12.14.2016
## 1312                  non-diapausing           12.14.2016
## 1313                  non-diapausing           12.14.2016
## 1314                  non-diapausing           12.14.2016
## 1315                  non-diapausing            8.25.2017
## 1316                  non-diapausing            8.25.2017
## 1317                  non-diapausing            8.25.2017
## 1318                  non-diapausing            8.25.2017
## 1319                  non-diapausing            8.25.2017
## 1320                  non-diapausing            8.25.2017
## 1321                  non-diapausing            8.25.2017
## 1322                  non-diapausing            8.25.2017
## 1323                  non-diapausing            8.25.2017
## 1324                  non-diapausing            8.25.2017
## 1325                  non-diapausing            8.25.2017
## 1326                  non-diapausing            8.25.2017
## 1327                  non-diapausing            8.25.2017
## 1328                  non-diapausing            8.25.2017
## 1329                  non-diapausing            8.25.2017
## 1330                  non-diapausing            8.25.2017
## 1331                  non-diapausing            8.25.2017
## 1332                  non-diapausing            8.25.2017
## 1333                  non-diapausing            8.25.2017
## 1334                  non-diapausing            8.25.2017
## 1335                  non-diapausing            8.25.2017
## 1336                  non-diapausing            8.25.2017
## 1337                  non-diapausing            8.25.2017
## 1338                  non-diapausing            8.25.2017
## 1339                  non-diapausing            8.25.2017
## 1340                  non-diapausing            8.25.2017
## 1341                  non-diapausing            8.25.2017
## 1342                  non-diapausing            8.25.2017
## 1343                  non-diapausing            8.25.2017
## 1344                  non-diapausing            8.25.2017
## 1345                  non-diapausing            8.25.2017
## 1346                  non-diapausing            8.25.2017
## 1347                  non-diapausing            8.25.2017
## 1348                  non-diapausing            8.25.2017
## 1349                  non-diapausing            8.25.2017
## 1350                  non-diapausing            8.25.2017
## 1351                  non-diapausing            8.25.2017
## 1352                  non-diapausing            8.25.2017
## 1353                  non-diapausing            8.25.2017
## 1354                  non-diapausing            8.25.2017
## 1355                  non-diapausing            8.25.2017
## 1356                  non-diapausing            8.25.2017
## 1357                  non-diapausing            8.25.2017
## 1358                  non-diapausing            8.25.2017
## 1359                  non-diapausing            8.25.2017
## 1360                  non-diapausing            8.25.2017
## 1361                  non-diapausing            8.25.2017
## 1362                  non-diapausing            8.25.2017
## 1363                  non-diapausing            8.25.2017
## 1364                  non-diapausing            8.25.2017
## 1365                  non-diapausing            8.25.2017
## 1366                  non-diapausing            8.25.2017
## 1367                  non-diapausing            8.25.2017
## 1368                  non-diapausing            8.25.2017
## 1369                  non-diapausing            8.25.2017
## 1370                  non-diapausing            8.25.2017
## 1371                  non-diapausing            8.25.2017
## 1372                  non-diapausing            8.25.2017
## 1373                  non-diapausing            8.25.2017
## 1374                  non-diapausing            8.25.2017
## 1375         diapausing aggregration           08.15.2017
## 1376         diapausing aggregration           08.15.2017
## 1377         diapausing aggregration           08.15.2017
## 1378         diapausing aggregration           08.15.2017
## 1379         diapausing aggregration           08.15.2017
## 1380         diapausing aggregration           08.15.2017
## 1381         diapausing aggregration           08.15.2017
## 1382         diapausing aggregration           08.15.2017
## 1383         diapausing aggregration           08.15.2017
## 1384         diapausing aggregration           08.15.2017
## 1385         diapausing aggregration           08.15.2017
## 1386         diapausing aggregration           08.15.2017
## 1387         diapausing aggregration           08.15.2017
## 1388         diapausing aggregration           08.15.2017
## 1389         diapausing aggregration           08.15.2017
## 1390         diapausing aggregration           08.15.2017
## 1391         diapausing aggregration           08.15.2017
## 1392         diapausing aggregration           08.15.2017
## 1393         diapausing aggregration           08.15.2017
## 1394         diapausing aggregration           08.15.2017
## 1395         diapausing aggregration           08.15.2017
## 1396         diapausing aggregration           08.15.2017
## 1397         diapausing aggregration           08.15.2017
## 1398         diapausing aggregration           08.15.2017
## 1399         diapausing aggregration           08.15.2017
## 1400         diapausing aggregration           08.15.2017
## 1401         diapausing aggregration           08.15.2017
## 1402         diapausing aggregration           08.15.2017
## 1403         diapausing aggregration           08.15.2017
## 1404         diapausing aggregration           08.15.2017
## 1405         diapausing aggregration           08.15.2017
## 1406         diapausing aggregration           08.15.2017
## 1407         diapausing aggregration           08.15.2017
## 1408         diapausing aggregration           08.15.2017
## 1409         diapausing aggregration           08.15.2017
## 1410         diapausing aggregration           08.15.2017
## 1411         diapausing aggregration           08.15.2017
## 1412         diapausing aggregration           08.15.2017
## 1413         diapausing aggregration           08.15.2017
## 1414         diapausing aggregration           08.15.2017
## 1415         diapausing aggregration           08.15.2017
## 1416         diapausing aggregration           08.15.2017
## 1417         diapausing aggregration           08.15.2017
## 1418         diapausing aggregration           08.15.2017
## 1419         diapausing aggregration           08.15.2017
## 1420         diapausing aggregration           08.15.2017
## 1421         diapausing aggregration           08.15.2017
## 1422         diapausing aggregration           08.15.2017
## 1423         diapausing aggregration           08.15.2017
## 1424         diapausing aggregration           08.15.2017
## 1425         diapausing aggregration           08.15.2017
## 1426         diapausing aggregration           08.15.2017
## 1427         diapausing aggregration           08.15.2017
## 1428         diapausing aggregration           08.15.2017
## 1429         diapausing aggregration           08.15.2017
## 1430         diapausing aggregration           08.15.2017
## 1431         diapausing aggregration           08.15.2017
## 1432         diapausing aggregration           08.15.2017
## 1433         diapausing aggregration           08.15.2017
## 1434         diapausing aggregration           08.15.2017
## 1435         diapausing aggregration           08.15.2017
## 1436         diapausing aggregration           08.15.2017
## 1437         diapausing aggregration           08.15.2017
## 1438         diapausing aggregration           08.15.2017
## 1439         diapausing aggregration           08.15.2017
## 1440         diapausing aggregration           08.15.2017
## 1441         diapausing aggregration           08.15.2017
## 1442         diapausing aggregration           08.15.2017
## 1443         diapausing aggregration           08.15.2017
## 1444         diapausing aggregration           08.15.2017
## 1445         diapausing aggregration           08.15.2017
## 1446         diapausing aggregration           08.15.2017
## 1447         diapausing aggregration           08.15.2017
## 1448         diapausing aggregration           08.15.2017
## 1449         diapausing aggregration           08.15.2017
## 1450         diapausing aggregration           08.15.2017
## 1451         diapausing aggregration           08.15.2017
## 1452         diapausing aggregration           08.15.2017
## 1453         diapausing aggregration           08.15.2017
## 1454         diapausing aggregration           08.15.2017
## 1455         diapausing aggregration           08.15.2017
## 1456         diapausing aggregration           08.15.2017
## 1457         diapausing aggregration           08.15.2017
## 1458         diapausing aggregration           08.15.2017
## 1459         diapausing aggregration           08.15.2017
## 1460         diapausing aggregration           08.15.2017
## 1461         diapausing aggregration           08.15.2017
## 1462         diapausing aggregration           08.15.2017
## 1463         diapausing aggregration           08.15.2017
## 1464         diapausing aggregration           08.15.2017
## 1465         diapausing aggregration           08.15.2017
## 1466         diapausing aggregration           08.15.2017
## 1467         diapausing aggregration           08.15.2017
## 1468         diapausing aggregration           08.15.2017
## 1469         diapausing aggregration           08.15.2017
## 1470         diapausing aggregration           08.15.2017
## 1471         diapausing aggregration           08.15.2017
## 1472         diapausing aggregration           08.15.2017
## 1473         diapausing aggregration           08.15.2017
## 1474         diapausing aggregration           08.15.2017
## 1475         diapausing aggregration           08.15.2017
## 1476         diapausing aggregration           08.15.2017
## 1477         diapausing aggregration           08.15.2017
## 1478         diapausing aggregration           08.15.2017
## 1479         diapausing aggregration           08.15.2017
## 1480         diapausing aggregration           08.15.2017
## 1481         diapausing aggregration           08.15.2017
## 1482         diapausing aggregration           08.15.2017
## 1483         diapausing aggregration           08.15.2017
## 1484         diapausing aggregration           08.15.2017
## 1485         diapausing aggregration           08.15.2017
## 1486         diapausing aggregration           08.15.2017
## 1487         diapausing aggregration           08.15.2017
## 1488         diapausing aggregration           08.15.2017
## 1489         diapausing aggregration           08.15.2017
## 1490         diapausing aggregration           08.15.2017
## 1491         diapausing aggregration           08.15.2017
## 1492         diapausing aggregration           08.15.2017
## 1493         diapausing aggregration           08.15.2017
## 1494         diapausing aggregration           08.15.2017
## 1495         diapausing aggregration           08.15.2017
## 1496         diapausing aggregration           08.15.2017
## 1497         diapausing aggregration           08.15.2017
## 1498         diapausing aggregration           08.15.2017
## 1499         diapausing aggregration           08.15.2017
## 1500         diapausing aggregration           08.15.2017
## 1501         diapausing aggregration           08.15.2017
## 1502                                           08.17.2017
## 1503                                           08.17.2017
## 1504                                           08.17.2017
## 1505                                           08.17.2017
## 1506                                           08.17.2017
## 1507                                           08.17.2017
## 1508                                           08.17.2017
## 1509                                           08.17.2017
## 1510                                           08.17.2017
## 1511                                           08.17.2017
## 1512                                           08.17.2017
## 1513                                           08.17.2017
## 1514                                           08.17.2017
## 1515                                           08.17.2017
## 1516                                           08.17.2017
## 1517                                           08.17.2017
## 1518                                           08.17.2017
## 1519                                           08.16.2017
## 1520                                           08.16.2017
## 1521                                           08.16.2017
## 1522                                           08.16.2017
## 1523                      wings torn           08.16.2017
## 1524                                           08.16.2017
## 1525                                           08.16.2017
## 1526                                           08.16.2017
## 1527                                           08.16.2017
## 1528                                           08.16.2017
## 1529                                           08.16.2017
## 1530                                           08.16.2017
## 1531                                           08.16.2017
## 1532                                           08.16.2017
## 1533                      wings torn           08.16.2017
## 1534                      wings torn           08.16.2017
## 1535                                           08.16.2017
## 1536                                           08.16.2017
## 1537                                           08.17.2017
## 1538                          marked           08.17.2017
## 1539                                           08.17.2017
## 1540                          marked           08.17.2017
## 1541                                           08.17.2017
## 1542                                           08.17.2017
## 1543                                           08.17.2017
## 1544                                           08.17.2017
## 1545                                           08.17.2017
## 1546                                           08.17.2017
## 1547                          marked           08.17.2017
## 1548                                           08.17.2017
## 1549                                           08.17.2017
## 1550                                           08.17.2017
## 1551                                           08.17.2017
## 1552                                           08.17.2017
## 1553                                           08.17.2017
## 1554                                           08.17.2017
## 1555                                           08.17.2017
## 1556                                           08.17.2017
## 1557                          marked           08.17.2017
## 1558                          marked           08.17.2017
## 1559                          marked           08.17.2017
## 1560                                           08.17.2017
## 1561                                           08.17.2017
## 1562                          marked           08.17.2017
## 1563                                           08.17.2017
## 1564                                           08.17.2017
## 1565                                           08.17.2017
## 1566                                           08.17.2017
## 1567                          marked           08.17.2017
## 1568                       tips torn           08.17.2017
## 1569                          marked           08.17.2017
## 1570                       tips torn           08.17.2017
## 1571                          marked           08.17.2017
## 1572                          marked           08.17.2017
## 1573                          marked           08.17.2017
## 1574                          marked           08.16.2017
## 1575                                           08.16.2017
## 1576                                           08.16.2017
## 1577                       tips torn           08.16.2017
## 1578                       tips torn           08.16.2017
## 1579                       tips torn           08.16.2017
## 1580                                           08.16.2017
## 1581                          marked           08.16.2017
## 1582                          marked           08.16.2017
## 1583                       tips torn           08.16.2017
## 1584                       tips torn           08.16.2017
## 1585                                           08.16.2017
## 1586                                           08.16.2017
## 1587                                           08.16.2017
## 1588                                           08.16.2017
## 1589                                           08.16.2017
## 1590                                           08.16.2017
## 1591               tips torn; marked           08.16.2017
## 1592                       tips torn           08.16.2017
## 1593                          marked           08.16.2017
## 1594         diapausing aggregration           08.23.2017
## 1595         diapausing aggregration           08.23.2017
## 1596         diapausing aggregration           08.23.2017
## 1597         diapausing aggregration           08.23.2017
## 1598         diapausing aggregration           08.23.2017
## 1599         diapausing aggregration           08.23.2017
## 1600         diapausing aggregration           08.23.2017
## 1601         diapausing aggregration           08.23.2017
## 1602         diapausing aggregration           08.23.2017
## 1603         diapausing aggregration           08.23.2017
## 1604         diapausing aggregration           08.23.2017
## 1605         diapausing aggregration           08.23.2017
## 1606         diapausing aggregration           08.23.2017
## 1607         diapausing aggregration           08.23.2017
## 1608         diapausing aggregration           08.23.2017
## 1609         diapausing aggregration           08.23.2017
## 1610         diapausing aggregration           08.23.2017
## 1611         diapausing aggregration           08.23.2017
## 1612         diapausing aggregration           08.23.2017
## 1613         diapausing aggregration           08.23.2017
## 1614         diapausing aggregration           08.23.2017
## 1615         diapausing aggregration           08.23.2017
## 1616         diapausing aggregration           08.23.2017
## 1617         diapausing aggregration           08.23.2017
## 1618         diapausing aggregration           08.23.2017
## 1619         diapausing aggregration           08.23.2017
## 1620         diapausing aggregration           08.23.2017
## 1621         diapausing aggregration           08.23.2017
## 1622         diapausing aggregration           08.23.2017
## 1623         diapausing aggregration           08.23.2017
## 1624         diapausing aggregration           08.23.2017
## 1625         diapausing aggregration           08.23.2017
## 1626                  non-diapausing            8.23.2017
## 1627                  non-diapausing            8.23.2017
## 1628                  non-diapausing            8.23.2017
## 1629                  non-diapausing            8.23.2017
## 1630                  non-diapausing            8.23.2017
## 1631                  non-diapausing            8.23.2017
## 1632                  non-diapausing            8.23.2017
## 1633                  non-diapausing            8.23.2017
## 1634                  non-diapausing            8.23.2017
## 1635                  non-diapausing            8.23.2017
## 1636                  non-diapausing            8.23.2017
## 1637                  non-diapausing            8.23.2017
## 1638                  non-diapausing            8.23.2017
## 1639                  non-diapausing            8.23.2017
## 1640                  non-diapausing            8.23.2017
## 1641                  non-diapausing            8.23.2017
## 1642                  non-diapausing            8.23.2017
## 1643                  non-diapausing            8.23.2017
## 1644                  non-diapausing            8.23.2017
## 1645                  non-diapausing            8.23.2017
## 1646                  non-diapausing            8.23.2017
## 1647                  non-diapausing            8.23.2017
## 1648                  non-diapausing            8.23.2017
## 1649                  non-diapausing            8.23.2017
## 1650                  non-diapausing            8.23.2017
## 1651                  non-diapausing            8.23.2017
## 1652                  non-diapausing            8.23.2017
## 1653                  non-diapausing            8.23.2017
## 1654                  non-diapausing            8.23.2017
## 1655                  non-diapausing            8.23.2017
## 1656                  non-diapausing            8.23.2017
## 1657                  non-diapausing            8.23.2017
## 1658                  non-diapausing            8.23.2017
## 1659                  non-diapausing            8.23.2017
## 1660                  non-diapausing            8.23.2017
## 1661                  non-diapausing            8.23.2017
## 1662                  non-diapausing            8.23.2017
## 1663                  non-diapausing            8.23.2017
## 1664                  non-diapausing            8.23.2017
## 1665                  non-diapausing            8.23.2017
## 1666                  non-diapausing            8.23.2017
## 1667                  non-diapausing            8.23.2017
## 1668                  non-diapausing            8.23.2017
## 1669                  non-diapausing            8.23.2017
## 1670                  non-diapausing            8.23.2017
## 1671                  non-diapausing            8.23.2017
## 1672                  non-diapausing            8.23.2017
## 1673                  non-diapausing            8.23.2017
## 1674                  non-diapausing            8.23.2017
## 1675                  non-diapausing            8.23.2017
## 1676                  non-diapausing            8.23.2017
## 1677                  non-diapausing            8.23.2017
## 1678                  non-diapausing            8.23.2017
## 1679                  non-diapausing            8.23.2017
## 1680                  non-diapausing            8.23.2017
## 1681                  non-diapausing            8.23.2017
## 1682                  non-diapausing            8.23.2017
## 1683                  non-diapausing            8.23.2017
## 1684                  non-diapausing            8.23.2017
## 1685                  non-diapausing           08.24.2017
## 1686                  non-diapausing           08.24.2017
## 1687                  non-diapausing           08.24.2017
## 1688                  non-diapausing           08.24.2017
## 1689                  non-diapausing           08.24.2017
## 1690                  non-diapausing           08.24.2017
## 1691                  non-diapausing           08.24.2017
## 1692                  non-diapausing           08.24.2017
## 1693                  non-diapausing           08.24.2017
## 1694                  non-diapausing           08.24.2017
## 1695                  non-diapausing           08.24.2017
## 1696                  non-diapausing           08.24.2017
## 1697                  non-diapausing           08.24.2017
## 1698                  non-diapausing           08.24.2017
## 1699                  non-diapausing           08.24.2017
## 1700                  non-diapausing           08.24.2017
## 1701                  non-diapausing           08.24.2017
## 1702                  non-diapausing           08.24.2017
## 1703                  non-diapausing           08.24.2017
## 1704                  non-diapausing           08.24.2017
## 1705                  non-diapausing           08.24.2017
## 1706                  non-diapausing           08.24.2017
## 1707                  non-diapausing           08.24.2017
## 1708                  non-diapausing           08.24.2017
## 1709                  non-diapausing           08.24.2017
## 1710                  non-diapausing           08.24.2017
## 1711                  non-diapausing           08.24.2017
## 1712                  non-diapausing           08.24.2017
## 1713                  non-diapausing           08.24.2017
## 1714                  non-diapausing           08.24.2017
## 1715                  non-diapausing           08.24.2017
## 1716                  non-diapausing           08.24.2017
## 1717                  non-diapausing           08.24.2017
## 1718                  non-diapausing           08.24.2017
## 1719                  non-diapausing           08.24.2017
## 1720                  non-diapausing           08.24.2017
## 1721                  non-diapausing           08.24.2017
## 1722                  non-diapausing           08.24.2017
## 1723                  non-diapausing           08.24.2017
## 1724                  non-diapausing           08.24.2017
## 1725                  non-diapausing           08.24.2017
## 1726                  non-diapausing           08.24.2017
## 1727                  non-diapausing           08.24.2017
## 1728                  non-diapausing           08.24.2017
## 1729                  non-diapausing           08.24.2017
## 1730                  non-diapausing           08.24.2017
## 1731                  non-diapausing           08.24.2017
## 1732                  non-diapausing           08.24.2017
## 1733                  non-diapausing           08.24.2017
## 1734                  non-diapausing           08.24.2017
## 1735                  non-diapausing           08.24.2017
## 1736                  non-diapausing           08.24.2017
## 1737                  non-diapausing           08.24.2017
## 1738                  non-diapausing           08.24.2017
## 1739                  non-diapausing           08.24.2017
## 1740                  non-diapausing           08.24.2017
## 1741                  non-diapausing           08.24.2017
## 1742                  non-diapausing           08.24.2017
## 1743                  non-diapausing           09.23.2018
## 1744                  non-diapausing           09.23.2018
## 1745                  non-diapausing           09.23.2018
## 1746                  non-diapausing           09.23.2018
## 1747                  non-diapausing           09.23.2018
## 1748                  non-diapausing           09.23.2018
## 1749                  non-diapausing           09.23.2018
## 1750                  non-diapausing           09.23.2018
## 1751                  non-diapausing           09.23.2018
## 1752                  non-diapausing           09.23.2018
## 1753                  non-diapausing           09.23.2018
## 1754                  non-diapausing           09.23.2018
## 1755                  non-diapausing           09.23.2018
## 1756                  non-diapausing           09.23.2018
## 1757                  non-diapausing           09.23.2018
## 1758                  non-diapausing           09.23.2018
## 1759                  non-diapausing           09.23.2018
## 1760                  non-diapausing           09.23.2018
## 1761                  non-diapausing           09.23.2018
## 1762                  non-diapausing           09.23.2018
## 1763                  non-diapausing           09.23.2018
## 1764                  non-diapausing           09.23.2018
## 1765                  non-diapausing           09.23.2018
## 1766                  non-diapausing           09.23.2018
## 1767                  non-diapausing           09.23.2018
## 1768                  non-diapausing           09.23.2018
## 1769                  non-diapausing           09.23.2018
## 1770                  non-diapausing           09.23.2018
## 1771                  non-diapausing           09.23.2018
## 1772                  non-diapausing           09.23.2018
## 1773                  non-diapausing           09.23.2018
## 1774                  non-diapausing           09.23.2018
## 1775                  non-diapausing           09.23.2018
## 1776                  non-diapausing           09.23.2018
## 1777                  non-diapausing           09.23.2018
## 1778                  non-diapausing           09.23.2018
## 1779                  non-diapausing           09.23.2018
## 1780                  non-diapausing           09.23.2018
## 1781                  non-diapausing           09.23.2018
## 1782                  non-diapausing           09.23.2018
## 1783                  non-diapausing           09.23.2018
## 1784                  non-diapausing           09.23.2018
## 1785                  non-diapausing           09.23.2018
## 1786                  non-diapausing           09.23.2018
## 1787                  non-diapausing           09.23.2018
## 1788                  non-diapausing           09.23.2018
## 1789                  non-diapausing           09.23.2018
## 1790                  non-diapausing           09.23.2018
## 1791                  non-diapausing           09.23.2018
## 1792                  non-diapausing           09.23.2018
## 1793                  non-diapausing           09.23.2018
## 1794                  non-diapausing           09.23.2018
## 1795                  non-diapausing           09.23.2018
## 1796                  non-diapausing           09.23.2018
## 1797                  non-diapausing           09.23.2018
## 1798                  non-diapausing           09.23.2018
## 1799                  non-diapausing           09.23.2018
## 1800                  non-diapausing           09.23.2018
## 1801                  non-diapausing           09.23.2018
## 1802                  non-diapausing           09.23.2018
## 1803                  non-diapausing           09.23.2018
## 1804                  non-diapausing           09.23.2018
## 1805                  non-diapausing           09.23.2018
## 1806                  non-diapausing           09.23.2018
## 1807                  non-diapausing           09.26.2018
## 1808                  non-diapausing           09.26.2018
## 1809                  non-diapausing           09.26.2018
## 1810                  non-diapausing           09.26.2018
## 1811                  non-diapausing           09.26.2018
## 1812                  non-diapausing           09.26.2018
## 1813                  non-diapausing           09.26.2018
## 1814                  non-diapausing           09.26.2018
## 1815                  non-diapausing           09.26.2018
## 1816                  non-diapausing           09.26.2018
## 1817                  non-diapausing           09.26.2018
## 1818                  non-diapausing           09.26.2018
## 1819                  non-diapausing           09.26.2018
## 1820                  non-diapausing           09.26.2018
## 1821                  non-diapausing           09.26.2018
## 1822                  non-diapausing           09.26.2018
## 1823                  non-diapausing           09.26.2018
## 1824                  non-diapausing           09.26.2018
## 1825                  non-diapausing           09.26.2018
## 1826                  non-diapausing           09.26.2018
## 1827                  non-diapausing           09.26.2018
## 1828                  non-diapausing           09.26.2018
## 1829                  non-diapausing           09.26.2018
## 1830                  non-diapausing           09.26.2018
## 1831                  non-diapausing           09.26.2018
## 1832                  non-diapausing           09.26.2018
## 1833                  non-diapausing           09.26.2018
## 1834                  non-diapausing           09.26.2018
## 1835                  non-diapausing           09.26.2018
## 1836                  non-diapausing           09.26.2018
## 1837                  non-diapausing           09.26.2018
## 1838                  non-diapausing           09.26.2018
## 1839                  non-diapausing           09.26.2018
## 1840                  non-diapausing           09.26.2018
## 1841                  non-diapausing           09.26.2018
## 1842                  non-diapausing           09.26.2018
## 1843                  non-diapausing           09.26.2018
## 1844                  non-diapausing           09.26.2018
## 1845                  non-diapausing           09.26.2018
## 1846                  non-diapausing           09.26.2018
## 1847                  non-diapausing           09.26.2018
## 1848                  non-diapausing           09.26.2018
## 1849                  non-diapausing           09.26.2018
## 1850                  non-diapausing           09.26.2018
## 1851                  non-diapausing           09.26.2018
## 1852                  non-diapausing           09.26.2018
## 1853                  non-diapausing           09.26.2018
## 1854                  non-diapausing           09.26.2018
## 1855                  non-diapausing           09.26.2018
## 1856                  non-diapausing           09.26.2018
## 1857                  non-diapausing           09.26.2018
## 1858                  non-diapausing           09.26.2018
## 1859                  non-diapausing           09.26.2018
## 1860                  non-diapausing           09.26.2018
## 1861                  non-diapausing           09.26.2018
## 1862                  non-diapausing           09.26.2018
## 1863                  non-diapausing           09.26.2018
## 1864                  non-diapausing           09.26.2018
## 1865                  non-diapausing           09.26.2018
## 1866                  non-diapausing           09.26.2018
## 1867                  non-diapausing           09.26.2018
## 1868                  non-diapausing           09.26.2018
## 1869                  non-diapausing           09.26.2018
## 1870                  non-diapausing           09.26.2018
## 1871                  non-diapausing           09.26.2018
## 1872                  non-diapausing           09.26.2018
## 1873                  non-diapausing           09.26.2018
## 1874                  non-diapausing           09.26.2018
## 1875                  non-diapausing           09.28.2018
## 1876                  non-diapausing           09.28.2018
## 1877                  non-diapausing           09.28.2018
## 1878                  non-diapausing           09.28.2018
## 1879                  non-diapausing           09.28.2018
## 1880                  non-diapausing           09.28.2018
## 1881                  non-diapausing           09.28.2018
## 1882                  non-diapausing           09.28.2018
## 1883                  non-diapausing           09.28.2018
## 1884                  non-diapausing           09.28.2018
## 1885                  non-diapausing           09.28.2018
## 1886                  non-diapausing           09.28.2018
## 1887                  non-diapausing           09.28.2018
## 1888                  non-diapausing           09.28.2018
## 1889                  non-diapausing           09.28.2018
## 1890                  non-diapausing           09.28.2018
## 1891                  non-diapausing           09.28.2018
## 1892                  non-diapausing           09.28.2018
## 1893                  non-diapausing           09.28.2018
## 1894                  non-diapausing           09.28.2018
## 1895                  non-diapausing           09.28.2018
## 1896                  non-diapausing           09.28.2018
## 1897                  non-diapausing           09.28.2018
## 1898                  non-diapausing           09.28.2018
## 1899                  non-diapausing           09.28.2018
## 1900                  non-diapausing           09.28.2018
## 1901                  non-diapausing           09.28.2018
## 1902                  non-diapausing           09.28.2018
## 1903                  non-diapausing           09.28.2018
## 1904                  non-diapausing           09.28.2018
## 1905                  non-diapausing           09.28.2018
## 1906                  non-diapausing           09.28.2018
## 1907                  non-diapausing           09.28.2018
## 1908                  non-diapausing           09.28.2018
## 1909                  non-diapausing           09.28.2018
## 1910                  non-diapausing           09.28.2018
## 1911                  non-diapausing           09.28.2018
## 1912                  non-diapausing           09.28.2018
## 1913                  non-diapausing           09.28.2018
## 1914                  non-diapausing           09.28.2018
## 1915                  non-diapausing           09.28.2018
## 1916                  non-diapausing            5.22.2019
## 1917                  non-diapausing            5.22.2019
## 1918                  non-diapausing            5.22.2019
## 1919                  non-diapausing            5.22.2019
## 1920                  non-diapausing            5.22.2019
## 1921                  non-diapausing            5.22.2019
## 1922                  non-diapausing            5.22.2019
## 1923                  non-diapausing            5.22.2019
## 1924                  non-diapausing            5.22.2019
## 1925                                           05.22.2019
## 1926                                           05.22.2019
## 1927                                           05.22.2019
## 1928                                           05.22.2019
## 1929                                           05.22.2019
## 1930                                           05.22.2019
## 1931                                           05.22.2019
## 1932                                           05.22.2019
## 1933                                           05.22.2019
## 1934                                           05.22.2019
## 1935                                           05.22.2019
## 1936                                           05.22.2019
## 1937                                           05.22.2019
## 1938                                           05.22.2019
## 1939                                           05.22.2019
## 1940                                           05.22.2019
## 1941                                           05.22.2019
## 1942                                           05.22.2019
## 1943                                           05.22.2019
## 1944                                           05.22.2019
## 1945                                           05.22.2019
## 1946                                           05.22.2019
## 1947                                           05.22.2019
## 1948                                           05.22.2019
## 1949                                           05.22.2019
## 1950                                           05.22.2019
## 1951                                           05.22.2019
## 1952                                           05.22.2019
## 1953                                           05.22.2019
## 1954                                           05.22.2019
## 1955                                           05.22.2019
## 1956                                           05.22.2019
## 1957                                           05.22.2019
## 1958                                           05.22.2019
## 1959                                           05.22.2019
## 1960                                           05.22.2019
## 1961                                           05.22.2019
## 1962                                           05.22.2019
## 1963                                           05.22.2019
## 1964                                           05.22.2019
## 1965                  non-diapausing           05.17.2019
## 1966                  non-diapausing           05.17.2019
## 1967                  non-diapausing           05.17.2019
## 1968                  non-diapausing           05.17.2019
## 1969                  non-diapausing           05.17.2019
## 1970                  non-diapausing           05.17.2019
## 1971                  non-diapausing           05.17.2019
## 1972                  non-diapausing           05.17.2019
## 1973                  non-diapausing           05.17.2019
## 1974                  non-diapausing           05.17.2019
## 1975                  non-diapausing           05.17.2019
## 1976                  non-diapausing           05.17.2019
## 1977                  non-diapausing           05.17.2019
## 1978                  non-diapausing           05.17.2019
## 1979                  non-diapausing           05.17.2019
## 1980                  non-diapausing           05.17.2019
## 1981                  non-diapausing           05.17.2019
## 1982                  non-diapausing           05.17.2019
## 1983                  non-diapausing             5.6.2019
## 1984                  non-diapausing             5.6.2019
## 1985                  non-diapausing             5.6.2019
## 1986                  non-diapausing             5.6.2019
## 1987                  non-diapausing             5.6.2019
## 1988                  non-diapausing             5.6.2019
## 1989                  non-diapausing             5.6.2019
## 1990                  non-diapausing             5.6.2019
## 1991                  non-diapausing             5.6.2019
## 1992                  non-diapausing             5.6.2019
## 1993                  non-diapausing             5.6.2019
## 1994                  non-diapausing             5.6.2019
## 1995                  non-diapausing             5.6.2019
## 1996                  non-diapausing             5.6.2019
## 1997                  non-diapausing             5.6.2019
## 1998                  non-diapausing             5.6.2019
## 1999                  non-diapausing             5.6.2019
## 2000                  non-diapausing             5.6.2019
## 2001                  non-diapausing             5.6.2019
## 2002                  non-diapausing             5.6.2019
## 2003                  non-diapausing             5.6.2019
## 2004                  non-diapausing             5.6.2019
## 2005                  non-diapausing             5.6.2019
## 2006                  non-diapausing             5.6.2019
## 2007                  non-diapausing             5.6.2019
## 2008                  non-diapausing             5.6.2019
## 2009                  non-diapausing             5.6.2019
## 2010                  non-diapausing             5.6.2019
## 2011                  non-diapausing             5.6.2019
## 2012                  non-diapausing             5.6.2019
## 2013                  non-diapausing             5.6.2019
## 2014                  non-diapausing             5.6.2019
## 2015                  non-diapausing             5.6.2019
## 2016                  non-diapausing             5.6.2019
## 2017                  non-diapausing             5.6.2019
## 2018                  non-diapausing             5.6.2019
## 2019                  non-diapausing             5.6.2019
## 2020                  non-diapausing             5.6.2019
## 2021                  non-diapausing             5.6.2019
## 2022                  non-diapausing             5.6.2019
## 2023                  non-diapausing             5.6.2019
## 2024                  non-diapausing             5.6.2019
## 2025                  non-diapausing             5.6.2019
## 2026                  non-diapausing             5.6.2019
## 2027                  non-diapausing             5.6.2019
## 2028                  non-diapausing             5.6.2019
## 2029                  non-diapausing             5.6.2019
## 2030                  non-diapausing             5.6.2019
## 2031                  non-diapausing             5.6.2019
## 2032                  non-diapausing             5.6.2019
## 2033                  non-diapausing             5.6.2019
## 2034                  non-diapausing             5.6.2019
## 2035                  non-diapausing             5.6.2019
## 2036                  non-diapausing             5.6.2019
## 2037                  non-diapausing             5.6.2019
## 2038                  non-diapausing             5.6.2019
## 2039                  non-diapausing             5.6.2019
## 2040                  non-diapausing             5.6.2019
## 2041                  non-diapausing             5.6.2019
## 2042                  non-diapausing             5.6.2019
## 2043                  non-diapausing             5.6.2019
## 2044                  non-diapausing             5.6.2019
## 2045                  non-diapausing             5.6.2019
## 2046                  non-diapausing             5.6.2019
## 2047                  non-diapausing             5.6.2019
## 2048                  non-diapausing             5.6.2019
## 2049                  non-diapausing             5.6.2019
## 2050                  non-diapausing             5.6.2019
## 2051                  non-diapausing             5.6.2019
## 2052                  non-diapausing             5.6.2019
## 2053                  non-diapausing             5.6.2019
## 2054                  non-diapausing             5.6.2019
## 2055                  non-diapausing             5.6.2019
## 2056                  non-diapausing             5.6.2019
## 2057                  non-diapausing             5.6.2019
## 2058                  non-diapausing             5.6.2019
## 2059                      diapausing           05.19.2019
## 2060                      diapausing           05.19.2019
## 2061                      diapausing           05.19.2019
## 2062                      diapausing           05.19.2019
## 2063                      diapausing           05.19.2019
## 2064                      diapausing           05.19.2019
## 2065                      diapausing           05.19.2019
## 2066                      diapausing           05.19.2019
## 2067                      diapausing           05.19.2019
## 2068                      diapausing           05.19.2019
## 2069                      diapausing           05.19.2019
## 2070                      diapausing           05.19.2019
## 2071                      diapausing           05.19.2019
## 2072                      diapausing           05.19.2019
## 2073                      diapausing           05.19.2019
## 2074                      diapausing           05.19.2019
## 2075                      diapausing           05.19.2019
## 2076                      diapausing           05.19.2019
## 2077                      diapausing           05.19.2019
## 2078                      diapausing           05.19.2019
## 2079                      diapausing           05.19.2019
## 2080                      diapausing           05.19.2019
## 2081                      diapausing           05.19.2019
## 2082                      diapausing           05.19.2019
## 2083                      diapausing           05.19.2019
## 2084                      diapausing           05.19.2019
## 2085                      diapausing           05.19.2019
## 2086                      diapausing           05.19.2019
## 2087                      diapausing           05.19.2019
## 2088                      diapausing           05.19.2019
## 2089                      diapausing           05.19.2019
## 2090                      diapausing           05.19.2019
## 2091                      diapausing           05.19.2019
## 2092                      diapausing           05.19.2019
## 2093                      diapausing           05.19.2019
## 2094                      diapausing           05.19.2019
## 2095                      diapausing           05.19.2019
## 2096                      diapausing           05.19.2019
## 2097                      diapausing           05.19.2019
## 2098                      diapausing           05.19.2019
## 2099                      diapausing           05.19.2019
## 2100                      diapausing           05.19.2019
## 2101                      diapausing           05.19.2019
## 2102                      diapausing           05.19.2019
## 2103                      diapausing           05.19.2019
## 2104                      diapausing           05.19.2019
## 2105                      diapausing           05.19.2019
## 2106                      diapausing           05.19.2019
## 2107                      diapausing           05.19.2019
## 2108                      diapausing           05.19.2019
## 2109                      diapausing           05.19.2019
## 2110                      diapausing           05.19.2019
## 2111                      diapausing           05.19.2019
## 2112                      diapausing           05.19.2019
## 2113                      diapausing           05.19.2019
## 2114                      diapausing           05.19.2019
## 2115                      diapausing           05.19.2019
## 2116                      diapausing           05.19.2019
## 2117                      diapausing           05.19.2019
## 2118                      diapausing           05.19.2019
## 2119                      diapausing           05.19.2019
## 2120                      diapausing           05.19.2019
## 2121                                           05.13.2019
## 2122                                           05.13.2019
## 2123                                           05.13.2019
## 2124                                           05.13.2019
## 2125                                           05.13.2019
## 2126                                           05.13.2019
## 2127                                           05.13.2019
## 2128                                           05.13.2019
## 2129                                           05.13.2019
## 2130                                           05.13.2019
## 2131                                           05.13.2019
## 2132                                           05.13.2019
## 2133                                           05.13.2019
## 2134                                           05.13.2019
## 2135                                           05.13.2019
## 2136                                           05.13.2019
## 2137                                           05.13.2019
## 2138                                           05.13.2019
## 2139                                           05.13.2019
## 2140                                           05.13.2019
## 2141                                           05.13.2019
## 2142                                           05.13.2019
## 2143                                           05.13.2019
## 2144                                           05.13.2019
## 2145                                           05.13.2019
## 2146                                           05.13.2019
## 2147                                           05.13.2019
## 2148                                           05.13.2019
## 2149                                           05.13.2019
## 2150                                           05.13.2019
## 2151                                           05.13.2019
## 2152                                           05.13.2019
## 2153                                           05.13.2019
## 2154                                           05.13.2019
## 2155                                           05.13.2019
## 2156                                           05.13.2019
## 2157                                           05.13.2019
## 2158                                           05.13.2019
## 2159                                           05.13.2019
## 2160                                           05.13.2019
## 2161                                           05.13.2019
## 2162                                           05.13.2019
## 2163                                           05.13.2019
## 2164                                           05.13.2019
## 2165                                           05.13.2019
## 2166                                           05.13.2019
## 2167                                           05.13.2019
## 2168                                           05.13.2019
## 2169                                           05.13.2019
## 2170                                           05.13.2019
## 2171                                           05.13.2019
## 2172                                           05.13.2019
## 2173                                           05.13.2019
## 2174                                           05.13.2019
## 2175                                           05.13.2019
## 2176                                           05.13.2019
## 2177                                           05.13.2019
## 2178                                           05.13.2019
## 2179                                           05.13.2019
## 2180                                           05.13.2019
## 2181                                           05.13.2019
## 2182                                           05.13.2019
## 2183                                           05.13.2019
## 2184                                           05.13.2019
## 2185                                           05.13.2019
## 2186                                           05.13.2019
## 2187                                           05.13.2019
## 2188                                           05.13.2019
## 2189                                           05.13.2019
## 2190                                           05.13.2019
## 2191                                           05.13.2019
## 2192                                           05.13.2019
## 2193                                           05.13.2019
## 2194                                           05.13.2019
## 2195                                           05.13.2019
## 2196                                           05.13.2019
## 2197                                           05.13.2019
## 2198                                           05.13.2019
## 2199                                           05.13.2019
## 2200                                           05.13.2019
## 2201                                           05.13.2019
## 2202                                           05.13.2019
## 2203                                           05.13.2019
## 2204                                           05.13.2019
## 2205                                           05.13.2019
## 2206                                           05.13.2019
## 2207                                           05.13.2019
## 2208                                           05.13.2019
## 2209                                           05.13.2019
## 2210                                           05.13.2019
## 2211                                           05.13.2019
## 2212                                           05.13.2019
## 2213                                           05.13.2019
## 2214                                           05.13.2019
## 2215                                           05.13.2019
## 2216                                           05.13.2019
## 2217                                           05.13.2019
## 2218                                           05.13.2019
## 2219                                           05.13.2019
## 2220                                           05.13.2019
## 2221                                           05.13.2019
## 2222                                           05.14.2019
## 2223                                           05.14.2019
## 2224                                           05.14.2019
## 2225                                           05.14.2019
## 2226                                           05.14.2019
## 2227                                           05.14.2019
## 2228                                           05.14.2019
## 2229                                           05.14.2019
## 2230                                           05.14.2019
## 2231                                           05.06.2019
## 2232                                           05.06.2019
## 2233                                           05.06.2019
## 2234                                           05.06.2019
## 2235                                           05.06.2019
## 2236                                           05.06.2019
## 2237                                           05.06.2019
## 2238                                           05.06.2019
## 2239                                           05.06.2019
## 2240                                           05.06.2019
## 2241                                           05.06.2019
## 2242                                           05.06.2019
## 2243                                           05.06.2019
## 2244                                           05.06.2019
## 2245                                           05.06.2019
## 2246                                           05.06.2019
## 2247                                           05.06.2019
## 2248                                           05.06.2019
## 2249                                           05.06.2019
## 2250                                           05.06.2019
## 2251                                           05.06.2019
## 2252                                           05.06.2019
## 2253                                           05.06.2019
## 2254                                           05.06.2019
## 2255                                           05.06.2019
## 2256                                           05.06.2019
## 2257                                           05.06.2019
## 2258                                           05.06.2019
## 2259                                           05.06.2019
## 2260                                           05.06.2019
## 2261                                           05.06.2019
## 2262                                           05.06.2019
## 2263                                           05.06.2019
## 2264                                           05.06.2019
## 2265                                           05.06.2019
## 2266                                           05.06.2019
## 2267                                           05.06.2019
## 2268                                           05.06.2019
## 2269                                           05.06.2019
## 2270                                           05.06.2019
## 2271                                           05.06.2019
## 2272                                           05.06.2019
## 2273                                           05.06.2019
## 2274                                           05.06.2019
## 2275                                           05.06.2019
## 2276                                           05.06.2019
## 2277                                           05.06.2019
## 2278                                           05.06.2019
## 2279                                           05.06.2019
## 2280                                           05.06.2019
## 2281                                           05.06.2019
## 2282                                           05.06.2019
## 2283                                           05.06.2019
## 2284                                           05.06.2019
## 2285                                           05.06.2019
## 2286                                           05.06.2019
## 2287                                           05.06.2019
## 2288                                           05.06.2019
## 2289                                           05.06.2019
## 2290                                           05.06.2019
## 2291                                           05.06.2019
## 2292                                           05.06.2019
## 2293                                           05.06.2019
## 2294                                           05.06.2019
## 2295                                           05.06.2019
## 2296                                           05.06.2019
## 2297                                           05.06.2019
## 2298                                           05.06.2019
## 2299                                           05.06.2019
## 2300                                           05.06.2019
## 2301                                           05.06.2019
## 2302                                           05.06.2019
## 2303                                           05.06.2019
## 2304                                           05.06.2019
## 2305                                           05.06.2019
## 2306                                           05.06.2019
## 2307                                           05.06.2019
## 2308                                           05.06.2019
## 2309                                           05.06.2019
## 2310                                           05.06.2019
## 2311                                           05.06.2019
## 2312                                           05.06.2019
## 2313                                           05.06.2019
## 2314                                           05.06.2019
## 2315                                           05.06.2019
## 2316                                           05.06.2019
## 2317                                           05.06.2019
## 2318                                           05.06.2019
## 2319                                           05.06.2019
## 2320                                           05.06.2019
## 2321                                           05.06.2019
## 2322                                           05.06.2019
## 2323                                           05.06.2019
## 2324                                           05.06.2019
## 2325                                           05.06.2019
## 2326                                           05.06.2019
## 2327                                           05.06.2019
## 2328                                           05.06.2019
## 2329                                           05.06.2019
## 2330                                           05.06.2019
## 2331                                           05.06.2019
## 2332                                           05.06.2019
## 2333                                                     
## 2334                                                     
## 2335                                                     
## 2336                                                     
## 2337                                                     
## 2338                                                     
## 2339                                                     
## 2340                                                     
## 2341                                                     
## 2342                                                     
## 2343                                                     
## 2344                                                     
## 2345                                                     
## 2346                                                     
## 2347                                                     
## 2348                                                     
## 2349                                                     
## 2350                                                     
## 2351                                                     
## 2352                                                     
## 2353                                                     
## 2354                                                     
## 2355                                                     
## 2356                                                     
## 2357                                                     
## 2358                                                     
## 2359                                                     
## 2360                                                     
## 2361                                                     
## 2362                  non-diapausing            5.13.2019
## 2363                  non-diapausing            5.13.2019
## 2364                  non-diapausing            5.13.2019
## 2365                  non-diapausing            5.13.2019
## 2366                  non-diapausing            5.13.2019
## 2367                  non-diapausing            5.13.2019
## 2368                  non-diapausing            5.13.2019
## 2369                                                     
## 2370                                                     
## 2371                                                     
## 2372                                                     
## 2373                                                     
## 2374                                                     
## 2375                                                     
## 2376                                                     
## 2377                                                     
## 2378                                                     
## 2379                                                     
## 2380                                                     
## 2381                                                     
## 2382                                                     
## 2383                                                     
## 2384                                                     
## 2385                                                     
## 2386                                                     
## 2387                                                     
## 2388                                                     
## 2389                                                     
## 2390                                                     
## 2391                                                     
## 2392                                                     
## 2393                                                     
## 2394                                                     
## 2395                                                     
## 2396                                                     
## 2397                                                     
## 2398                                                     
## 2399                                                     
## 2400                                                     
## 2401                                                     
## 2402                                                     
## 2403                  non-diapausing           10.06.2019
## 2404                  non-diapausing           10.06.2019
## 2405                  non-diapausing           10.06.2019
## 2406                  non-diapausing           10.06.2019
## 2407                  non-diapausing           10.06.2019
## 2408                  non-diapausing           10.06.2019
## 2409                  non-diapausing           10.06.2019
## 2410                  non-diapausing           10.06.2019
## 2411                  non-diapausing           10.06.2019
## 2412                  non-diapausing           10.06.2019
## 2413                  non-diapausing           10.06.2019
## 2414                  non-diapausing           10.06.2019
## 2415                  non-diapausing           10.06.2019
## 2416                  non-diapausing           10.06.2019
## 2417                  non-diapausing           10.06.2019
## 2418                  non-diapausing           10.06.2019
## 2419                     diapausing?           10.04.2019
## 2420                     diapausing?           10.04.2019
## 2421                     diapausing?           10.04.2019
## 2422                     diapausing?           10.04.2019
## 2423                     diapausing?           10.04.2019
## 2424                     diapausing?           10.04.2019
## 2425                     diapausing?           10.04.2019
## 2426                     diapausing?           10.04.2019
## 2427                     diapausing?           10.04.2019
## 2428                     diapausing?           10.04.2019
## 2429                     diapausing?           10.04.2019
## 2430                     diapausing?           10.04.2019
## 2431                     diapausing?           10.04.2019
## 2432                     diapausing?           10.04.2019
## 2433                     diapausing?           10.04.2019
## 2434                     diapausing?           10.04.2019
## 2435                     diapausing?           10.04.2019
## 2436                     diapausing?           10.04.2019
## 2437                     diapausing?           10.04.2019
## 2438                     diapausing?           10.04.2019
## 2439                     diapausing?           10.04.2019
## 2440                     diapausing?           10.04.2019
## 2441                     diapausing?           10.04.2019
## 2442                     diapausing?           10.04.2019
## 2443                     diapausing?           10.04.2019
## 2444                     diapausing?           10.04.2019
## 2445                     diapausing?           10.04.2019
## 2446                     diapausing?           10.04.2019
## 2447                     diapausing?           10.04.2019
## 2448                     diapausing?           10.04.2019
## 2449                     diapausing?           10.04.2019
## 2450                     diapausing?           10.04.2019
## 2451                     diapausing?           10.04.2019
## 2452                     diapausing?           10.04.2019
## 2453                     diapausing?           10.04.2019
## 2454                  non-diapausing           10.04.2019
## 2455                  non-diapausing           10.04.2019
## 2456                  non-diapausing           10.04.2019
## 2457                  non-diapausing           10.04.2019
## 2458                  non-diapausing           10.04.2019
## 2459                  non-diapausing           10.04.2019
## 2460                  non-diapausing           10.04.2019
## 2461                  non-diapausing           10.04.2019
## 2462                  non-diapausing           10.04.2019
## 2463                  non-diapausing           10.04.2019
## 2464                  non-diapausing           10.04.2019
## 2465                  non-diapausing           10.04.2019
## 2466                  non-diapausing           10.04.2019
## 2467                  non-diapausing           10.04.2019
## 2468                  non-diapausing           10.04.2019
## 2469                  non-diapausing           10.04.2019
## 2470                      diapausing           10.05.2019
## 2471                      diapausing           10.05.2019
## 2472                      diapausing           10.05.2019
## 2473                      diapausing           10.05.2019
## 2474                      diapausing           10.05.2019
## 2475                      diapausing           10.05.2019
## 2476                      diapausing           10.05.2019
## 2477                      diapausing           10.05.2019
## 2478                      diapausing           10.05.2019
## 2479                      diapausing           10.05.2019
## 2480                      diapausing           10.05.2019
## 2481                      diapausing           10.05.2019
## 2482                      diapausing           10.05.2019
## 2483                      diapausing           10.05.2019
## 2484                      diapausing           10.05.2019
## 2485                      diapausing           10.05.2019
## 2486                      diapausing           10.05.2019
## 2487                      diapausing           10.05.2019
## 2488                      diapausing           10.05.2019
## 2489                      diapausing           10.05.2019
## 2490                      diapausing           10.05.2019
## 2491                      diapausing           10.05.2019
## 2492                      diapausing           10.05.2019
## 2493                      diapausing           10.05.2019
## 2494                      diapausing           10.05.2019
## 2495                      diapausing           10.05.2019
## 2496                      diapausing           10.05.2019
## 2497                      diapausing           10.05.2019
## 2498                      diapausing           10.05.2019
## 2499                      diapausing           10.05.2019
## 2500                      diapausing           10.05.2019
## 2501                      diapausing           10.05.2019
## 2502                      diapausing           10.05.2019
## 2503                      diapausing           10.05.2019
## 2504                      diapausing           10.05.2019
## 2505                      diapausing           10.05.2019
## 2506                      diapausing           10.05.2019
## 2507                      diapausing           10.05.2019
## 2508                      diapausing           10.05.2019
## 2509                      diapausing           10.05.2019
## 2510                      diapausing           10.05.2019
## 2511                      diapausing           10.05.2019
## 2512                      diapausing           10.05.2019
## 2513                      diapausing           10.05.2019
## 2514                      diapausing           10.05.2019
## 2515                      diapausing           10.05.2019
## 2516                      diapausing           10.05.2019
## 2517                      diapausing           10.05.2019
## 2518                      diapausing           10.05.2019
## 2519                      diapausing           10.05.2019
## 2520                      diapausing           10.05.2019
## 2521                      diapausing           10.05.2019
## 2522                      diapausing           10.05.2019
## 2523                      diapausing           10.05.2019
## 2524                      diapausing            10.5.2019
## 2525                      diapausing            10.5.2019
## 2526                      diapausing            10.5.2019
## 2527                      diapausing            10.5.2019
## 2528                      diapausing            10.5.2019
## 2529                      diapausing            10.5.2019
## 2530                      diapausing            10.5.2019
## 2531                      diapausing            10.5.2019
## 2532                      diapausing            10.5.2019
## 2533                      diapausing            10.5.2019
## 2534                      diapausing            10.5.2019
## 2535                      diapausing            10.5.2019
## 2536                  non-diapausing           10.05.2019
## 2537                  non-diapausing           10.05.2019
## 2538                  non-diapausing           10.05.2019
## 2539                  non-diapausing           10.05.2019
## 2540                  non-diapausing           10.05.2019
## 2541                  non-diapausing           10.05.2019
## 2542                  non-diapausing           10.05.2019
## 2543                  non-diapausing           10.05.2019
## 2544                  non-diapausing           10.05.2019
## 2545                  non-diapausing           10.05.2019
## 2546                  non-diapausing           10.05.2019
## 2547                  non-diapausing           10.05.2019
## 2548                         unknown           10.05.2019
## 2549                         unknown           10.05.2019
## 2550                         unknown           10.05.2019
## 2551                         unknown           10.05.2019
## 2552                         unknown           10.05.2019
## 2553                         unknown           10.05.2019
## 2554                         unknown           10.05.2019
## 2555                         unknown           10.05.2019
## 2556                         unknown           10.05.2019
## 2557                         unknown           10.05.2019
## 2558                         unknown           10.05.2019
## 2559                         unknown           10.05.2019
## 2560                         unknown           10.05.2019
## 2561                         unknown           10.05.2019
## 2562                  non-diapausing           10.03.2019
## 2563                  non-diapausing           10.03.2019
## 2564                  non-diapausing           10.03.2019
## 2565                  non-diapausing           10.03.2019
## 2566                  non-diapausing           10.03.2019
## 2567                  non-diapausing           10.03.2019
## 2568                  non-diapausing           10.03.2019
## 2569                  non-diapausing           10.03.2019
## 2570                  non-diapausing           10.03.2019
## 2571                  non-diapausing           10.03.2019
## 2572                  non-diapausing           10.03.2019
## 2573                  non-diapausing           10.03.2019
## 2574                  non-diapausing           10.03.2019
## 2575                  non-diapausing           10.03.2019
## 2576                  non-diapausing           10.03.2019
## 2577                  non-diapausing           10.03.2019
## 2578                  non-diapausing           10.03.2019
## 2579                  non-diapausing           10.03.2019
## 2580                  non-diapausing           10.03.2019
## 2581                  non-diapausing           10.02.2019
## 2582                  non-diapausing           10.02.2019
## 2583                  non-diapausing           10.02.2019
## 2584                  non-diapausing           10.02.2019
## 2585                  non-diapausing           10.02.2019
## 2586                  non-diapausing           10.02.2019
## 2587                  non-diapausing           10.02.2019
## 2588                  non-diapausing           10.02.2019
## 2589                  non-diapausing           10.02.2019
## 2590                  non-diapausing           10.02.2019
## 2591                  non-diapausing           10.02.2019
## 2592                  non-diapausing           10.02.2019
## 2593                  non-diapausing           10.03.2019
## 2594                  non-diapausing           10.03.2019
## 2595                  non-diapausing           10.03.2019
## 2596                  non-diapausing           10.03.2019
## 2597                  non-diapausing           10.03.2019
## 2598                  non-diapausing           10.03.2019
## 2599                  non-diapausing           10.03.2019
## 2600                  non-diapausing           10.03.2019
## 2601                  non-diapausing           10.02.2019
## 2602                  non-diapausing           10.02.2019
## 2603                  non-diapausing           10.02.2019
## 2604                  non-diapausing           10.02.2019
## 2605                  non-diapausing           10.02.2019
## 2606                  non-diapausing           10.02.2019
## 2607                  non-diapausing           10.02.2019
## 2608                  non-diapausing           10.02.2019
## 2609                  non-diapausing           10.02.2019
## 2610                  non-diapausing           10.02.2019
## 2611                  non-diapausing           10.02.2019
## 2612                  non-diapausing           10.02.2019
## 2613                  non-diapausing           10.02.2019
## 2614                  non-diapausing           10.02.2019
## 2615                  non-diapausing           10.02.2019
## 2616                  non-diapausing           10.02.2019
## 2617                  non-diapausing           10.02.2019
## 2618                  non-diapausing           10.02.2019
## 2619                  non-diapausing           10.02.2019
## 2620                  non-diapausing           10.02.2019
## 2621                  non-diapausing           10.02.2019
## 2622                  non-diapausing           10.02.2019
## 2623                  non-diapausing           10.02.2019
## 2624                  non-diapausing           10.02.2019
## 2625                  non-diapausing           10.02.2019
## 2626                  non-diapausing           10.02.2019
## 2627                  non-diapausing           10.02.2019
## 2628                  non-diapausing           10.02.2019
## 2629                  non-diapausing           10.02.2019
## 2630                  non-diapausing           10.02.2019
## 2631                  non-diapausing           10.02.2019
## 2632                  non-diapausing           10.02.2019
## 2633                  non-diapausing           10.05.2019
## 2634                  non-diapausing            10.2.2019
## 2635                  non-diapausing            10.2.2019
## 2636                  non-diapausing            10.2.2019
## 2637                  non-diapausing            10.2.2019
## 2638                  non-diapausing            10.2.2019
## 2639                  non-diapausing            10.2.2019
## 2640                  non-diapausing            10.2.2019
## 2641                  non-diapausing            10.2.2019
## 2642                  non-diapausing            10.2.2019
## 2643                  non-diapausing           10.02.2019
## 2644                  non-diapausing           10.02.2019
## 2645                  non-diapausing           10.02.2019
## 2646                  non-diapausing           10.02.2019
## 2647                  non-diapausing           10.02.2019
## 2648                  non-diapausing           10.02.2019
## 2649                  non-diapausing           10.02.2019
## 2650                  non-diapausing           10.02.2019
## 2651                  non-diapausing           10.02.2019
## 2652                  non-diapausing           10.02.2019
## 2653                  non-diapausing           10.02.2019
## 2654                  non-diapausing           10.02.2019
## 2655                  non-diapausing           10.02.2019
## 2656                  non-diapausing           10.02.2019
## 2657                  non-diapausing           10.02.2019
## 2658                  non-diapausing             2.9.2020
## 2659                  non-diapausing             2.9.2020
## 2660                  non-diapausing             2.9.2020
## 2661                  non-diapausing             2.9.2020
## 2662                  non-diapausing             2.9.2020
## 2663                  non-diapausing             2.9.2020
## 2664                  non-diapausing             2.9.2020
## 2665                  non-diapausing             2.9.2020
## 2666                  non-diapausing             2.9.2020
## 2667                  non-diapausing             2.9.2020
## 2668                  non-diapausing             2.9.2020
## 2669                  non-diapausing             2.9.2020
## 2670                  non-diapausing             2.9.2020
## 2671                  non-diapausing             2.9.2020
## 2672                  non-diapausing             2.9.2020
## 2673                  non-diapausing             2.9.2020
## 2674                  non-diapausing             2.9.2020
## 2675                  non-diapausing           02.09.2020
## 2676                  non-diapausing           02.09.2020
## 2677                  non-diapausing           02.09.2020
## 2678                  non-diapausing           02.09.2020
## 2679                  non-diapausing           02.09.2020
## 2680                  non-diapausing           02.09.2020
## 2681                  non-diapausing           02.09.2020
## 2682                  non-diapausing           02.09.2020
## 2683                  non-diapausing           02.09.2020
## 2684                  non-diapausing           02.09.2020
## 2685                  non-diapausing           02.09.2020
## 2686                  non-diapausing           02.09.2020
## 2687                  non-diapausing           02.09.2020
## 2688                  non-diapausing           02.09.2020
## 2689                  non-diapausing           02.09.2020
## 2690                  non-diapausing           02.09.2020
## 2691                  non-diapausing           02.09.2020
## 2692                  non-diapausing           02.09.2020
## 2693                  non-diapausing           02.09.2020
## 2694                  non-diapausing             2.5.2020
## 2695                  non-diapausing             2.7.2020
## 2696                  non-diapausing             2.7.2020
## 2697                  non-diapausing             2.7.2020
## 2698                  non-diapausing             2.7.2020
## 2699                  non-diapausing             2.7.2020
## 2700                  non-diapausing             2.7.2020
## 2701                  non-diapausing             2.7.2020
## 2702                  non-diapausing             2.7.2020
## 2703                  non-diapausing             2.7.2020
## 2704                  non-diapausing             2.7.2020
## 2705                  non-diapausing             2.7.2020
## 2706                  non-diapausing             2.7.2020
## 2707                  non-diapausing             2.7.2020
## 2708                  non-diapausing             2.7.2020
## 2709                  non-diapausing             2.7.2020
## 2710                  non-diapausing             2.7.2020
## 2711                  non-diapausing             2.7.2020
## 2712                  non-diapausing             2.7.2020
## 2713                  non-diapausing             2.7.2020
## 2714                  non-diapausing             2.7.2020
## 2715                  non-diapausing             2.7.2020
## 2716                  non-diapausing             2.7.2020
## 2717                  non-diapausing             2.7.2020
## 2718                  non-diapausing             2.7.2020
## 2719                  non-diapausing             2.7.2020
## 2720                  non-diapausing             2.7.2020
## 2721                  non-diapausing             2.7.2020
## 2722                  non-diapausing           02.07.2020
## 2723                  non-diapausing           02.07.2020
## 2724                  non-diapausing           02.07.2020
## 2725                  non-diapausing           02.07.2020
## 2726                  non-diapausing           02.07.2020
## 2727                  non-diapausing           02.07.2020
## 2728                  non-diapausing           02.07.2020
## 2729                  non-diapausing           02.07.2020
## 2730                  non-diapausing           02.07.2020
## 2731                  non-diapausing           02.07.2020
## 2732                  non-diapausing           02.07.2020
## 2733                  non-diapausing           02.07.2020
## 2734                  non-diapausing           02.07.2020
## 2735                  non-diapausing           02.07.2020
## 2736                  non-diapausing             2.5.2020
## 2737                  non-diapausing             2.5.2020
## 2738                  non-diapausing             2.5.2020
## 2739                  non-diapausing             2.5.2020
## 2740                  non-diapausing             2.5.2020
## 2741                  non-diapausing             2.5.2020
## 2742                  non-diapausing             2.5.2020
## 2743                  non-diapausing             2.5.2020
## 2744                  non-diapausing             2.5.2020
## 2745                  non-diapausing             2.5.2020
## 2746                  non-diapausing             2.5.2020
## 2747                  non-diapausing             2.5.2020
## 2748                  non-diapausing             2.5.2020
## 2749                  non-diapausing             2.5.2020
## 2750                  non-diapausing             2.5.2020
## 2751                  non-diapausing             2.5.2020
## 2752                  non-diapausing             2.5.2020
## 2753                  non-diapausing             2.5.2020
## 2754                  non-diapausing             2.5.2020
## 2755                  non-diapausing             2.5.2020
## 2756                  non-diapausing             2.5.2020
## 2757                  non-diapausing             2.5.2020
## 2758                  non-diapausing             2.5.2020
## 2759                  non-diapausing             2.5.2020
## 2760                  non-diapausing             2.5.2020
## 2761                  non-diapausing             2.5.2020
## 2762                  non-diapausing             2.5.2020
## 2763                  non-diapausing             2.5.2020
## 2764                  non-diapausing             2.5.2020
## 2765                  non-diapausing             2.5.2020
## 2766                  non-diapausing             2.5.2020
## 2767                  non-diapausing             2.5.2020
## 2768                  non-diapausing             2.5.2020
## 2769                  non-diapausing             2.5.2020
## 2770                  non-diapausing             2.5.2020
## 2771                  non-diapausing             2.5.2020
## 2772                  non-diapausing             2.5.2020
## 2773                  non-diapausing             2.5.2020
## 2774                  non-diapausing             2.5.2020
## 2775                  non-diapausing             2.5.2020
## 2776                  non-diapausing             2.5.2020
## 2777                  non-diapausing             2.5.2020
## 2778                  non-diapausing             2.5.2020
## 2779                  non-diapausing             2.5.2020
## 2780                  non-diapausing           02.06.2020
## 2781                  non-diapausing           02.06.2020
## 2782                  non-diapausing           02.06.2020
## 2783                  non-diapausing           02.06.2020
## 2784                  non-diapausing           02.06.2020
## 2785                  non-diapausing           02.06.2020
## 2786                  non-diapausing           02.06.2020
## 2787                  non-diapausing           02.06.2020
## 2788                  non-diapausing           02.06.2020
## 2789                  non-diapausing           02.06.2020
## 2790                  non-diapausing           02.06.2020
## 2791                  non-diapausing           02.06.2020
## 2792                  non-diapausing           02.06.2020
## 2793                  non-diapausing           02.06.2020
## 2794                  non-diapausing           02.06.2020
## 2795                  non-diapausing           02.06.2020
## 2796                  non-diapausing           02.06.2020
## 2797                  non-diapausing           02.06.2020
## 2798                  non-diapausing           02.06.2020
## 2799                  non-diapausing           02.06.2020
## 2800                  non-diapausing           02.06.2020
## 2801                  non-diapausing           02.06.2020
## 2802                  non-diapausing           02.06.2020
## 2803                  non-diapausing           02.06.2020
## 2804                  non-diapausing           02.06.2020
## 2805                  non-diapausing           02.06.2020
## 2806                  non-diapausing           02.06.2020
## 2807                  non-diapausing           02.06.2020
## 2808                  non-diapausing           02.06.2020
## 2809                  non-diapausing           02.06.2020
## 2810                  non-diapausing           02.06.2020
## 2811                  non-diapausing           02.06.2020
## 2812 diapause-like behavior observed             2.7.2020
## 2813 diapause-like behavior observed             2.7.2020
## 2814 diapause-like behavior observed             2.7.2020
## 2815 diapause-like behavior observed             2.7.2020
## 2816 diapause-like behavior observed             2.7.2020
## 2817 diapause-like behavior observed             2.7.2020
## 2818 diapause-like behavior observed             2.7.2020
## 2819 diapause-like behavior observed             2.7.2020
## 2820 diapause-like behavior observed             2.7.2020
## 2821 diapause-like behavior observed             2.7.2020
## 2822 diapause-like behavior observed             2.7.2020
## 2823 diapause-like behavior observed             2.7.2020
## 2824 diapause-like behavior observed             2.7.2020
## 2825 diapause-like behavior observed             2.7.2020
## 2826 diapause-like behavior observed             2.7.2020
## 2827 diapause-like behavior observed             2.7.2020
## 2828 diapause-like behavior observed             2.7.2020
## 2829 diapause-like behavior observed             2.7.2020
## 2830 diapause-like behavior observed             2.7.2020
## 2831 diapause-like behavior observed             2.7.2020
## 2832 diapause-like behavior observed             2.7.2020
## 2833 diapause-like behavior observed             2.7.2020
## 2834 diapause-like behavior observed             2.7.2020
## 2835 diapause-like behavior observed             2.7.2020
## 2836 diapause-like behavior observed           02.07.2020
## 2837 diapause-like behavior observed           02.07.2020
## 2838 diapause-like behavior observed           02.07.2020
## 2839 diapause-like behavior observed           02.07.2020
## 2840 diapause-like behavior observed           02.07.2020
## 2841 diapause-like behavior observed           02.07.2020
## 2842 diapause-like behavior observed           02.07.2020
## 2843 diapause-like behavior observed           02.07.2020
## 2844 diapause-like behavior observed           02.07.2020
## 2845 diapause-like behavior observed           02.07.2020
## 2846 diapause-like behavior observed           02.07.2020
## 2847 diapause-like behavior observed           02.07.2020
## 2848 diapause-like behavior observed           02.07.2020
## 2849 diapause-like behavior observed           02.07.2020
## 2850 diapause-like behavior observed           02.07.2020
## 2851 diapause-like behavior observed           02.07.2020
## 2852 diapause-like behavior observed           02.07.2020
## 2853 diapause-like behavior observed           02.07.2020
## 2854 diapause-like behavior observed           02.07.2020
## 2855                  non-diapausing             2.7.2020
## 2856                  non-diapausing             2.7.2020
## 2857                  non-diapausing             2.7.2020
## 2858                  non-diapausing             2.7.2020
## 2859                  non-diapausing             2.7.2020
## 2860                  non-diapausing             2.7.2020
## 2861                  non-diapausing             2.7.2020
## 2862                  non-diapausing             2.7.2020
## 2863                  non-diapausing             2.7.2020
## 2864                  non-diapausing             2.7.2020
## 2865                  non-diapausing             2.7.2020
## 2866                  non-diapausing           02.07.2020
## 2867                  non-diapausing           02.07.2020
## 2868                  non-diapausing           02.07.2020
## 2869                  non-diapausing           02.07.2020
## 2870                  non-diapausing           02.07.2020
## 2871                  non-diapausing           02.07.2020
## 2872                  non-diapausing           02.07.2020
## 2873                  non-diapausing           02.07.2020
## 2874                  non-diapausing           02.07.2020
## 2875                  non-diapausing           02.07.2020
## 2876                  non-diapausing           02.07.2020
## 2877                  non-diapausing           02.07.2020
## 2878                  non-diapausing           02.07.2020
## 2879                  non-diapausing           02.07.2020
## 2880                  non-diapausing           02.07.2020
## 2881                  non-diapausing           02.07.2020
## 2882                  non-diapausing           02.07.2020
## 2883                  non-diapausing           02.07.2020
## 2884                  non-diapausing           02.07.2020
## 2885                  non-diapausing           02.07.2020
## 2886                  non-diapausing           02.07.2020
## 2887                  non-diapausing           02.07.2020
## 2888                  non-diapausing           02.07.2020
## 2889                  non-diapausing           02.07.2020
## 2890                  non-diapausing           02.07.2020
## 2891                  non-diapausing           02.07.2020
## 2892                  non-diapausing           02.07.2020
## 2893                  non-diapausing           02.07.2020
## 2894                  non-diapausing           02.07.2020
## 2895                  non-diapausing           02.07.2020
## 2896                  non-diapausing           02.07.2020
## 2897                  non-diapausing           02.07.2020
## 2898                  non-diapausing           02.07.2020
## 2899                  non-diapausing           02.07.2020
## 2900                  non-diapausing           02.07.2020
## 2901                  non-diapausing           02.07.2020
## 2902                  non-diapausing           02.07.2020
## 2903                  non-diapausing           02.07.2020
## 2904                  non-diapausing           02.07.2020
## 2905                  non-diapausing             2.7.2020
## 2906                  non-diapausing             2.7.2020
## 2907                  non-diapausing             2.7.2020
## 2908                  non-diapausing             2.7.2020
## 2909                  non-diapausing             2.7.2020
## 2910                  non-diapausing             2.7.2020
## 2911                  non-diapausing             2.7.2020
## 2912                  non-diapausing             2.7.2020
## 2913                  non-diapausing             2.7.2020
## 2914                  non-diapausing             2.7.2020
## 2915                  non-diapausing             2.7.2020
## 2916                  non-diapausing             2.7.2020
## 2917                  non-diapausing           02.07.2020
## 2918                  non-diapausing           02.07.2020
## 2919                  non-diapausing           02.07.2020
## 2920                  non-diapausing           02.07.2020
## 2921                  non-diapausing           02.07.2020
## 2922                  non-diapausing           02.07.2020
## 2923                  non-diapausing           02.07.2020
## 2924                  non-diapausing           02.07.2020
## 2925                  non-diapausing           02.07.2020
## 2926                  non-diapausing           02.07.2020
## 2927                  non-diapausing           02.07.2020
## 2928                  non-diapausing           02.07.2020
## 2929                  non-diapausing           02.07.2020
## 2930                  non-diapausing           02.07.2020
## 2931                  non-diapausing           02.07.2020
## 2932                  non-diapausing           02.07.2020
## 2933                  non-diapausing           02.07.2020
## 2934                  non-diapausing             2.3.2020
## 2935                  non-diapausing             2.3.2020
## 2936                  non-diapausing             2.3.2020
## 2937                  non-diapausing             2.3.2020
## 2938                  non-diapausing             2.3.2020
## 2939                  non-diapausing             2.5.2020
## 2940                  non-diapausing             2.5.2020
## 2941                  non-diapausing             2.5.2020
## 2942                  non-diapausing             2.5.2020
## 2943                  non-diapausing             2.5.2020
## 2944                  non-diapausing             2.4.2020
## 2945                  non-diapausing             2.4.2020
## 2946                  non-diapausing             2.4.2020
## 2947                  non-diapausing             2.4.2020
## 2948                  non-diapausing             2.4.2020
## 2949                  non-diapausing             2.5.2020
## 2950                  non-diapausing             2.5.2020
## 2951                  non-diapausing             2.5.2020
## 2952                  non-diapausing             2.3.2020
## 2953                  non-diapausing             2.3.2020
## 2954                  non-diapausing             2.3.2020
## 2955                  non-diapausing             2.4.2020
## 2956                  non-diapausing             2.4.2020
## 2957                  non-diapausing             2.4.2020
## 2958                  non-diapausing             2.4.2020
## 2959                  non-diapausing             2.4.2020
## 2960                  non-diapausing             2.5.2020
## 2961                  non-diapausing             2.5.2020
## 2962                  non-diapausing             2.5.2020
## 2963                  non-diapausing             2.5.2020
## 2964                  non-diapausing             2.4.2020
## 2965                  non-diapausing             2.4.2020
## 2966                  non-diapausing             2.4.2020
## 2967                  non-diapausing             2.3.2020
## 2968                  non-diapausing             2.3.2020
## 2969                  non-diapausing             2.3.2020
## 2970                  non-diapausing             2.3.2020
## 2971                  non-diapausing             2.5.2020
## 2972                  non-diapausing             2.5.2020
## 2973                  non-diapausing             2.5.2020
## 2974                  non-diapausing             2.5.2020
## 2975                  non-diapausing             2.5.2020
## 2976                  non-diapausing             2.4.2020
## 2977                  non-diapausing             2.4.2020
## 2978                  non-diapausing             2.4.2020
## 2979                  non-diapausing             2.4.2020
## 2980                  non-diapausing             2.4.2020
## 2981                  non-diapausing             2.3.2020
## 2982                  non-diapausing             2.3.2020
## 2983                  non-diapausing             2.3.2020
## 2984                  non-diapausing             2.3.2020
## 2985                  non-diapausing             2.3.2020
## 2986                  non-diapausing             2.3.2020
## 2987                  non-diapausing             2.3.2020
## 2988                  non-diapausing             2.5.2020
## 2989                  non-diapausing             2.5.2020
## 2990                  non-diapausing             2.5.2020
## 2991                  non-diapausing             2.5.2020
## 2992                  non-diapausing             2.4.2020
## 2993                  non-diapausing             2.4.2020
## 2994                  non-diapausing             2.4.2020
## 2995                  non-diapausing             2.4.2020
## 2996                  non-diapausing             2.4.2020
## 2997                  non-diapausing             2.5.2020
## 2998                  non-diapausing             2.5.2020
## 2999                  non-diapausing             2.5.2020
## 3000                  non-diapausing             2.5.2020
## 3001                  non-diapausing             2.5.2020
## 3002                  non-diapausing             2.4.2020
## 3003                  non-diapausing             2.4.2020
## 3004                  non-diapausing             2.4.2020
## 3005                  non-diapausing             2.5.2020
## 3006                  non-diapausing             2.5.2020
## 3007                  non-diapausing             2.5.2020
## 3008                  non-diapausing             2.5.2020
## 3009                  non-diapausing             2.5.2020
## 3010                  non-diapausing             2.3.2020
## 3011                  non-diapausing             2.3.2020
## 3012                  non-diapausing             2.3.2020
## 3013                  non-diapausing             2.3.2020
## 3014                  non-diapausing             2.3.2020
## 3015                  non-diapausing             2.3.2020
## 3016                  non-diapausing             2.3.2020
## 3017                  non-diapausing             2.3.2020
## 3018                  non-diapausing             2.3.2020
## 3019                  non-diapausing             2.3.2020
## 3020                  non-diapausing             2.5.2020
## 3021                  non-diapausing             2.5.2020
## 3022                  non-diapausing             2.5.2020
## 3023                  non-diapausing             2.5.2020
## 3024                  non-diapausing             2.5.2020
## 3025                  non-diapausing             2.4.2020
## 3026                  non-diapausing             2.4.2020
## 3027                  non-diapausing             2.5.2020
## 3028                  non-diapausing             2.5.2020
## 3029                  non-diapausing             2.5.2020
## 3030                  non-diapausing             2.4.2020
## 3031                  non-diapausing             2.4.2020
## 3032                  non-diapausing             2.4.2020
## 3033                  non-diapausing             2.5.2020
## 3034                  non-diapausing             2.5.2020
## 3035                  non-diapausing             2.5.2020
## 3036                  non-diapausing             2.5.2020
## 3037                  non-diapausing             2.5.2020
## 3038                  non-diapausing             2.5.2020
## 3039                  non-diapausing             2.5.2020
## 3040                  non-diapausing             2.5.2020
## 3041                  non-diapausing             2.5.2020
## 3042                  non-diapausing             2.5.2020
## 3043                  non-diapausing             2.5.2020
## 3044                  non-diapausing             2.5.2020
## 3045                  non-diapausing             2.5.2020
## 3046                  non-diapausing             2.5.2020
## 3047                  non-diapausing             2.5.2020
## 3048                  non-diapausing             2.5.2020
## 3049                  non-diapausing             2.5.2020
## 3050                  non-diapausing             2.5.2020
## 3051                  non-diapausing             2.5.2020
## 3052                  non-diapausing             2.5.2020
## 3053                  non-diapausing             2.5.2020
## 3054                  non-diapausing             2.5.2020
## 3055                  non-diapausing             2.5.2020
## 3056                  non-diapausing             2.5.2020
## 3057                  non-diapausing             2.5.2020
## 3058                  non-diapausing             2.5.2020
## 3059                  non-diapausing             2.5.2020
## 3060                  non-diapausing             2.3.2020
## 3061                  non-diapausing             2.3.2020
## 3062                  non-diapausing             2.3.2020
## 3063                  non-diapausing             2.3.2020
## 3064                  non-diapausing             2.3.2020
## 3065                  non-diapausing             2.3.2020
## 3066                  non-diapausing             2.3.2020
## 3067                  non-diapausing             2.3.2020
## 3068                  non-diapausing             2.4.2020
## 3069                  non-diapausing             2.4.2020
## 3070                  non-diapausing             2.4.2020
## 3071                  non-diapausing             2.4.2020
## 3072                  non-diapausing           02.03.2020
## 3073                  non-diapausing           02.03.2020
## 3074                  non-diapausing           02.03.2020
## 3075                  non-diapausing           02.03.2020
## 3076                  non-diapausing           02.03.2020
## 3077                  non-diapausing           02.03.2020
## 3078                  non-diapausing           02.05.2020
## 3079                  non-diapausing           02.05.2020
## 3080                  non-diapausing           02.05.2020
## 3081                  non-diapausing           02.05.2020
## 3082                  non-diapausing           02.05.2020
## 3083                  non-diapausing           02.05.2020
## 3084                  non-diapausing           02.05.2020
## 3085                  non-diapausing           02.05.2020
## 3086                  non-diapausing           02.05.2020
## 3087                  non-diapausing           02.05.2020
## 3088                  non-diapausing           02.05.2020
## 3089                  non-diapausing           02.05.2020
## 3090                  non-diapausing           02.05.2020
## 3091                  non-diapausing           02.05.2020
## 3092                  non-diapausing           02.04.2020
## 3093                  non-diapausing           02.04.2020
## 3094                  non-diapausing           02.04.2020
## 3095                  non-diapausing           02.04.2020
## 3096                  non-diapausing           02.03.2020
## 3097                  non-diapausing           02.03.2020
## 3098                  non-diapausing           02.03.2020
## 3099                  non-diapausing           02.03.2020
## 3100                  non-diapausing           02.03.2020
## 3101                  non-diapausing           02.03.2020
## 3102                  non-diapausing           02.03.2020
## 3103                  non-diapausing           02.03.2020
## 3104                  non-diapausing           02.05.2020
## 3105                  non-diapausing           02.05.2020
## 3106                  non-diapausing           02.05.2020
## 3107                  non-diapausing           02.05.2020
## 3108                  non-diapausing           02.05.2020
## 3109                  non-diapausing           02.05.2020
## 3110                  non-diapausing           02.05.2020
## 3111                  non-diapausing           02.05.2020
## 3112                  non-diapausing           02.05.2020
## 3113                  non-diapausing           02.05.2020
## 3114                  non-diapausing           02.05.2020
## 3115                  non-diapausing           02.05.2020
## 3116                  non-diapausing           02.05.2020
## 3117                  non-diapausing           02.05.2020
## 3118                  non-diapausing           02.05.2020
## 3119                  non-diapausing           02.05.2020
## 3120                  non-diapausing           02.05.2020
## 3121                  non-diapausing           02.05.2020
## 3122                  non-diapausing           02.05.2020
## 3123                  non-diapausing           02.05.2020
## 3124                  non-diapausing           02.05.2020
## 3125                  non-diapausing           02.05.2020
## 3126                  non-diapausing           02.05.2020
## 3127                  non-diapausing           02.05.2020
## 3128                  non-diapausing           02.05.2020
## 3129                  non-diapausing           02.05.2020
## 3130                  non-diapausing           02.05.2020
## 3131                  non-diapausing           02.05.2020
## 3132                  non-diapausing           02.05.2020
## 3133                  non-diapausing           02.05.2020
## 3134                  non-diapausing           02.05.2020
## 3135                  non-diapausing           02.05.2020
## 3136                  non-diapausing           02.05.2020
## 3137                  non-diapausing           02.04.2020
## 3138                  non-diapausing           02.04.2020
## 3139                  non-diapausing           02.04.2020
## 3140                  non-diapausing           02.04.2020
## 3141                  non-diapausing           02.04.2020
## 3142                  non-diapausing           02.04.2020
## 3143                  non-diapausing           02.04.2020
## 3144                  non-diapausing           02.04.2020
## 3145                  non-diapausing           02.04.2020
## 3146                  non-diapausing           02.04.2020
## 3147                  non-diapausing           02.04.2020
## 3148                  non-diapausing           02.04.2020
## 3149                  non-diapausing           02.04.2020
## 3150                  non-diapausing           02.04.2020
## 3151                  non-diapausing           02.04.2020
## 3152                  non-diapausing           02.04.2020
## 3153                  non-diapausing           02.04.2020
## 3154                  non-diapausing           02.04.2020
## 3155                  non-diapausing             2.4.2020
## 3156                  non-diapausing             2.4.2020
## 3157                  non-diapausing             2.4.2020
## 3158                  non-diapausing             2.4.2020
## 3159                  non-diapausing             2.4.2020
## 3160                  non-diapausing             2.4.2020
## 3161                  non-diapausing             2.4.2020
## 3162                  non-diapausing             2.4.2020
## 3163                  non-diapausing             2.4.2020
## 3164                  non-diapausing             2.4.2020
## 3165                  non-diapausing             2.4.2020
## 3166                  non-diapausing             2.4.2020
## 3167                  non-diapausing             2.4.2020
## 3168                  non-diapausing             2.4.2020
## 3169                  non-diapausing             2.4.2020
## 3170                  non-diapausing             2.4.2020
## 3171                  non-diapausing             2.4.2020
## 3172                  non-diapausing             2.4.2020
## 3173                  non-diapausing             2.4.2020
## 3174                  non-diapausing             2.4.2020
## 3175                  non-diapausing             2.4.2020
## 3176                  non-diapausing             2.4.2020
## 3177                  non-diapausing             2.4.2020
## 3178                  non-diapausing             2.4.2020
## 3179                  non-diapausing             2.4.2020
## 3180                  non-diapausing             2.4.2020
## 3181                  non-diapausing             2.4.2020
## 3182                  non-diapausing             2.4.2020
## 3183                  non-diapausing             2.4.2020
## 3184                  non-diapausing             2.4.2020
## 3185                  non-diapausing             2.4.2020
## 3186                  non-diapausing             2.4.2020
## 3187                  non-diapausing             2.4.2020
## 3188                  non-diapausing             2.4.2020
## 3189                  non-diapausing             2.4.2020
## 3190                  non-diapausing             2.4.2020
## 3191                  non-diapausing             2.4.2020
## 3192                  non-diapausing             2.4.2020
## 3193                  non-diapausing             2.4.2020
## 3194                  non-diapausing             2.4.2020
## 3195                  non-diapausing             2.4.2020
## 3196                  non-diapausing             2.4.2020
## 3197                  non-diapausing             2.4.2020
## 3198                  non-diapausing             2.4.2020
## 3199                  non-diapausing             2.4.2020
## 3200                  non-diapausing             2.4.2020
## 3201                  non-diapausing             2.4.2020
## 3202                  non-diapausing             2.4.2020
## 3203                  non-diapausing             2.4.2020
## 3204                  non-diapausing             2.4.2020
## 3205                  non-diapausing             2.4.2020
## 3206                  non-diapausing           02.04.2020
## 3207                  non-diapausing           02.04.2020
## 3208                  non-diapausing           02.04.2020
## 3209                  non-diapausing           02.04.2020
## 3210                  non-diapausing           02.04.2020
## 3211                  non-diapausing           02.04.2020
## 3212                  non-diapausing           02.04.2020
## 3213                  non-diapausing           02.04.2020
## 3214                  non-diapausing           02.04.2020
## 3215                  non-diapausing           02.04.2020
## 3216                  non-diapausing           02.04.2020
## 3217                  non-diapausing           02.04.2020
## 3218                  non-diapausing           02.04.2020
## 3219                  non-diapausing           02.04.2020
## 3220                  non-diapausing           02.04.2020
## 3221                  non-diapausing           02.04.2020
## 3222                  non-diapausing           02.04.2020
## 3223                  non-diapausing           02.04.2020
## 3224                  non-diapausing           02.04.2020
## 3225                  non-diapausing           02.04.2020
## 3226                  non-diapausing           10.02.2019
## 3227                  non-diapausing           10.02.2019
## 3228                  non-diapausing           10.02.2019
## 3229                  non-diapausing           10.02.2019
## 3230                  non-diapausing           10.02.2019
## 3231                  non-diapausing           10.02.2019
## 3232                  non-diapausing           10.02.2019
## 3233                  non-diapausing           10.02.2019
## 3234                  non-diapausing           10.02.2019
## 3235                  non-diapausing           10.02.2019
## 3236                  non-diapausing           10.02.2019
## 3237                  non-diapausing           10.02.2019
## 3238                  non-diapausing           10.02.2019
## 3239                  non-diapausing           10.02.2019
## 3240                  non-diapausing           10.02.2019
## 3241                  non-diapausing           10.02.2019
## 3242                  non-diapausing           10.02.2019
## 3243                  non-diapausing           10.02.2019
## 3244                  non-diapausing           10.02.2019
## 3245                  non-diapausing           10.02.2019
## 3246                  non-diapausing           10.02.2019
## 3247                  non-diapausing           10.02.2019
## 3248                  non-diapausing           10.02.2019
## 3249                  non-diapausing           10.02.2019
## 3250                  non-diapausing           10.02.2019
## 3251                                           10.04.2019
## 3252                                           10.04.2019
## 3253                                           10.04.2019
## 3254                                           10.04.2019
## 3255                                           10.04.2019
## 3256                                           10.04.2019
## 3257                                           10.04.2019
## 3258                                           10.04.2019
## 3259                                           10.04.2019
## 3260                                           10.04.2019
## 3261                                           10.04.2019
## 3262                                           10.04.2019
## 3263                                           10.03.2019
## 3264                                           10.03.2019
## 3265                                           10.03.2019
## 3266                                           10.03.2019
## 3267                                           10.03.2019
## 3268                                           10.03.2019
## 3269                                           10.03.2019
## 3270                                           10.03.2019
## 3271                                           10.03.2019
## 3272                                           10.03.2019
## 3273                                           10.03.2019
## 3274                                           10.03.2019
## 3275                                           10.03.2019
## 3276                                           10.03.2019
## 3277                                           10.02.2019
## 3278                                           10.02.2019
## 3279                                           10.02.2019
## 3280                                           10.02.2019
## 3281                                           10.02.2019
## 3282                                           10.02.2019
## 3283                                           10.02.2019
## 3284                                           10.02.2019
## 3285                                           10.02.2019
## 3286                                           10.02.2019
## 3287                                           10.02.2019
## 3288                                           10.02.2019
## 3289                                           10.05.2019
## 3290                                           10.05.2019
## 3291                                           10.05.2019
## 3292                                           10.05.2019
## 3293                                           10.05.2019
## 3294                                           10.05.2019
## 3295                                           10.05.2019
## 3296                                           10.05.2019
## 3297                                           10.05.2019
## 3298                                           10.05.2019
## 3299                                           10.05.2019
## 3300                                           10.05.2019
## 3301                                           10.05.2019
## 3302                                           10.05.2019
## 3303                                           10.05.2019
## 3304                                           10.05.2019
## 3305                                           10.05.2019
## 3306                                           10.05.2019
## 3307                                           10.05.2019
## 3308                                           10.05.2019
## 3309                                           10.05.2019
## 3310                                           10.02.2019
## 3311                                           10.02.2019
## 3312                                           10.02.2019
## 3313                                           10.02.2019
## 3314                                           12.15.2016
## 3315                                           12.15.2016
## 3316                                           12.15.2016
## 3317                                           12.15.2016
## 3318                                           10.04.2019
## 3319                       tips torn           10.04.2019
## 3320                       tips torn           10.04.2019
## 3321                                           10.04.2019
## 3322                                           10.04.2019
## 3323                                           10.04.2019
## 3324                       tips torn           10.04.2019
## 3325                                           10.02.2019
## 3326                       tips torn           10.02.2019
## 3327                        d1 peach           10.02.2019
## 3328                                           10.02.2019
## 3329                                           10.02.2019
## 3330                                           10.02.2019
## 3331                                           10.04.2019
## 3332                       tips torn           10.04.2019
## 3333                       tips torn           10.04.2019
## 3334                       tips torn           10.03.2019
## 3335                                           10.03.2019
## 3336                                           10.03.2019
## 3337                                           10.03.2019
## 3338                                           10.03.2019
## 3339                       tips torn           10.03.2019
## 3340                      diapausing           05.21.2019
## 3341                      diapausing           05.21.2019
## 3342                      diapausing           05.21.2019
## 3343                      diapausing           05.21.2019
## 3344                      diapausing           05.21.2019
## 3345                      diapausing           05.21.2019
## 3346                      diapausing           05.21.2019
## 3347                      diapausing           05.21.2019
## 3348                      diapausing           05.21.2019
## 3349                      diapausing           05.21.2019
## 3350                      diapausing           05.21.2019
## 3351                      diapausing           05.21.2019
## 3352                      diapausing           05.21.2019
## 3353                      diapausing           05.21.2019
## 3354                      diapausing           05.21.2019
## 3355                      diapausing           05.21.2019
## 3356                      diapausing           05.21.2019
## 3357                      diapausing           05.21.2019
## 3358                      diapausing           05.21.2019
## 3359                      diapausing           05.21.2019
## 3360                      diapausing           05.21.2019
## 3361                      diapausing           05.21.2019
## 3362                      diapausing           05.21.2019
## 3363                      diapausing           05.21.2019
## 3364                      diapausing           05.21.2019
## 3365                      diapausing           05.21.2019
## 3366                      diapausing           05.21.2019
## 3367                      diapausing           05.21.2019
## 3368                      diapausing           05.21.2019
## 3369                      diapausing           05.21.2019
## 3370                      diapausing           05.21.2019
## 3371                      diapausing           05.21.2019
## 3372                      diapausing           05.21.2019
## 3373                      diapausing           05.21.2019
## 3374                      diapausing           05.21.2019
## 3375                      diapausing           05.21.2019
## 3376                      diapausing           05.21.2019
## 3377                      diapausing           05.21.2019
## 3378                      diapausing           05.21.2019
## 3379                      diapausing           05.21.2019
## 3380                      diapausing           05.21.2019
## 3381                      diapausing           05.21.2019
## 3382                      diapausing           05.21.2019
## 3383                      diapausing           05.21.2019
## 3384                      diapausing           05.21.2019
## 3385                      diapausing           05.21.2019
## 3386                      diapausing           05.21.2019
## 3387                      diapausing           05.21.2019
## 3388                      diapausing           05.21.2019
## 3389                      diapausing           05.21.2019
## 3390                      diapausing           05.21.2019
## 3391                      diapausing           05.21.2019
## 3392                      diapausing           05.21.2019
## 3393                      diapausing           05.21.2019
## 3394                                           05.21.2019
## 3395                                           05.21.2019
## 3396                                           05.21.2019
## 3397                                           05.21.2019
## 3398                                           05.21.2019
## 3399                                           05.21.2019
## 3400                                           05.21.2019
## 3401                                           05.21.2019
## 3402                                           05.21.2019
## 3403                                           05.21.2019
## 3404                                           05.21.2019
## 3405                                           05.21.2019
## 3406                                           05.21.2019
## 3407                                           05.21.2019
## 3408                                           05.21.2019
## 3409                                           05.21.2019
## 3410                                           05.21.2019
## 3411                                           05.21.2019
## 3412                                           05.21.2019
## 3413                                           05.21.2019
## 3414                                           05.21.2019
## 3415                                           05.21.2019
## 3416                                           05.21.2019
## 3417                                           05.21.2019
## 3418                                           05.21.2019
## 3419                                           05.21.2019
## 3420                                           05.21.2019
## 3421                                           05.21.2019
## 3422                                           05.21.2019
## 3423                                           05.21.2019
## 3424                                           05.21.2019
## 3425                                           05.21.2019
## 3426                                           05.21.2019
## 3427                                           05.21.2019
## 3428                                           05.21.2019
## 3429                                           05.21.2019
## 3430                                           05.21.2019
## 3431                                           05.21.2019
## 3432                                           05.21.2019
## 3433                                           05.21.2019
## 3434                                           05.21.2019
## 3435                                           05.21.2019
## 3436                                           05.21.2019
## 3437                                           05.21.2019
## 3438                                           05.21.2019
## 3439                                           05.21.2019
## 3440                                           05.21.2019
## 3441                                           05.21.2019
## 3442                                           05.21.2019
## 3443                                           05.21.2019
## 3444                                           05.21.2019
## 3445                                           05.21.2019
## 3446                                           05.21.2019
## 3447                                           05.21.2019
## 3448                                            5.17.2019
## 3449                                            5.17.2019
## 3450                                            5.17.2019
## 3451                                            5.17.2019
## 3452                                            5.17.2019
## 3453                                            5.17.2019
## 3454                                            5.17.2019
## 3455                                            5.17.2019
## 3456                                            5.17.2019
## 3457                                            5.17.2019
## 3458                                            5.17.2019
## 3459                                            5.17.2019
## 3460                                            5.17.2019
## 3461                                            5.17.2019
## 3462                                            5.17.2019
## 3463                                            5.17.2019
## 3464                                            5.17.2019
## 3465                                            5.17.2019
## 3466                                            5.17.2019
## 3467                                            5.17.2019
## 3468                                            5.17.2019
## 3469                                            5.17.2019
## 3470                                            5.17.2019
## 3471                                            5.17.2019
## 3472                                            5.17.2019
## 3473                                            5.17.2019
## 3474                                            5.17.2019
## 3475                                            5.17.2019
## 3476                                            5.17.2019
## 3477                                            5.17.2019
## 3478                                            5.17.2019
## 3479                                            5.17.2019
## 3480                                            5.17.2019
## 3481                                            5.17.2019
## 3482                                            5.17.2019
## 3483                                            5.17.2019
## 3484                                            5.17.2019
## 3485                                            5.17.2019
##                                  notes             site sex_binom pophost_binom
## 1                                              Ft.Myers        -1             1
## 2                                              Ft.Myers        -1             1
## 3                                              Ft.Myers        -1             1
## 4                                              Ft.Myers        -1             1
## 5                                              Ft.Myers        -1             1
## 6                                              Ft.Myers        -1             1
## 7                                              Ft.Myers        -1             1
## 8                                              Ft.Myers        -1             1
## 9                                              Ft.Myers        -1             1
## 10                                             Ft.Myers         1             1
## 11                                             Ft.Myers         1             1
## 12                                             Ft.Myers        -1             1
## 13                                             Ft.Myers        -1             1
## 14                                             Ft.Myers        -1             1
## 15                                             Ft.Myers         1             1
## 16                                             Ft.Myers        -1             1
## 17                                             Ft.Myers        -1             1
## 18                                             Ft.Myers         1             1
## 19                                             Ft.Myers        -1             1
## 20                                             Ft.Myers         1             1
## 21                                             Ft.Myers         1             1
## 22                                             Ft.Myers        -1             1
## 23                                             Ft.Myers         1             1
## 24                                             Ft.Myers        -1             1
## 25                                             Ft.Myers         1             1
## 26                                             Ft.Myers        -1             1
## 27                      date estimated         Ft.Myers         1             1
## 28                      date estimated         Ft.Myers         1             1
## 29                      date estimated         Ft.Myers         1             1
## 30                      date estimated         Ft.Myers        -1             1
## 31                      date estimated         Ft.Myers         1             1
## 32                      date estimated         Ft.Myers        -1             1
## 33                      date estimated         Ft.Myers        -1             1
## 34                      date estimated         Ft.Myers        -1             1
## 35                      date estimated         Ft.Myers         1             1
## 36                      date estimated         Ft.Myers        -1             1
## 37                      date estimated         Ft.Myers         1             1
## 38                      date estimated         Ft.Myers        -1             1
## 39                      date estimated         Ft.Myers        -1             1
## 40                      date estimated         Ft.Myers        -1             1
## 41                      date estimated         Ft.Myers        -1             1
## 42                      date estimated         Ft.Myers         1             1
## 43                      date estimated         Ft.Myers        -1             1
## 44                      date estimated         Ft.Myers         1             1
## 45                      date estimated         Ft.Myers        -1             1
## 46                      date estimated         Ft.Myers         1             1
## 47                      date estimated         Ft.Myers        -1             1
## 48                      date estimated         Ft.Myers         1             1
## 49                      date estimated         Ft.Myers         1             1
## 50                      date estimated         Ft.Myers        -1             1
## 51                      date estimated         Ft.Myers         1             1
## 52                      date estimated         Ft.Myers        -1             1
## 53                      date estimated         Ft.Myers        -1             1
## 54                      date estimated         Ft.Myers         1             1
## 55                      date estimated         Ft.Myers        -1             1
## 56                      date estimated         Ft.Myers         1             1
## 57                      date estimated         Ft.Myers        -1             1
## 58                      date estimated         Ft.Myers        -1             1
## 59                      date estimated         Ft.Myers         1             1
## 60                      date estimated         Ft.Myers         1             1
## 61                      date estimated         Ft.Myers         1             1
## 62                      date estimated         Ft.Myers        -1             1
## 63                      date estimated         Ft.Myers         1             1
## 64                      date estimated         Ft.Myers        -1             1
## 65                      date estimated         Ft.Myers         1             1
## 66                      date estimated         Ft.Myers         1             1
## 67                      date estimated         Ft.Myers        -1             1
## 68                      date estimated         Ft.Myers         1             1
## 69                      date estimated         Ft.Myers         1             1
## 70                      date estimated         Ft.Myers        -1             1
## 71                      date estimated         Ft.Myers         1             1
## 72                      date estimated         Ft.Myers         1             1
## 73                      date estimated         Ft.Myers         1             1
## 74                      date estimated         Ft.Myers        -1             1
## 75                      date estimated         Ft.Myers        -1             1
## 76                      date estimated SW 210th Terrace         1            -1
## 77                      date estimated SW 210th Terrace        -1            -1
## 78                      date estimated SW 210th Terrace         1            -1
## 79                      date estimated SW 210th Terrace        -1            -1
## 80                      date estimated SW 210th Terrace         1            -1
## 81                      date estimated SW 210th Terrace        -1            -1
## 82                      date estimated SW 210th Terrace        -1            -1
## 83                      date estimated SW 210th Terrace        -1            -1
## 84                      date estimated SW 210th Terrace         1            -1
## 85                      date estimated SW 210th Terrace         1            -1
## 86                      date estimated SW 210th Terrace        -1            -1
## 87                      date estimated SW 210th Terrace        -1            -1
## 88                      date estimated SW 210th Terrace        -1            -1
## 89                      date estimated SW 210th Terrace        -1            -1
## 90                      date estimated SW 210th Terrace         1            -1
## 91                      date estimated SW 210th Terrace        -1            -1
## 92                      date estimated SW 210th Terrace        -1            -1
## 93                      date estimated SW 210th Terrace        -1            -1
## 94                      date estimated SW 210th Terrace         1            -1
## 95                      date estimated SW 210th Terrace        -1            -1
## 96                      date estimated SW 210th Terrace         1            -1
## 97                      date estimated SW 210th Terrace         1            -1
## 98                      date estimated SW 210th Terrace         1            -1
## 99                      date estimated SW 210th Terrace         1            -1
## 100                     date estimated SW 210th Terrace         1            -1
## 101                     date estimated SW 210th Terrace         1            -1
## 102                     date estimated SW 210th Terrace         1            -1
## 103                                    SW 210th Terrace        -1            -1
## 104                                    SW 210th Terrace         1            -1
## 105                                    SW 210th Terrace        -1            -1
## 106                                    SW 210th Terrace         1            -1
## 107                                    SW 210th Terrace         1            -1
## 108                                    SW 210th Terrace         1            -1
## 109                                    SW 210th Terrace        -1            -1
## 110                                    SW 210th Terrace        -1            -1
## 111                                    SW 210th Terrace        -1            -1
## 112                                    SW 210th Terrace        -1            -1
## 113                                    SW 210th Terrace        -1            -1
## 114                                         SW 296th St         1             1
## 115                                         SW 296th St         1             1
## 116                                         SW 296th St         1             1
## 117                                         SW 296th St         1             1
## 118                                         SW 296th St        -1             1
## 119                                         SW 296th St         1             1
## 120                                         SW 296th St        -1             1
## 121                                         SW 296th St         1             1
## 122                                         SW 296th St         1             1
## 123                                         SW 296th St        -1             1
## 124                                         SW 296th St         1             1
## 125                                         SW 296th St        -1             1
## 126                                         SW 296th St        -1             1
## 127                                         SW 296th St        -1             1
## 128                                         SW 296th St         1             1
## 129                                         SW 296th St        -1             1
## 130                                         SW 296th St        -1             1
## 131                                         SW 296th St        -1             1
## 132                                         SW 296th St        -1             1
## 133                                         SW 296th St         1             1
## 134                                         SW 296th St         1             1
## 135                                         SW 296th St        -1             1
## 136                                         SW 296th St        -1             1
## 137                                         SW 296th St         1             1
## 138                                         SW 296th St         1             1
## 139                                         SW 296th St        -1             1
## 140                                         Charlemagne        -1            -1
## 141                                         Charlemagne        -1            -1
## 142                                         Charlemagne         1            -1
## 143                                         Charlemagne        -1            -1
## 144                                         Charlemagne        -1            -1
## 145                                         Charlemagne        -1            -1
## 146                                         Charlemagne         1            -1
## 147                                         Charlemagne        -1            -1
## 148                                         Charlemagne        -1            -1
## 149                                         Charlemagne        -1            -1
## 150                                         Charlemagne        -1            -1
## 151                                         Charlemagne        -1            -1
## 152                                         Charlemagne        -1            -1
## 153      date estimated; GPS estimated      Charlemagne        -1            -1
## 154      date estimated; GPS estimated      Charlemagne         1            -1
## 155      date estimated; GPS estimated      Charlemagne         1            -1
## 156      date estimated; GPS estimated      Charlemagne        -1            -1
## 157      date estimated; GPS estimated      Charlemagne         1            -1
## 158      date estimated; GPS estimated      Charlemagne        -1            -1
## 159      date estimated; GPS estimated      Charlemagne         1            -1
## 160      date estimated; GPS estimated      Charlemagne        -1            -1
## 161      date estimated; GPS estimated      Charlemagne         1            -1
## 162      date estimated; GPS estimated      Charlemagne         1            -1
## 163      date estimated; GPS estimated      Charlemagne         1            -1
## 164      date estimated; GPS estimated      Charlemagne         1            -1
## 165      date estimated; GPS estimated      Charlemagne         1            -1
## 166      date estimated; GPS estimated      Charlemagne        -1            -1
## 167      date estimated; GPS estimated      Charlemagne        -1            -1
## 168      date estimated; GPS estimated      Charlemagne         1            -1
## 169      date estimated; GPS estimated      Charlemagne        -1            -1
## 170      date estimated; GPS estimated      Charlemagne        -1            -1
## 171      date estimated; GPS estimated      Charlemagne         1            -1
## 172      date estimated; GPS estimated      Charlemagne        -1            -1
## 173      date estimated; GPS estimated      Charlemagne        -1            -1
## 174      date estimated; GPS estimated      Charlemagne        -1            -1
## 175      date estimated; GPS estimated      Charlemagne         1            -1
## 176      date estimated; GPS estimated      Charlemagne        -1            -1
## 177      date estimated; GPS estimated      Charlemagne         1            -1
## 178      date estimated; GPS estimated      Charlemagne        -1            -1
## 179      date estimated; GPS estimated      Charlemagne         1            -1
## 180      date estimated; GPS estimated      Charlemagne        -1            -1
## 181      date estimated; GPS estimated      Charlemagne        -1            -1
## 182      date estimated; GPS estimated      Charlemagne         1            -1
## 183      date estimated; GPS estimated      Charlemagne        -1            -1
## 184      date estimated; GPS estimated      Charlemagne        -1            -1
## 185      date estimated; GPS estimated      Charlemagne         1            -1
## 186      date estimated; GPS estimated      Charlemagne        -1            -1
## 187      date estimated; GPS estimated      Charlemagne         1            -1
## 188      date estimated; GPS estimated      Charlemagne        -1            -1
## 189      date estimated; GPS estimated      Charlemagne         1            -1
## 190      date estimated; GPS estimated      Charlemagne         1            -1
## 191      date estimated; GPS estimated      Charlemagne         1            -1
## 192      date estimated; GPS estimated      Charlemagne         1            -1
## 193      date estimated; GPS estimated      Charlemagne         1            -1
## 194      date estimated; GPS estimated      Charlemagne        -1            -1
## 195      date estimated; GPS estimated      Charlemagne        -1            -1
## 196      date estimated; GPS estimated      Charlemagne        -1            -1
## 197      date estimated; GPS estimated      Charlemagne        -1            -1
## 198      date estimated; GPS estimated      Charlemagne        -1            -1
## 199      date estimated; GPS estimated      Charlemagne         1            -1
## 200      date estimated; GPS estimated      Charlemagne         1            -1
## 201                                            Polk Ave        -1             1
## 202                                            Polk Ave        -1             1
## 203                                            Polk Ave        -1             1
## 204                                            Polk Ave         1             1
## 205                                            Polk Ave        -1             1
## 206                                            Polk Ave        -1             1
## 207                                            Polk Ave         1             1
## 208                                            Polk Ave        -1             1
## 209                                            Polk Ave        -1             1
## 210                                            Polk Ave        -1             1
## 211                                            Polk Ave         1             1
## 212                                            Polk Ave        -1             1
## 213                                            Polk Ave         1             1
## 214                                            Polk Ave        -1             1
## 215                                            Polk Ave        -1             1
## 216                                            Polk Ave        -1             1
## 217                                            Polk Ave         1             1
## 218                                            Polk Ave        -1             1
## 219                                            Polk Ave        -1             1
## 220                                            Polk Ave        -1             1
## 221                                            Polk Ave        -1             1
## 222                                            Polk Ave        -1             1
## 223                                            Polk Ave        -1             1
## 224                                            Polk Ave         1             1
## 225                                            Polk Ave        -1             1
## 226                                            Polk Ave        -1             1
## 227                                            Polk Ave        -1             1
## 228                                            Polk Ave        -1             1
## 229                                            Polk Ave        -1             1
## 230                     date estimated         Polk Ave        -1             1
## 231                     date estimated         Polk Ave        -1             1
## 232                     date estimated         Polk Ave         1             1
## 233                     date estimated         Polk Ave         1             1
## 234                     date estimated         Polk Ave        -1             1
## 235                     date estimated         Polk Ave        -1             1
## 236                     date estimated         Polk Ave         1             1
## 237                     date estimated         Polk Ave         1             1
## 238                     date estimated         Polk Ave        -1             1
## 239                     date estimated         Polk Ave         1             1
## 240                     date estimated         Polk Ave         1             1
## 241                     date estimated         Polk Ave        -1             1
## 242                     date estimated         Polk Ave        -1             1
## 243                     date estimated         Polk Ave         1             1
## 244                     date estimated         Polk Ave        -1             1
## 245                     date estimated         Polk Ave         1             1
## 246                     date estimated         Polk Ave         1             1
## 247                     date estimated         Polk Ave         1             1
## 248                     date estimated         Polk Ave         1             1
## 249                     date estimated         Polk Ave         1             1
## 250                     date estimated         Polk Ave        -1             1
## 251                     date estimated         Polk Ave        -1             1
## 252                     date estimated         Polk Ave        -1             1
## 253                     date estimated         Polk Ave        -1             1
## 254                     date estimated         Polk Ave        -1             1
## 255                     date estimated         Polk Ave        -1             1
## 256                     date estimated         Polk Ave        -1             1
## 257                     date estimated         Polk Ave         1             1
## 258                     date estimated         Polk Ave        -1             1
## 259                     date estimated         Polk Ave         1             1
## 260                     date estimated         Polk Ave        -1             1
## 261      date estimated; GPS estimated      Mount & 8th        -1             1
## 262      date estimated; GPS estimated      Mount & 8th        -1             1
## 263      date estimated; GPS estimated      Mount & 8th         1             1
## 264      date estimated; GPS estimated      Mount & 8th        -1             1
## 265      date estimated; GPS estimated      Mount & 8th         1             1
## 266      date estimated; GPS estimated      Mount & 8th        -1             1
## 267      date estimated; GPS estimated      Mount & 8th        -1             1
## 268      date estimated; GPS estimated      Mount & 8th         1             1
## 269      date estimated; GPS estimated      Mount & 8th        -1             1
## 270      date estimated; GPS estimated      Mount & 8th        -1             1
## 271      date estimated; GPS estimated      Mount & 8th         1             1
## 272      date estimated; GPS estimated      Mount & 8th        -1             1
## 273      date estimated; GPS estimated      Mount & 8th         1             1
## 274      date estimated; GPS estimated      Mount & 8th        -1             1
## 275      date estimated; GPS estimated      Mount & 8th        -1             1
## 276      date estimated; GPS estimated      Mount & 8th         1             1
## 277      date estimated; GPS estimated      Mount & 8th        -1             1
## 278      date estimated; GPS estimated      Mount & 8th        -1             1
## 279      date estimated; GPS estimated      Mount & 8th         1             1
## 280      date estimated; GPS estimated      Mount & 8th        -1             1
## 281      date estimated; GPS estimated      Mount & 8th         1             1
## 282      date estimated; GPS estimated      Mount & 8th        -1             1
## 283      date estimated; GPS estimated      Mount & 8th         1             1
## 284      date estimated; GPS estimated      Mount & 8th         1             1
## 285      date estimated; GPS estimated      Mount & 8th         1             1
## 286      date estimated; GPS estimated        Founder's        -1            -1
## 287      date estimated; GPS estimated        Founder's         1            -1
## 288      date estimated; GPS estimated        Founder's        -1            -1
## 289      date estimated; GPS estimated        Founder's        -1            -1
## 290      date estimated; GPS estimated        Founder's        -1            -1
## 291      date estimated; GPS estimated        Founder's         1            -1
## 292      date estimated; GPS estimated        Founder's        -1            -1
## 293      date estimated; GPS estimated        Founder's        -1            -1
## 294      date estimated; GPS estimated        Founder's        -1            -1
## 295      date estimated; GPS estimated        Founder's         1            -1
## 296      date estimated; GPS estimated        Founder's         1            -1
## 297      date estimated; GPS estimated        Founder's        -1            -1
## 298      date estimated; GPS estimated        Founder's        -1            -1
## 299      date estimated; GPS estimated        Founder's         1            -1
## 300      date estimated; GPS estimated        Founder's        -1            -1
## 301      date estimated; GPS estimated        Founder's        -1            -1
## 302      date estimated; GPS estimated        Founder's        -1            -1
## 303      date estimated; GPS estimated        Founder's        -1            -1
## 304      date estimated; GPS estimated        Founder's        -1            -1
## 305      date estimated; GPS estimated        Founder's         1            -1
## 306      date estimated; GPS estimated        Founder's        -1            -1
## 307      date estimated; GPS estimated        Founder's         1            -1
## 308      date estimated; GPS estimated        Founder's         1            -1
## 309      date estimated; GPS estimated        Founder's         1            -1
## 310      date estimated; GPS estimated        Founder's         1            -1
## 311      date estimated; GPS estimated        Founder's        -1            -1
## 312      date estimated; GPS estimated        Founder's         1            -1
## 313      date estimated; GPS estimated        Founder's        -1            -1
## 314      date estimated; GPS estimated        Founder's        -1            -1
## 315      date estimated; GPS estimated        Founder's        -1            -1
## 316      date estimated; GPS estimated        Founder's         1            -1
## 317      date estimated; GPS estimated        Founder's         1            -1
## 318      date estimated; GPS estimated        Founder's         1            -1
## 319      date estimated; GPS estimated        Founder's        -1            -1
## 320      date estimated; GPS estimated        Founder's         1            -1
## 321      date estimated; GPS estimated        Founder's        -1            -1
## 322                                            Ft.Myers        -1             1
## 323                                            Ft.Myers         1             1
## 324                                            Ft.Myers         1             1
## 325                                            Ft.Myers         1             1
## 326                                            Ft.Myers         1             1
## 327                                            Ft.Myers        -1             1
## 328                                            Ft.Myers         1             1
## 329                                            Ft.Myers         1             1
## 330                                            Ft.Myers         1             1
## 331                                            Ft.Myers        -1             1
## 332                                            Ft.Myers         1             1
## 333                                            Ft.Myers         1             1
## 334                                            Ft.Myers        -1             1
## 335                                            Ft.Myers         1             1
## 336                                            Ft.Myers         1             1
## 337                                            Ft.Myers        -1             1
## 338                                            Ft.Myers        -1             1
## 339                                            Ft.Myers         1             1
## 340                                            Ft.Myers         1             1
## 341                                            Ft.Myers         1             1
## 342                                            Ft.Myers         1             1
## 343                                            Ft.Myers         1             1
## 344                                            Ft.Myers         1             1
## 345                                            Ft.Myers         1             1
## 346                                            Ft.Myers        -1             1
## 347                                            Ft.Myers         1             1
## 348                                            Ft.Myers         1             1
## 349                                            Ft.Myers         1             1
## 350                                            Ft.Myers         1             1
## 351                                            Ft.Myers         1             1
## 352                                            Ft.Myers         1             1
## 353                                            Ft.Myers         1             1
## 354                                            Ft.Myers         1             1
## 355                                            Ft.Myers         1             1
## 356                                            Ft.Myers        -1             1
## 357                                            Ft.Myers         1             1
## 358                                            Ft.Myers        -1             1
## 359                                            Ft.Myers         1             1
## 360                                            Ft.Myers        -1             1
## 361                                            Ft.Myers         1             1
## 362                                            Ft.Myers         1             1
## 363                                            Ft.Myers         1             1
## 364                                            Ft.Myers         1             1
## 365                                            Ft.Myers         1             1
## 366                                            Ft.Myers        -1             1
## 367                                            Ft.Myers         1             1
## 368                                            Ft.Myers        -1             1
## 369                                            Ft.Myers         1             1
## 370                                            Ft.Myers        -1             1
## 371                                            Ft.Myers        -1             1
## 372                                            Ft.Myers        -1             1
## 373                                            Ft.Myers         1             1
## 374                                            Ft.Myers         1             1
## 375                                            Ft.Myers         1             1
## 376                                            Ft.Myers        -1             1
## 377                                            Ft.Myers         1             1
## 378                                            Ft.Myers         1             1
## 379                                            Ft.Myers         1             1
## 380                                            Ft.Myers        -1             1
## 381                                            Ft.Myers         1             1
## 382                                            Ft.Myers        -1             1
## 383                                            Ft.Myers         1             1
## 384                                            Ft.Myers         1             1
## 385                                            Ft.Myers         1             1
## 386                                            Ft.Myers         1             1
## 387                                            Ft.Myers         1             1
## 388                                            Ft.Myers        -1             1
## 389                                            Ft.Myers        -1             1
## 390                                            Ft.Myers         1             1
## 391                                            Ft.Myers         1             1
## 392                                            Ft.Myers         1             1
## 393                                            Ft.Myers         1             1
## 394                                            Ft.Myers         1             1
## 395                                            Ft.Myers         1             1
## 396                                            Ft.Myers         1             1
## 397                      GPS estimated       23rd & 8th        -1             1
## 398                      GPS estimated       23rd & 8th        -1             1
## 399                      GPS estimated       23rd & 8th         1             1
## 400                      GPS estimated       23rd & 8th        -1             1
## 401                      GPS estimated       23rd & 8th        -1             1
## 402                      GPS estimated       23rd & 8th        -1             1
## 403                      GPS estimated       23rd & 8th        -1             1
## 404                      GPS estimated       23rd & 8th        -1             1
## 405                      GPS estimated       23rd & 8th        -1             1
## 406                      GPS estimated       23rd & 8th        -1             1
## 407                      GPS estimated       23rd & 8th         1             1
## 408                      GPS estimated       23rd & 8th        -1             1
## 409                      GPS estimated       23rd & 8th         1             1
## 410                      GPS estimated       23rd & 8th         1             1
## 411                                    SW 210th Terrace         1            -1
## 412                                    SW 210th Terrace         1            -1
## 413                                    SW 210th Terrace         1            -1
## 414                                    SW 210th Terrace         1            -1
## 415                                    SW 210th Terrace        -1            -1
## 416                                    SW 210th Terrace         1            -1
## 417                                    SW 210th Terrace        -1            -1
## 418                                    SW 210th Terrace         1            -1
## 419                                    SW 210th Terrace         1            -1
## 420                                    SW 210th Terrace         1            -1
## 421                                    SW 210th Terrace         1            -1
## 422                                    SW 210th Terrace        -1            -1
## 423                                    SW 210th Terrace         1            -1
## 424                                    SW 210th Terrace         1            -1
## 425                                    SW 210th Terrace        -1            -1
## 426                                    SW 210th Terrace         1            -1
## 427                                    SW 210th Terrace         1            -1
## 428                                    SW 210th Terrace        -1            -1
## 429                                    SW 210th Terrace         1            -1
## 430                                    SW 210th Terrace        -1            -1
## 431                                    SW 210th Terrace        -1            -1
## 432                                    SW 210th Terrace        -1            -1
## 433                                    SW 210th Terrace         1            -1
## 434                      GPS estimated      SW 296th St        -1             1
## 435                      GPS estimated      SW 296th St         1             1
## 436                      GPS estimated      SW 296th St        -1             1
## 437                      GPS estimated      SW 296th St         1             1
## 438                      GPS estimated      SW 296th St         1             1
## 439                      GPS estimated      SW 296th St        -1             1
## 440                      GPS estimated      SW 296th St         1             1
## 441                      GPS estimated      SW 296th St        -1             1
## 442                      GPS estimated      SW 296th St        -1             1
## 443                      GPS estimated      SW 296th St        -1             1
## 444                      GPS estimated      SW 296th St         1             1
## 445                      GPS estimated      SW 296th St         1             1
## 446                      GPS estimated      SW 296th St        -1             1
## 447                      GPS estimated      SW 296th St         1             1
## 448                      GPS estimated      SW 296th St        -1             1
## 449                      GPS estimated      SW 296th St         1             1
## 450                      GPS estimated      SW 296th St        -1             1
## 451                      GPS estimated      SW 296th St         1             1
## 452                      GPS estimated      SW 296th St        -1             1
## 453                      GPS estimated      SW 296th St        -1             1
## 454                      GPS estimated      SW 296th St         1             1
## 455                      GPS estimated      SW 296th St         1             1
## 456                      GPS estimated      SW 296th St        -1             1
## 457                      GPS estimated      SW 296th St         1             1
## 458                      GPS estimated      SW 296th St        -1             1
## 459                      GPS estimated      SW 296th St         1             1
## 460                      GPS estimated      SW 296th St         1             1
## 461                      GPS estimated      SW 296th St         1             1
## 462                      GPS estimated      SW 296th St        -1             1
## 463                                                  JP        -1            -1
## 464                                                  JP         1            -1
## 465                                                  JP         1            -1
## 466                                                  JP        -1            -1
## 467                                                  JP         1            -1
## 468                                                  JP         1            -1
## 469                                                  JP        -1            -1
## 470                                                  JP         1            -1
## 471                                                  JP         1            -1
## 472                                                  JP        -1            -1
## 473                                                  JP        -1            -1
## 474                                                  JP         1            -1
## 475                                                  JP        -1            -1
## 476                                                  JP        -1            -1
## 477                                                  JP        -1            -1
## 478                                                  JP         1            -1
## 479                                                  JP        -1            -1
## 480                                                  JP         1            -1
## 481                                                  JP        -1            -1
## 482                                                  JP        -1            -1
## 483                                                  JP         1            -1
## 484                                                  JP        -1            -1
## 485                                                  JP         1            -1
## 486                                                  JP        -1            -1
## 487                                                  JP         1            -1
## 488                                                  JP         1            -1
## 489                                                  JP         1            -1
## 490                                                  JP        -1            -1
## 491                                                  JP         1            -1
## 492                                                  JP         1            -1
## 493                                                  JP        -1            -1
## 494                                                  JP         1            -1
## 495                                            Polk Ave         1             1
## 496                                            Polk Ave        -1             1
## 497                                            Polk Ave         1             1
## 498                                            Polk Ave         1             1
## 499                                            Polk Ave         1             1
## 500                                            Polk Ave        -1             1
## 501                                            Polk Ave         1             1
## 502                                            Polk Ave        -1             1
## 503                                            Polk Ave         1             1
## 504                                            Polk Ave         1             1
## 505                                            Polk Ave        -1             1
## 506                                            Polk Ave         1             1
## 507                                            Polk Ave        -1             1
## 508                                            Polk Ave         1             1
## 509                                            Polk Ave        -1             1
## 510                                            Polk Ave        -1             1
## 511                                            Polk Ave        -1             1
## 512                                            Polk Ave         1             1
## 513                                            Polk Ave        -1             1
## 514                                            Polk Ave        -1             1
## 515                                            Polk Ave        -1             1
## 516                                            Polk Ave         1             1
## 517                                            Polk Ave         1             1
## 518                                            Polk Ave         1             1
## 519                                            Polk Ave        -1             1
## 520                                            Polk Ave        -1             1
## 521                                            Polk Ave        -1             1
## 522                                            Polk Ave        -1             1
## 523                                            Polk Ave        -1             1
## 524                                            Polk Ave         1             1
## 525                                            Polk Ave        -1             1
## 526                                            Polk Ave        -1             1
## 527                                            Polk Ave         1             1
## 528                                            Polk Ave        -1             1
## 529                                            Polk Ave        -1             1
## 530                                            Polk Ave        -1             1
## 531                                            Polk Ave        -1             1
## 532                                            Polk Ave        -1             1
## 533                                            Polk Ave         1             1
## 534                                            Polk Ave        -1             1
## 535                                            Polk Ave         1             1
## 536                                            Polk Ave        -1             1
## 537                                            Polk Ave         1             1
## 538                                            Polk Ave         1             1
## 539                                            Polk Ave         1             1
## 540                                            Polk Ave        -1             1
## 541                                            Polk Ave        -1             1
## 542                                            Polk Ave        -1             1
## 543                                            Polk Ave         1             1
## 544                                            Polk Ave        -1             1
## 545                                            Polk Ave         1             1
## 546                                            Polk Ave        -1             1
## 547                                            Polk Ave         1             1
## 548                                            Polk Ave         1             1
## 549                                            Polk Ave         1             1
## 550                                            Polk Ave        -1             1
## 551                                            Polk Ave        -1             1
## 552                                            Polk Ave         1             1
## 553                                            Polk Ave        -1             1
## 554                                            Polk Ave        -1             1
## 555                                            Polk Ave        -1             1
## 556                                            Polk Ave         1             1
## 557                                            Polk Ave         1             1
## 558                                            Polk Ave        -1             1
## 559                                            Polk Ave        -1             1
## 560                                            Polk Ave         1             1
## 561                                            Polk Ave        -1             1
## 562                                            Polk Ave        -1             1
## 563                                            Polk Ave        -1             1
## 564                                            Polk Ave        -1             1
## 565                                            Polk Ave        -1             1
## 566                                            Polk Ave        -1             1
## 567                                            Polk Ave        -1             1
## 568                                            Polk Ave        -1             1
## 569                                            Polk Ave        -1             1
## 570                                            Polk Ave         1             1
## 571                                            Polk Ave        -1             1
## 572                                            Polk Ave        -1             1
## 573                                            Polk Ave         1             1
## 574                                            Polk Ave        -1             1
## 575                                            Polk Ave        -1             1
## 576                                            Polk Ave         1             1
## 577                                            Polk Ave        -1             1
## 578                                            Polk Ave        -1             1
## 579                                         Mount & 8th         1             1
## 580                                         Mount & 8th         1             1
## 581                                         Mount & 8th         1             1
## 582                                         Mount & 8th         1             1
## 583                                         Mount & 8th        -1             1
## 584                                         Mount & 8th        -1             1
## 585                                         Mount & 8th         1             1
## 586                                         Mount & 8th         1             1
## 587                                         Mount & 8th        -1             1
## 588                                         Mount & 8th        -1             1
## 589                                         Mount & 8th         1             1
## 590                                         Mount & 8th        -1             1
## 591                                         Mount & 8th         1             1
## 592                                         Mount & 8th         1             1
## 593                                         Mount & 8th        -1             1
## 594                                         Mount & 8th        -1             1
## 595                                         Mount & 8th         1             1
## 596                                         Mount & 8th         1             1
## 597                                         Mount & 8th         1             1
## 598                                         Mount & 8th         1             1
## 599                                         Mount & 8th         1             1
## 600                                         Mount & 8th         1             1
## 601                                         Mount & 8th        -1             1
## 602                                         Mount & 8th         1             1
## 603                                         Mount & 8th         1             1
## 604                                         Mount & 8th        -1             1
## 605                                         Mount & 8th        -1             1
## 606                                         Mount & 8th        -1             1
## 607                                         Mount & 8th        -1             1
## 608                                         Mount & 8th         1             1
## 609                                         Mount & 8th         1             1
## 610                                         Mount & 8th        -1             1
## 611                                         Mount & 8th         1             1
## 612                                         Mount & 8th         1             1
## 613                                         Mount & 8th         1             1
## 614                                         Mount & 8th         1             1
## 615                                         Mount & 8th         1             1
## 616                                         Mount & 8th        -1             1
## 617                                         Mount & 8th        -1             1
## 618                                         Mount & 8th        -1             1
## 619                                         Mount & 8th         1             1
## 620                                         Mount & 8th         1             1
## 621                                         Mount & 8th        -1             1
## 622                                         Mount & 8th        -1             1
## 623                                         Mount & 8th        -1             1
## 624                                         Mount & 8th        -1             1
## 625                                         Mount & 8th        -1             1
## 626                                         Mount & 8th        -1             1
## 627                                         Mount & 8th         1             1
## 628                                         Mount & 8th         1             1
## 629                                         Mount & 8th         1             1
## 630                                         Mount & 8th        -1             1
## 631                                         Mount & 8th        -1             1
## 632                                         Mount & 8th         1             1
## 633                                         Mount & 8th        -1             1
## 634                                         Mount & 8th        -1             1
## 635                                         Mount & 8th         1             1
## 636                                         Mount & 8th        -1             1
## 637                                         Mount & 8th        -1             1
## 638                                         Mount & 8th        -1             1
## 639                                         Mount & 8th         1             1
## 640                                         Mount & 8th        -1             1
## 641                                         Mount & 8th         1             1
## 642                                         Mount & 8th        -1             1
## 643                                         Mount & 8th        -1             1
## 644                                         Mount & 8th        -1             1
## 645                                         Mount & 8th        -1             1
## 646                                         Mount & 8th         1             1
## 647                                         Mount & 8th        -1             1
## 648                                         Mount & 8th        -1             1
## 649                                         Mount & 8th        -1             1
## 650                                         Mount & 8th         1             1
## 651                                         Mount & 8th         1             1
## 652                                         Mount & 8th         1             1
## 653                                         Mount & 8th        -1             1
## 654                                         Mount & 8th        -1             1
## 655                                         Mount & 8th        -1             1
## 656                                         Mount & 8th        -1             1
## 657                                         Mount & 8th        -1             1
## 658                                         Mount & 8th        -1             1
## 659                                         Mount & 8th        -1             1
## 660                                         Mount & 8th        -1             1
## 661                                         Mount & 8th         1             1
## 662                                         Mount & 8th        -1             1
## 663                                         Mount & 8th         1             1
## 664                                         Mount & 8th         1             1
## 665                                         Mount & 8th        -1             1
## 666                                         Mount & 8th        -1             1
## 667                                         Mount & 8th         1             1
## 668                                         Mount & 8th        -1             1
## 669                                         Mount & 8th        -1             1
## 670                                           Founder's        -1            -1
## 671                                           Founder's         1            -1
## 672                                           Founder's         1            -1
## 673                                           Founder's        -1            -1
## 674                                           Founder's        -1            -1
## 675                                           Founder's         1            -1
## 676                                           Founder's        -1            -1
## 677                                           Founder's         1            -1
## 678                                           Founder's         1            -1
## 679                                           Founder's        -1            -1
## 680                                           Founder's         1            -1
## 681                                           Founder's         1            -1
## 682                                           Founder's         1            -1
## 683                                           Founder's        -1            -1
## 684                                           Founder's        -1            -1
## 685                                           Founder's        -1            -1
## 686                                           Founder's         1            -1
## 687                                           Founder's         1            -1
## 688                                           Founder's         1            -1
## 689                                           Founder's         1            -1
## 690                                           Founder's         1            -1
## 691                                           Founder's        -1            -1
## 692                                           Founder's         1            -1
## 693                                           Founder's        -1            -1
## 694                                           Founder's         1            -1
## 695                                           Founder's        -1            -1
## 696                                           Founder's        -1            -1
## 697                                           Founder's         1            -1
## 698                                           Founder's        -1            -1
## 699                                           Founder's        -1            -1
## 700                                           Founder's         1            -1
## 701                                           Founder's        -1            -1
## 702                                           Founder's        -1            -1
## 703                                           Founder's        -1            -1
## 704                                           Founder's         1            -1
## 705                                          23rd & 8th         1             1
## 706                                          23rd & 8th        -1             1
## 707                                          23rd & 8th        -1             1
## 708                                          23rd & 8th        -1             1
## 709                                          23rd & 8th         1             1
## 710                                          23rd & 8th         1             1
## 711                                          23rd & 8th         1             1
## 712                                          23rd & 8th         1             1
## 713                                          23rd & 8th        -1             1
## 714                                          23rd & 8th         1             1
## 715                                          23rd & 8th        -1             1
## 716                                          23rd & 8th         1             1
## 717                                          23rd & 8th         1             1
## 718                                          23rd & 8th        -1             1
## 719                                          23rd & 8th         1             1
## 720                                          23rd & 8th         1             1
## 721                                          23rd & 8th        -1             1
## 722                                          23rd & 8th         1             1
## 723                                          23rd & 8th         1             1
## 724                                          23rd & 8th         1             1
## 725                                          23rd & 8th        -1             1
## 726                                          23rd & 8th        -1             1
## 727                                          23rd & 8th         1             1
## 728                                          23rd & 8th         1             1
## 729                                          23rd & 8th        -1             1
## 730                                          23rd & 8th        -1             1
## 731                                          23rd & 8th         1             1
## 732                                          23rd & 8th         1             1
## 733                                          23rd & 8th         1             1
## 734                                          23rd & 8th        -1             1
## 735                                          23rd & 8th         1             1
## 736                                          23rd & 8th         1             1
## 737                                          23rd & 8th         1             1
## 738                                          23rd & 8th        -1             1
## 739                                          23rd & 8th         1             1
## 740                                          23rd & 8th         1             1
## 741                                          23rd & 8th         1             1
## 742                                          23rd & 8th        -1             1
## 743                                          23rd & 8th         1             1
## 744                                          23rd & 8th        -1             1
## 745                                          23rd & 8th        -1             1
## 746                                          23rd & 8th         1             1
## 747                                          23rd & 8th        -1             1
## 748                                          23rd & 8th         1             1
## 749                                          23rd & 8th        -1             1
## 750                                          23rd & 8th         1             1
## 751                                          23rd & 8th        -1             1
## 752                                          23rd & 8th        -1             1
## 753                                    SW 210th Terrace        -1            -1
## 754                                    SW 210th Terrace        -1            -1
## 755                                    SW 210th Terrace        -1            -1
## 756                                    SW 210th Terrace         1            -1
## 757                                    SW 210th Terrace         1            -1
## 758                                    SW 210th Terrace         1            -1
## 759                                    SW 210th Terrace         1            -1
## 760                                    SW 210th Terrace        -1            -1
## 761                                    SW 210th Terrace         1            -1
## 762                                    SW 210th Terrace        -1            -1
## 763                                    SW 210th Terrace        -1            -1
## 764                                    SW 210th Terrace         1            -1
## 765                                    SW 210th Terrace        -1            -1
## 766                                    SW 210th Terrace         1            -1
## 767                                    SW 210th Terrace        -1            -1
## 768                                    SW 210th Terrace        -1            -1
## 769                                    SW 210th Terrace        -1            -1
## 770                                                  JP         1            -1
## 771                                                  JP         1            -1
## 772                                                  JP         1            -1
## 773                                                  JP         1            -1
## 774                                                  JP         1            -1
## 775                                                  JP         1            -1
## 776                                                  JP         1            -1
## 777                                                  JP         1            -1
## 778                                                  JP         1            -1
## 779                                                  JP         1            -1
## 780                                                  JP         1            -1
## 781                                                  JP         1            -1
## 782                                                  JP         1            -1
## 783                                                  JP         1            -1
## 784                                                  JP         1            -1
## 785                                                  JP         1            -1
## 786                                                  JP         1            -1
## 787                                                  JP         1            -1
## 788                                                  JP         1            -1
## 789                                                  JP         1            -1
## 790                                                  JP         1            -1
## 791                                                  JP         1            -1
## 792                                                  JP         1            -1
## 793                                                  JP         1            -1
## 794                                                  JP         1            -1
## 795                                                  JP         1            -1
## 796                                                  JP         1            -1
## 797                                                  JP         1            -1
## 798                                                  JP         1            -1
## 799                                                  JP         1            -1
## 800                                                  JP         1            -1
## 801                                                  JP        -1            -1
## 802                                                  JP         1            -1
## 803                                                  JP        -1            -1
## 804                                                  JP         1            -1
## 805                                                  JP         1            -1
## 806                                                  JP         1            -1
## 807                                                  JP         1            -1
## 808                                                  JP        -1            -1
## 809                                                  JP        -1            -1
## 810                                            Polk Ave        -1             1
## 811                                            Polk Ave         1             1
## 812                                            Polk Ave        -1             1
## 813                                            Polk Ave        -1             1
## 814                                            Polk Ave         1             1
## 815                                            Polk Ave         1             1
## 816                                            Polk Ave        -1             1
## 817                                            Polk Ave         1             1
## 818                                            Polk Ave        -1             1
## 819                                            Polk Ave        -1             1
## 820                                            Polk Ave         1             1
## 821                                            Polk Ave        -1             1
## 822                                            Polk Ave        -1             1
## 823                                            Polk Ave         1             1
## 824                                            Polk Ave         1             1
## 825                                            Polk Ave        -1             1
## 826                                            Polk Ave         1             1
## 827                                            Polk Ave         1             1
## 828                                            Polk Ave        -1             1
## 829                                            Polk Ave         1             1
## 830                                            Polk Ave        -1             1
## 831                                            Polk Ave         1             1
## 832                                            Polk Ave         1             1
## 833                                            Polk Ave         1             1
## 834                                            Polk Ave        -1             1
## 835                                            Polk Ave         1             1
## 836                                            Polk Ave         1             1
## 837                                            Polk Ave         1             1
## 838                                            Polk Ave        -1             1
## 839                                            Polk Ave         1             1
## 840                                            Polk Ave         1             1
## 841                                            Polk Ave         1             1
## 842                                            Polk Ave        -1             1
## 843                                            Polk Ave         1             1
## 844                                            Polk Ave        -1             1
## 845                                            Polk Ave         1             1
## 846                                            Polk Ave         1             1
## 847                                            Polk Ave        -1             1
## 848                                            Polk Ave         1             1
## 849                                            Polk Ave         1             1
## 850                                            Polk Ave        -1             1
## 851                                            Polk Ave         1             1
## 852                                            Polk Ave         1             1
## 853                                            Polk Ave         1             1
## 854                                         Mount & 8th         1             1
## 855                                         Mount & 8th        -1             1
## 856                                         Mount & 8th        -1             1
## 857                                         Mount & 8th         1             1
## 858                                         Mount & 8th        -1             1
## 859                                         Mount & 8th        -1             1
## 860                                         Mount & 8th         1             1
## 861                                         Mount & 8th         1             1
## 862                                         Mount & 8th        -1             1
## 863                                         Mount & 8th        -1             1
## 864                                         Mount & 8th         1             1
## 865                                         Mount & 8th         1             1
## 866                                         Mount & 8th         1             1
## 867                                         Mount & 8th         1             1
## 868                                           Founder's         1            -1
## 869                                           Founder's        -1            -1
## 870                                           Founder's        -1            -1
## 871                                           Founder's         1            -1
## 872                                           Founder's        -1            -1
## 873                                           Founder's        -1            -1
## 874                                           Founder's         1            -1
## 875                                           Founder's        -1            -1
## 876                                           Founder's         1            -1
## 877                                           Founder's         1            -1
## 878                                           Founder's         1            -1
## 879                                           Founder's         1            -1
## 880                                           Founder's         1            -1
## 881                                           Founder's         1            -1
## 882                                           Founder's         1            -1
## 883                                           Founder's        -1            -1
## 884                                           Founder's         1            -1
## 885                                           Founder's        -1            -1
## 886                                           Founder's        -1            -1
## 887                                           Founder's        -1            -1
## 888                                           Founder's        -1            -1
## 889                                           Founder's         1            -1
## 890                                           Founder's         1            -1
## 891                                           Founder's        -1            -1
## 892                                           Founder's        -1            -1
## 893                                           Founder's         1            -1
## 894                                           Founder's        -1            -1
## 895                                           Founder's         1            -1
## 896                                           Founder's        -1            -1
## 897                                           Founder's        -1            -1
## 898                                           Founder's        -1            -1
## 899                                           Founder's        -1            -1
## 900                                           Founder's        -1            -1
## 901                                           Founder's         1            -1
## 902                                           Founder's         1            -1
## 903                                           Founder's        -1            -1
## 904                                           Founder's         1            -1
## 905                                           Founder's        -1            -1
## 906                                           Founder's        -1            -1
## 907                                           Founder's         1            -1
## 908                                           Founder's        -1            -1
## 909                                           Founder's         1            -1
## 910                                           Founder's        -1            -1
## 911                                           Founder's        -1            -1
## 912                                                  JP         1            -1
## 913                                                  JP        -1            -1
## 914                                                  JP        -1            -1
## 915                                                  JP         1            -1
## 916                                                  JP        -1            -1
## 917                                                  JP         1            -1
## 918                                                  JP        -1            -1
## 919                                                  JP        -1            -1
## 920                                                  JP        -1            -1
## 921                                                  JP         1            -1
## 922                                                  JP         1            -1
## 923                                                  JP         1            -1
## 924                                                  JP         1            -1
## 925                                                  JP         1            -1
## 926                                                  JP         1            -1
## 927                                                  JP         1            -1
## 928                                                  JP        -1            -1
## 929                                                  JP         1            -1
## 930                                                  JP        -1            -1
## 931                                                  JP         1            -1
## 932                                                  JP        -1            -1
## 933                                                  JP        -1            -1
## 934                                                  JP         1            -1
## 935                                                  JP        -1            -1
## 936                                                  JP         1            -1
## 937                                                  JP        -1            -1
## 938                                                  JP        -1            -1
## 939                                                  JP        -1            -1
## 940                                                  JP        -1            -1
## 941                                                  JP        -1            -1
## 942                                                  JP         1            -1
## 943                                                  JP        -1            -1
## 944                                                  JP        -1            -1
## 945                                                  JP         1            -1
## 946                                                  JP         1            -1
## 947                                                  JP        -1            -1
## 948                                                  JP         1            -1
## 949                                                  JP        -1            -1
## 950                                                  JP         1            -1
## 951                                                  JP         1            -1
## 952                                                  JP         1            -1
## 953                                                  JP         1            -1
## 954                                                  JP         1            -1
## 955                                                  JP        -1            -1
## 956                                                  JP         1            -1
## 957                                                  JP        -1            -1
## 958                                                  JP         1            -1
## 959                                                  JP        -1            -1
## 960                                                  JP        -1            -1
## 961                                                  JP         1            -1
## 962                                                  JP         1            -1
## 963                                            Polk Ave        -1             1
## 964                                            Polk Ave        -1             1
## 965                                            Polk Ave         1             1
## 966                                            Polk Ave        -1             1
## 967                                            Polk Ave         1             1
## 968                                            Polk Ave        -1             1
## 969                                            Polk Ave        -1             1
## 970                                            Polk Ave         1             1
## 971                                            Polk Ave        -1             1
## 972                                            Polk Ave         1             1
## 973                                            Polk Ave        -1             1
## 974                                            Polk Ave        -1             1
## 975                                            Polk Ave        -1             1
## 976                                            Polk Ave         1             1
## 977                                            Polk Ave        -1             1
## 978                                            Polk Ave         1             1
## 979                                            Polk Ave         1             1
## 980                                            Polk Ave         1             1
## 981                                            Polk Ave         1             1
## 982                                            Polk Ave        -1             1
## 983                                            Polk Ave         1             1
## 984                                            Polk Ave        -1             1
## 985                                            Polk Ave        -1             1
## 986                                            Polk Ave         1             1
## 987                                            Polk Ave         1             1
## 988                                            Polk Ave         1             1
## 989                                            Polk Ave        -1             1
## 990                                            Polk Ave         1             1
## 991                                            Polk Ave        -1             1
## 992                                            Polk Ave        -1             1
## 993                                            Polk Ave        -1             1
## 994                                            Polk Ave        -1             1
## 995                                            Polk Ave         1             1
## 996                                            Polk Ave         1             1
## 997                                            Polk Ave         1             1
## 998                                            Polk Ave         1             1
## 999                                            Polk Ave         1             1
## 1000                                           Polk Ave        -1             1
## 1001                                           Polk Ave         1             1
## 1002                                           Polk Ave        -1             1
## 1003                                           Polk Ave        -1             1
## 1004                                           Polk Ave         1             1
## 1005                                           Polk Ave         1             1
## 1006                                           Polk Ave        -1             1
## 1007                                           Polk Ave         1             1
## 1008                                           Polk Ave         1             1
## 1009                                           Polk Ave        -1             1
## 1010                                           Polk Ave         1             1
## 1011                                           Polk Ave        -1             1
## 1012                                           Polk Ave         1             1
## 1013                                           Polk Ave        -1             1
## 1014                                           Polk Ave        -1             1
## 1015                                           Polk Ave         1             1
## 1016                                        Mount & 8th         1             1
## 1017                                        Mount & 8th        -1             1
## 1018                                        Mount & 8th        -1             1
## 1019                                        Mount & 8th         1             1
## 1020                                        Mount & 8th         1             1
## 1021                                        Mount & 8th         1             1
## 1022                                        Mount & 8th        -1             1
## 1023                                        Mount & 8th        -1             1
## 1024                                        Mount & 8th        -1             1
## 1025                                        Mount & 8th         1             1
## 1026                                        Mount & 8th         1             1
## 1027                                        Mount & 8th        -1             1
## 1028                                        Mount & 8th        -1             1
## 1029                                        Mount & 8th        -1             1
## 1030                                        Mount & 8th         1             1
## 1031                                        Mount & 8th        -1             1
## 1032                                        Mount & 8th        -1             1
## 1033                                        Mount & 8th         1             1
## 1034                                        Mount & 8th        -1             1
## 1035                                        Mount & 8th         1             1
## 1036                                        Mount & 8th         1             1
## 1037                                        Mount & 8th         1             1
## 1038                                        Mount & 8th        -1             1
## 1039                                        Mount & 8th         1             1
## 1040                                        Mount & 8th        -1             1
## 1041                                        Mount & 8th         1             1
## 1042                                        Mount & 8th         1             1
## 1043                                        Mount & 8th         1             1
## 1044                                        Mount & 8th         1             1
## 1045                                        Mount & 8th        -1             1
## 1046                                        Mount & 8th        -1             1
## 1047                                        Mount & 8th        -1             1
## 1048                                        Mount & 8th         1             1
## 1049                                        Mount & 8th        -1             1
## 1050                                        Mount & 8th        -1             1
## 1051                                        Mount & 8th        -1             1
## 1052                                          Founder's         1            -1
## 1053                                          Founder's        -1            -1
## 1054                                          Founder's         1            -1
## 1055                                          Founder's         1            -1
## 1056                                          Founder's         1            -1
## 1057                                          Founder's         1            -1
## 1058                                          Founder's         1            -1
## 1059                                          Founder's         1            -1
## 1060                                          Founder's         1            -1
## 1061                                          Founder's         1            -1
## 1062                                          Founder's         1            -1
## 1063                                          Founder's         1            -1
## 1064                                         23rd & 8th        -1             1
## 1065                                         23rd & 8th         1             1
## 1066                                         23rd & 8th        -1             1
## 1067                                         23rd & 8th        -1             1
## 1068                                         23rd & 8th         1             1
## 1069                                         23rd & 8th         1             1
## 1070                                         23rd & 8th         1             1
## 1071                                         23rd & 8th         1             1
## 1072                                         23rd & 8th         1             1
## 1073                                         23rd & 8th         1             1
## 1074                                         23rd & 8th        -1             1
## 1075                                         23rd & 8th         1             1
## 1076                                         23rd & 8th        -1             1
## 1077                                         23rd & 8th        -1             1
## 1078                        wings torn       23rd & 8th        -1             1
## 1079                        wings torn       23rd & 8th         1             1
## 1080                        wings torn       23rd & 8th        -1             1
## 1081                                         23rd & 8th         1             1
## 1082                                         23rd & 8th         1             1
## 1083                                         23rd & 8th        -1             1
## 1084                        wings torn       23rd & 8th         1             1
## 1085                                         23rd & 8th         1             1
## 1086                        wings torn       23rd & 8th        -1             1
## 1087                                         23rd & 8th        -1             1
## 1088                        wings torn       23rd & 8th        -1             1
## 1089                        wings torn       23rd & 8th        -1             1
## 1090                        wings torn       23rd & 8th        -1             1
## 1091                        wings torn       23rd & 8th         1             1
## 1092                        wings torn       23rd & 8th        -1             1
## 1093                        wings torn       23rd & 8th        -1             1
## 1094                                         23rd & 8th         1             1
## 1095                                         23rd & 8th         1             1
## 1096                        wings torn       23rd & 8th        -1             1
## 1097                                         23rd & 8th         1             1
## 1098                                         23rd & 8th        -1             1
## 1099                                         23rd & 8th        -1             1
## 1100                                         23rd & 8th        -1             1
## 1101                                         23rd & 8th         1             1
## 1102                        wings torn       23rd & 8th        -1             1
## 1103                                         23rd & 8th         1             1
## 1104                        wings torn       23rd & 8th        -1             1
## 1105                                         23rd & 8th         1             1
## 1106                                         23rd & 8th         1             1
## 1107                                         23rd & 8th         1             1
## 1108                        wings torn       23rd & 8th         1             1
## 1109                                         23rd & 8th         1             1
## 1110                                         23rd & 8th        -1             1
## 1111                        wings torn       23rd & 8th        -1             1
## 1112                        wings torn       23rd & 8th         1             1
## 1113                         tips torn       23rd & 8th         1             1
## 1114                                         23rd & 8th         1             1
## 1115                                         23rd & 8th        -1             1
## 1116                         tips torn       23rd & 8th        -1             1
## 1117                         tips torn       23rd & 8th        -1             1
## 1118                         tips torn       23rd & 8th        -1             1
## 1119                                         23rd & 8th         1             1
## 1120                                         23rd & 8th        -1             1
## 1121                                        SW 296th St        -1             1
## 1122                                        SW 296th St        -1             1
## 1123                                        SW 296th St        -1             1
## 1124                                        SW 296th St        -1             1
## 1125                                        SW 296th St        -1             1
## 1126                                        SW 296th St         1             1
## 1127                                        SW 296th St         1             1
## 1128                                        SW 296th St        -1             1
## 1129                                        SW 296th St        -1             1
## 1130                                        SW 296th St        -1             1
## 1131                                        SW 296th St        -1             1
## 1132                                        SW 296th St        -1             1
## 1133                                        SW 296th St        -1             1
## 1134                        wings torn      Charlemagne         1            -1
## 1135                        wings torn      Charlemagne         1            -1
## 1136                        wings torn      Charlemagne        -1            -1
## 1137                                        Charlemagne        -1            -1
## 1138                        wings torn      Charlemagne        -1            -1
## 1139                                        Charlemagne         1            -1
## 1140                        wings torn      Charlemagne        -1            -1
## 1141                        wings torn      Charlemagne         1            -1
## 1142                                        Charlemagne         1            -1
## 1143                                        Charlemagne         1            -1
## 1144                                        Charlemagne         1            -1
## 1145                                        Charlemagne         1            -1
## 1146                                        Charlemagne         1            -1
## 1147                                        Charlemagne        -1            -1
## 1148                                        Charlemagne        -1            -1
## 1149                                        Charlemagne        -1            -1
## 1150                        wings torn      Charlemagne        -1            -1
## 1151                        wings torn      Charlemagne        -1            -1
## 1152                                        Charlemagne         1            -1
## 1153                        wings torn      Charlemagne        -1            -1
## 1154                                        Charlemagne        -1            -1
## 1155                                        Charlemagne         1            -1
## 1156                                        Charlemagne        -1            -1
## 1157                                        Charlemagne         1            -1
## 1158                                        Charlemagne         1            -1
## 1159                                        Charlemagne        -1            -1
## 1160                                        Charlemagne         1            -1
## 1161                                        Charlemagne         1            -1
## 1162                        wings torn      Charlemagne        -1            -1
## 1163                        wings torn      Charlemagne        -1            -1
## 1164                                        Charlemagne        -1            -1
## 1165                        wings torn      Charlemagne        -1            -1
## 1166                        wings torn      Charlemagne         1            -1
## 1167                                        Charlemagne         1            -1
## 1168                                        Charlemagne         1            -1
## 1169                                        Charlemagne        -1            -1
## 1170                                        Charlemagne         1            -1
## 1171                  malformed thorax      Charlemagne        -1            -1
## 1172                                        Charlemagne         1            -1
## 1173                        wings torn      Charlemagne        -1            -1
## 1174                                        Charlemagne         1            -1
## 1175                                        Charlemagne         1            -1
## 1176                        wings torn      Charlemagne         1            -1
## 1177                                        Charlemagne         1            -1
## 1178                                        Charlemagne        -1            -1
## 1179                                        Charlemagne        -1            -1
## 1180                                        Charlemagne        -1            -1
## 1181                                        Charlemagne        -1            -1
## 1182                        wings torn      Charlemagne         1            -1
## 1183                        wings torn      Charlemagne        -1            -1
## 1184                        wings torn      Charlemagne        -1            -1
## 1185                                        Charlemagne        -1            -1
## 1186                                        Charlemagne        -1            -1
## 1187                                                 JP         1            -1
## 1188                                                 JP        -1            -1
## 1189                                                 JP        -1            -1
## 1190                                                 JP        -1            -1
## 1191                                                 JP        -1            -1
## 1192                                                 JP        -1            -1
## 1193                                                 JP         1            -1
## 1194                                                 JP         1            -1
## 1195                                                 JP         1            -1
## 1196                                                 JP         1            -1
## 1197                                                 JP        -1            -1
## 1198                        wings torn         Polk Ave         1             1
## 1199                        wings torn         Polk Ave         1             1
## 1200                        wings torn         Polk Ave        -1             1
## 1201                        wings torn         Polk Ave         1             1
## 1202                        wings torn         Polk Ave        -1             1
## 1203                        wings torn         Polk Ave        -1             1
## 1204                        wings torn         Polk Ave         1             1
## 1205                                           Polk Ave         1             1
## 1206                        wings torn         Polk Ave        -1             1
## 1207                                           Polk Ave        -1             1
## 1208                        wings torn         Polk Ave         1             1
## 1209                        wings torn         Polk Ave        -1             1
## 1210                        wings torn         Polk Ave        -1             1
## 1211                                           Polk Ave        -1             1
## 1212                        wings torn         Polk Ave        -1             1
## 1213                        wings torn      Mount & 8th        -1             1
## 1214                        wings torn      Mount & 8th         1             1
## 1215                                        Mount & 8th         1             1
## 1216                        wings torn      Mount & 8th        -1             1
## 1217                        wings torn      Mount & 8th         1             1
## 1218                        wings torn      Mount & 8th        -1             1
## 1219                        wings torn      Mount & 8th        -1             1
## 1220                                        Mount & 8th         1             1
## 1221                        wings torn      Mount & 8th        -1             1
## 1222                        wings torn      Mount & 8th        -1             1
## 1223                        wings torn      Mount & 8th        -1             1
## 1224                                        Mount & 8th        -1             1
## 1225                        wings torn      Mount & 8th        -1             1
## 1226                        wings torn      Mount & 8th        -1             1
## 1227                        wings torn      Mount & 8th        -1             1
## 1228                                        Mount & 8th        -1             1
## 1229                                        Mount & 8th        -1             1
## 1230                         tips torn      Mount & 8th         1             1
## 1231                                        Mount & 8th        -1             1
## 1232                        wings torn      Mount & 8th        -1             1
## 1233                                        Mount & 8th        -1             1
## 1234                                        Mount & 8th         1             1
## 1235                                        Mount & 8th         1             1
## 1236                                        Mount & 8th         1             1
## 1237                                        Mount & 8th         1             1
## 1238                                        Mount & 8th         1             1
## 1239                                        Mount & 8th         1             1
## 1240                                        Mount & 8th        -1             1
## 1241                                        Mount & 8th         1             1
## 1242                                        Mount & 8th         1             1
## 1243                                        Mount & 8th         1             1
## 1244                                        Mount & 8th         1             1
## 1245                                        Mount & 8th        -1             1
## 1246                                        Mount & 8th        -1             1
## 1247                                        Mount & 8th         1             1
## 1248                                        Mount & 8th        -1             1
## 1249                                        Mount & 8th        -1             1
## 1250                                        Mount & 8th         1             1
## 1251                                        Mount & 8th         1             1
## 1252                                        Mount & 8th         1             1
## 1253                                        Mount & 8th         1             1
## 1254                                        Mount & 8th        -1             1
## 1255                                        Mount & 8th        -1             1
## 1256                                        Mount & 8th         1             1
## 1257                                        Mount & 8th        -1             1
## 1258                                        Mount & 8th        -1             1
## 1259                                        Mount & 8th         1             1
## 1260                                        Mount & 8th         1             1
## 1261                                        Mount & 8th         1             1
## 1262                                        Mount & 8th         1             1
## 1263                                        Mount & 8th         1             1
## 1264                                        Mount & 8th        -1             1
## 1265                                        Mount & 8th         1             1
## 1266                                        Mount & 8th        -1             1
## 1267                                        Mount & 8th        -1             1
## 1268                                        Mount & 8th         1             1
## 1269                                        Mount & 8th         1             1
## 1270                                        Mount & 8th        -1             1
## 1271                                        Mount & 8th         1             1
## 1272                                        Mount & 8th        -1             1
## 1273                                        Mount & 8th        -1             1
## 1274                                        Mount & 8th        -1             1
## 1275                                        Mount & 8th        -1             1
## 1276                                        Mount & 8th        -1             1
## 1277                                        Mount & 8th        -1             1
## 1278                                          Mohawk St        -1            -1
## 1279                                          Mohawk St        -1            -1
## 1280                                          Mohawk St        -1            -1
## 1281                                          Mohawk St        -1            -1
## 1282                                          Mohawk St         1            -1
## 1283                                          Mohawk St        -1            -1
## 1284                                          Mohawk St         1            -1
## 1285                                          Mohawk St        -1            -1
## 1286                                          Mohawk St         1            -1
## 1287                                          Mohawk St         1            -1
## 1288                                          Mohawk St         1            -1
## 1289                                          Mohawk St         1            -1
## 1290                                          Mohawk St        -1            -1
## 1291                                          Mohawk St         1            -1
## 1292                                          Mohawk St         1            -1
## 1293                                          Mohawk St         1            -1
## 1294                                          Mohawk St        -1            -1
## 1295                                          Mohawk St         1            -1
## 1296                                          Mohawk St         1            -1
## 1297                                          Mohawk St         1            -1
## 1298                                          Mohawk St         1            -1
## 1299                                          Mohawk St         1            -1
## 1300                                          Mohawk St        -1            -1
## 1301                                          Mohawk St         1            -1
## 1302                                          Mohawk St        -1            -1
## 1303                                          Mohawk St        -1            -1
## 1304                                          Mohawk St        -1            -1
## 1305                                          Mohawk St         1            -1
## 1306                                          Mohawk St         1            -1
## 1307                                          Mohawk St        -1            -1
## 1308                                          Mohawk St        -1            -1
## 1309                                          Mohawk St        -1            -1
## 1310                                          Mohawk St        -1            -1
## 1311                                          Mohawk St        -1            -1
## 1312                                          Mohawk St        -1            -1
## 1313                                          Mohawk St         1            -1
## 1314                                          Mohawk St        -1            -1
## 1315                                         23rd & 8th        -1             1
## 1316                                         23rd & 8th        -1             1
## 1317                                         23rd & 8th         1             1
## 1318                                         23rd & 8th         1             1
## 1319                                         23rd & 8th        -1             1
## 1320                                         23rd & 8th        -1             1
## 1321                                         23rd & 8th         1             1
## 1322                                         23rd & 8th         1             1
## 1323                                         23rd & 8th         1             1
## 1324                                         23rd & 8th        -1             1
## 1325                                         23rd & 8th        -1             1
## 1326                                         23rd & 8th        -1             1
## 1327                                         23rd & 8th         1             1
## 1328                                         23rd & 8th         1             1
## 1329                                         23rd & 8th        -1             1
## 1330                                         23rd & 8th        -1             1
## 1331                                         23rd & 8th         1             1
## 1332                                         23rd & 8th         1             1
## 1333                                         23rd & 8th         1             1
## 1334                        wings torn       23rd & 8th         1             1
## 1335                                         23rd & 8th         1             1
## 1336                                         23rd & 8th         1             1
## 1337                                         23rd & 8th        -1             1
## 1338                                         23rd & 8th        -1             1
## 1339                                         23rd & 8th        -1             1
## 1340                                         23rd & 8th        -1             1
## 1341                                         23rd & 8th         1             1
## 1342                                         23rd & 8th         1             1
## 1343                                         23rd & 8th        -1             1
## 1344                                         23rd & 8th         1             1
## 1345                                         23rd & 8th         1             1
## 1346                                         23rd & 8th         1             1
## 1347                                         23rd & 8th        -1             1
## 1348                                         23rd & 8th        -1             1
## 1349                                         23rd & 8th        -1             1
## 1350                                         23rd & 8th        -1             1
## 1351                                         23rd & 8th         1             1
## 1352                                         23rd & 8th         1             1
## 1353                                         23rd & 8th        -1             1
## 1354                                         23rd & 8th        -1             1
## 1355                                         23rd & 8th         1             1
## 1356                                         23rd & 8th        -1             1
## 1357                                         23rd & 8th         1             1
## 1358                                         23rd & 8th         1             1
## 1359                                         23rd & 8th        -1             1
## 1360                                         23rd & 8th         1             1
## 1361                                         23rd & 8th        -1             1
## 1362                                         23rd & 8th        -1             1
## 1363                                         23rd & 8th         1             1
## 1364                                         23rd & 8th        -1             1
## 1365                                         23rd & 8th        -1             1
## 1366                                         23rd & 8th         1             1
## 1367                                         23rd & 8th        -1             1
## 1368                                         23rd & 8th         1             1
## 1369                                         23rd & 8th         1             1
## 1370                                         23rd & 8th        -1             1
## 1371                                         23rd & 8th         1             1
## 1372                                         23rd & 8th         1             1
## 1373                                         23rd & 8th        -1             1
## 1374                                         23rd & 8th        -1             1
## 1375                       teal marked      SW 296th St        -1             1
## 1376                       teal marked      SW 296th St         1             1
## 1377                       teal marked      SW 296th St         1             1
## 1378                                        SW 296th St        -1             1
## 1379                       teal marked      SW 296th St         1             1
## 1380                                        SW 296th St         1             1
## 1381                                        SW 296th St         1             1
## 1382                                        SW 296th St         1             1
## 1383                       teal marked      SW 296th St        -1             1
## 1384                                        SW 296th St        -1             1
## 1385                                        SW 296th St        -1             1
## 1386                                        SW 296th St         1             1
## 1387                                        SW 296th St        -1             1
## 1388                                        SW 296th St         1             1
## 1389                 wings torn at end      SW 296th St        -1             1
## 1390                                        SW 296th St        -1             1
## 1391                                        SW 296th St        -1             1
## 1392                       teal marked      SW 296th St        -1             1
## 1393                                        SW 296th St         1             1
## 1394                                        SW 296th St        -1             1
## 1395                                        SW 296th St        -1             1
## 1396                                        SW 296th St         1             1
## 1397                                        SW 296th St        -1             1
## 1398                                        SW 296th St        -1             1
## 1399                                        SW 296th St         1             1
## 1400                                        SW 296th St        -1             1
## 1401                                        SW 296th St        -1             1
## 1402                                        SW 296th St        -1             1
## 1403                                        SW 296th St        -1             1
## 1404                       teal marked      SW 296th St        -1             1
## 1405                                        SW 296th St         1             1
## 1406                                        SW 296th St         1             1
## 1407                 wings torn at end      SW 296th St        -1             1
## 1408                                        SW 296th St        -1             1
## 1409                       teal marked      SW 296th St         1             1
## 1410                       teal marked      SW 296th St         1             1
## 1411                                        SW 296th St        -1             1
## 1412                       teal marked      SW 296th St        -1             1
## 1413                                        SW 296th St         1             1
## 1414                                        SW 296th St         1             1
## 1415                       teal marked      SW 296th St        -1             1
## 1416                                        SW 296th St         1             1
## 1417                 wings torn at end      SW 296th St         1             1
## 1418                                        SW 296th St         1             1
## 1419                       teal marked      SW 296th St        -1             1
## 1420                                        SW 296th St         1             1
## 1421   wings torn at end; teal marked       SW 296th St         1             1
## 1422                                        SW 296th St        -1             1
## 1423                                        SW 296th St         1             1
## 1424                       teal marked      SW 296th St         1             1
## 1425                       teal marked      SW 296th St        -1             1
## 1426                       teal marked      SW 296th St         1             1
## 1427                                        SW 296th St        -1             1
## 1428                                        SW 296th St         1             1
## 1429                                        SW 296th St         1             1
## 1430                       teal marked      SW 296th St         1             1
## 1431                                        SW 296th St         1             1
## 1432                                        SW 296th St        -1             1
## 1433                                        SW 296th St         1             1
## 1434                                        SW 296th St         1             1
## 1435                                        SW 296th St         1             1
## 1436                                        SW 296th St        -1             1
## 1437                                        SW 296th St        -1             1
## 1438                                        SW 296th St         1             1
## 1439                                        SW 296th St        -1             1
## 1440                                        SW 296th St        -1             1
## 1441                                        SW 296th St        -1             1
## 1442                                        SW 296th St        -1             1
## 1443                                        SW 296th St        -1             1
## 1444                                        SW 296th St        -1             1
## 1445                                        SW 296th St         1             1
## 1446                                        SW 296th St         1             1
## 1447                                        SW 296th St        -1             1
## 1448                                        SW 296th St        -1             1
## 1449                                        SW 296th St         1             1
## 1450                                        SW 296th St        -1             1
## 1451                                        SW 296th St         1             1
## 1452                                        SW 296th St        -1             1
## 1453                                        SW 296th St         1             1
## 1454                                        SW 296th St        -1             1
## 1455                                        SW 296th St        -1             1
## 1456                                        SW 296th St         1             1
## 1457                                        SW 296th St        -1             1
## 1458                                        SW 296th St        -1             1
## 1459                                        SW 296th St         1             1
## 1460                                        SW 296th St         1             1
## 1461                                        SW 296th St        -1             1
## 1462                                        SW 296th St         1             1
## 1463                                        SW 296th St        -1             1
## 1464                                        SW 296th St         1             1
## 1465                                        SW 296th St         1             1
## 1466                                        SW 296th St         1             1
## 1467                                        SW 296th St         1             1
## 1468                                        SW 296th St        -1             1
## 1469                                        SW 296th St         1             1
## 1470                                        SW 296th St        -1             1
## 1471                                        SW 296th St        -1             1
## 1472                                        SW 296th St        -1             1
## 1473                                        SW 296th St         1             1
## 1474                                        SW 296th St         1             1
## 1475                                        SW 296th St        -1             1
## 1476                                        SW 296th St         1             1
## 1477                                        SW 296th St         1             1
## 1478                                        SW 296th St         1             1
## 1479                                        SW 296th St         1             1
## 1480                                        SW 296th St         1             1
## 1481                                        SW 296th St        -1             1
## 1482                                        SW 296th St         1             1
## 1483                                        SW 296th St         1             1
## 1484                                        SW 296th St         1             1
## 1485                                        SW 296th St         1             1
## 1486                                        SW 296th St         1             1
## 1487                                        SW 296th St        -1             1
## 1488                                        SW 296th St        -1             1
## 1489                                        SW 296th St        -1             1
## 1490                                        SW 296th St         1             1
## 1491                                        SW 296th St        -1             1
## 1492                                        SW 296th St        -1             1
## 1493                                        SW 296th St         1             1
## 1494                                        SW 296th St        -1             1
## 1495                                        SW 296th St         1             1
## 1496                                        SW 296th St        -1             1
## 1497                                        SW 296th St        -1             1
## 1498                                        SW 296th St         1             1
## 1499                                        SW 296th St        -1             1
## 1500                                        SW 296th St        -1             1
## 1501                                        SW 296th St        -1             1
## 1502                                                 JP         1            -1
## 1503                                                 JP        -1            -1
## 1504                                                 JP        -1            -1
## 1505                                                 JP        -1            -1
## 1506                                                 JP         1            -1
## 1507                                                 JP        -1            -1
## 1508                                                 JP        -1            -1
## 1509                                                 JP        -1            -1
## 1510                                                 JP         1            -1
## 1511                                                 JP        -1            -1
## 1512                                                 JP         1            -1
## 1513                                                 JP        -1            -1
## 1514                                                 JP        -1            -1
## 1515                                                 JP        -1            -1
## 1516                                                 JP        -1            -1
## 1517                                                 JP         1            -1
## 1518                                                 JP        -1            -1
## 1519                                                 JP        -1            -1
## 1520                                                 JP         1            -1
## 1521                                                 JP         1            -1
## 1522                                                 JP         1            -1
## 1523                                                 JP         1            -1
## 1524                                                 JP        -1            -1
## 1525                                                 JP        -1            -1
## 1526                                                 JP         1            -1
## 1527                                                 JP         1            -1
## 1528                                                 JP        -1            -1
## 1529                                                 JP        -1            -1
## 1530                                                 JP         1            -1
## 1531                                                 JP         1            -1
## 1532                                                 JP        -1            -1
## 1533                                                 JP        -1            -1
## 1534                                                 JP        -1            -1
## 1535                                                 JP        -1            -1
## 1536                                                 JP        -1            -1
## 1537                                        Charlemagne        -1            -1
## 1538                                        Charlemagne         1            -1
## 1539                                        Charlemagne        -1            -1
## 1540                                        Charlemagne         1            -1
## 1541                                        Charlemagne        -1            -1
## 1542                                        Charlemagne        -1            -1
## 1543                                        Charlemagne         1            -1
## 1544                                        Charlemagne         1            -1
## 1545                                        Charlemagne         1            -1
## 1546                                        Charlemagne         1            -1
## 1547                                        Charlemagne        -1            -1
## 1548                                        Charlemagne         1            -1
## 1549                                        Charlemagne         1            -1
## 1550                                        Charlemagne        -1            -1
## 1551                                        Charlemagne        -1            -1
## 1552                                        Charlemagne        -1            -1
## 1553                                        Charlemagne         1            -1
## 1554                                        Charlemagne        -1            -1
## 1555                                        Charlemagne         1            -1
## 1556                                        Charlemagne        -1            -1
## 1557                                        Charlemagne        -1            -1
## 1558                                        Charlemagne         1            -1
## 1559                                        Charlemagne        -1            -1
## 1560                                        Charlemagne         1            -1
## 1561                                        Charlemagne        -1            -1
## 1562                                        Charlemagne        -1            -1
## 1563                                        Charlemagne        -1            -1
## 1564                                        Charlemagne        -1            -1
## 1565                                        Charlemagne        -1            -1
## 1566                                        Charlemagne        -1            -1
## 1567                                        Charlemagne         1            -1
## 1568                                        Charlemagne        -1            -1
## 1569                                        Charlemagne        -1            -1
## 1570                                        Charlemagne        -1            -1
## 1571                                        Charlemagne        -1            -1
## 1572                                        Charlemagne         1            -1
## 1573                                        Charlemagne        -1            -1
## 1574                                        Charlemagne         1            -1
## 1575                                        Charlemagne         1            -1
## 1576                                        Charlemagne         1            -1
## 1577                                        Charlemagne        -1            -1
## 1578                                        Charlemagne         1            -1
## 1579                                        Charlemagne         1            -1
## 1580                                        Charlemagne         1            -1
## 1581                                        Charlemagne        -1            -1
## 1582                                        Charlemagne        -1            -1
## 1583                                        Charlemagne         1            -1
## 1584                                        Charlemagne        -1            -1
## 1585                                        Charlemagne        -1            -1
## 1586                                        Charlemagne        -1            -1
## 1587                                        Charlemagne        -1            -1
## 1588                                        Charlemagne        -1            -1
## 1589                                        Charlemagne         1            -1
## 1590                                        Charlemagne        -1            -1
## 1591                                        Charlemagne         1            -1
## 1592                                        Charlemagne         1            -1
## 1593                                        Charlemagne        -1            -1
## 1594                                           Polk Ave        -1             1
## 1595                                           Polk Ave         1             1
## 1596                                           Polk Ave         1             1
## 1597                                           Polk Ave        -1             1
## 1598                        wings torn         Polk Ave         1             1
## 1599                                           Polk Ave        -1             1
## 1600                                           Polk Ave         1             1
## 1601                                           Polk Ave        -1             1
## 1602                                           Polk Ave         1             1
## 1603                                           Polk Ave        -1             1
## 1604                                           Polk Ave        -1             1
## 1605                                           Polk Ave        -1             1
## 1606                                           Polk Ave         1             1
## 1607                                           Polk Ave         1             1
## 1608                                           Polk Ave         1             1
## 1609                                           Polk Ave         1             1
## 1610                                           Polk Ave         1             1
## 1611                                           Polk Ave        -1             1
## 1612                                           Polk Ave        -1             1
## 1613                                           Polk Ave         1             1
## 1614                                           Polk Ave        -1             1
## 1615                                           Polk Ave        -1             1
## 1616                                           Polk Ave        -1             1
## 1617                                           Polk Ave         1             1
## 1618                                           Polk Ave        -1             1
## 1619                                           Polk Ave         1             1
## 1620                                           Polk Ave         1             1
## 1621                                           Polk Ave        -1             1
## 1622                                           Polk Ave        -1             1
## 1623                                           Polk Ave        -1             1
## 1624                                           Polk Ave         1             1
## 1625                                           Polk Ave        -1             1
## 1626                                           Polk Ave         1             1
## 1627                                           Polk Ave        -1             1
## 1628                                           Polk Ave         1             1
## 1629                                           Polk Ave         1             1
## 1630                                           Polk Ave        -1             1
## 1631                                           Polk Ave         1             1
## 1632                                           Polk Ave         1             1
## 1633                                           Polk Ave        -1             1
## 1634                                           Polk Ave         1             1
## 1635                                           Polk Ave        -1             1
## 1636                                           Polk Ave        -1             1
## 1637                                           Polk Ave        -1             1
## 1638                                           Polk Ave         1             1
## 1639                                           Polk Ave        -1             1
## 1640                                           Polk Ave        -1             1
## 1641                                           Polk Ave        -1             1
## 1642                                           Polk Ave         1             1
## 1643                                           Polk Ave         1             1
## 1644                                           Polk Ave        -1             1
## 1645                                           Polk Ave        -1             1
## 1646                                           Polk Ave         1             1
## 1647                                           Polk Ave        -1             1
## 1648                                           Polk Ave         1             1
## 1649                                           Polk Ave        -1             1
## 1650                                           Polk Ave        -1             1
## 1651                                           Polk Ave         1             1
## 1652                                           Polk Ave         1             1
## 1653                                           Polk Ave        -1             1
## 1654                                           Polk Ave        -1             1
## 1655                                           Polk Ave         1             1
## 1656                                           Polk Ave        -1             1
## 1657                                           Polk Ave         1             1
## 1658                                           Polk Ave        -1             1
## 1659                                           Polk Ave         1             1
## 1660                                           Polk Ave        -1             1
## 1661                                           Polk Ave         1             1
## 1662                                           Polk Ave        -1             1
## 1663                                           Polk Ave        -1             1
## 1664                                           Polk Ave        -1             1
## 1665                                           Polk Ave        -1             1
## 1666                                           Polk Ave         1             1
## 1667                                           Polk Ave         1             1
## 1668                                           Polk Ave        -1             1
## 1669                                           Polk Ave         1             1
## 1670                                           Polk Ave         1             1
## 1671                                           Polk Ave         1             1
## 1672                                           Polk Ave        -1             1
## 1673                                           Polk Ave        -1             1
## 1674                                           Polk Ave        -1             1
## 1675                                           Polk Ave        -1             1
## 1676                                           Polk Ave         1             1
## 1677                                           Polk Ave        -1             1
## 1678                                           Polk Ave        -1             1
## 1679                                           Polk Ave        -1             1
## 1680                                           Polk Ave        -1             1
## 1681                                           Polk Ave         1             1
## 1682                                           Polk Ave        -1             1
## 1683                                           Polk Ave        -1             1
## 1684                                           Polk Ave        -1             1
## 1685                                        Mount & 8th        -1             1
## 1686                                        Mount & 8th         1             1
## 1687                                        Mount & 8th         1             1
## 1688                                        Mount & 8th         1             1
## 1689                                        Mount & 8th         1             1
## 1690                                        Mount & 8th        -1             1
## 1691                                        Mount & 8th         1             1
## 1692                                        Mount & 8th        -1             1
## 1693                                        Mount & 8th        -1             1
## 1694                                        Mount & 8th        -1             1
## 1695                                        Mount & 8th        -1             1
## 1696                                        Mount & 8th         1             1
## 1697                                        Mount & 8th         1             1
## 1698                                        Mount & 8th        -1             1
## 1699                                        Mount & 8th         1             1
## 1700                                        Mount & 8th        -1             1
## 1701                                        Mount & 8th         1             1
## 1702                                        Mount & 8th        -1             1
## 1703                                        Mount & 8th         1             1
## 1704                                        Mount & 8th        -1             1
## 1705                                        Mount & 8th        -1             1
## 1706                                        Mount & 8th        -1             1
## 1707                                        Mount & 8th        -1             1
## 1708                                        Mount & 8th        -1             1
## 1709                                        Mount & 8th        -1             1
## 1710                                        Mount & 8th         1             1
## 1711                                        Mount & 8th         1             1
## 1712                                        Mount & 8th        -1             1
## 1713                                        Mount & 8th         1             1
## 1714                                        Mount & 8th        -1             1
## 1715                                        Mount & 8th        -1             1
## 1716                                        Mount & 8th         1             1
## 1717                                        Mount & 8th        -1             1
## 1718                                        Mount & 8th        -1             1
## 1719                                        Mount & 8th         1             1
## 1720                                        Mount & 8th        -1             1
## 1721                                        Mount & 8th        -1             1
## 1722                                        Mount & 8th        -1             1
## 1723                                        Mount & 8th        -1             1
## 1724                                        Mount & 8th         1             1
## 1725                                        Mount & 8th        -1             1
## 1726                                        Mount & 8th        -1             1
## 1727                                        Mount & 8th         1             1
## 1728                                        Mount & 8th        -1             1
## 1729                                        Mount & 8th         1             1
## 1730                                        Mount & 8th        -1             1
## 1731                                        Mount & 8th        -1             1
## 1732                                        Mount & 8th        -1             1
## 1733                                        Mount & 8th        -1             1
## 1734                                        Mount & 8th        -1             1
## 1735                                        Mount & 8th        -1             1
## 1736                                        Mount & 8th         1             1
## 1737                                        Mount & 8th        -1             1
## 1738                                        Mount & 8th        -1             1
## 1739                                        Mount & 8th        -1             1
## 1740                                        Mount & 8th         1             1
## 1741                                        Mount & 8th         1             1
## 1742                                        Mount & 8th         1             1
## 1743                                         23rd & 8th        -1             1
## 1744                                         23rd & 8th        -1             1
## 1745                                         23rd & 8th        -1             1
## 1746                                         23rd & 8th         1             1
## 1747                                         23rd & 8th         1             1
## 1748                                         23rd & 8th        -1             1
## 1749                                         23rd & 8th        -1             1
## 1750                                         23rd & 8th         1             1
## 1751                         torn tips       23rd & 8th         1             1
## 1752                                         23rd & 8th         1             1
## 1753                                         23rd & 8th         1             1
## 1754                                         23rd & 8th         1             1
## 1755                                         23rd & 8th         1             1
## 1756                                         23rd & 8th         1             1
## 1757                                         23rd & 8th         1             1
## 1758                                         23rd & 8th         1             1
## 1759                                         23rd & 8th         1             1
## 1760                         torn tips       23rd & 8th        -1             1
## 1761                                         23rd & 8th        -1             1
## 1762                                         23rd & 8th        -1             1
## 1763                                         23rd & 8th        -1             1
## 1764                         torn tips       23rd & 8th        -1             1
## 1765                                         23rd & 8th         1             1
## 1766                         torn tips       23rd & 8th        -1             1
## 1767                         torn tips       23rd & 8th         1             1
## 1768                                         23rd & 8th         1             1
## 1769                                         23rd & 8th        -1             1
## 1770                                         23rd & 8th        -1             1
## 1771                                         23rd & 8th        -1             1
## 1772                                         23rd & 8th        -1             1
## 1773                                         23rd & 8th         1             1
## 1774                                         23rd & 8th         1             1
## 1775                                         23rd & 8th         1             1
## 1776                                         23rd & 8th        -1             1
## 1777                                         23rd & 8th         1             1
## 1778                                         23rd & 8th        -1             1
## 1779                                         23rd & 8th        -1             1
## 1780                                         23rd & 8th        -1             1
## 1781                                         23rd & 8th         1             1
## 1782                                         23rd & 8th        -1             1
## 1783                                         23rd & 8th         1             1
## 1784                                         23rd & 8th         1             1
## 1785                                         23rd & 8th         1             1
## 1786                                         23rd & 8th        -1             1
## 1787                                         23rd & 8th        -1             1
## 1788                                         23rd & 8th         1             1
## 1789                         torn tips       23rd & 8th        -1             1
## 1790                                         23rd & 8th        -1             1
## 1791                                         23rd & 8th        -1             1
## 1792                                         23rd & 8th         1             1
## 1793                                         23rd & 8th         1             1
## 1794                                         23rd & 8th         1             1
## 1795                                         23rd & 8th        -1             1
## 1796                                         23rd & 8th        -1             1
## 1797                                         23rd & 8th         1             1
## 1798                                         23rd & 8th         1             1
## 1799                                         23rd & 8th         1             1
## 1800                                         23rd & 8th         1             1
## 1801                                         23rd & 8th        -1             1
## 1802                                         23rd & 8th        -1             1
## 1803                                         23rd & 8th        -1             1
## 1804                                         23rd & 8th        -1             1
## 1805                                         23rd & 8th         1             1
## 1806                                         23rd & 8th        -1             1
## 1807                                        Charlemagne        -1            -1
## 1808                                        Charlemagne        -1            -1
## 1809                                        Charlemagne        -1            -1
## 1810                                        Charlemagne         1            -1
## 1811                                        Charlemagne         1            -1
## 1812                                        Charlemagne         1            -1
## 1813                                        Charlemagne         1            -1
## 1814                                        Charlemagne         1            -1
## 1815                                        Charlemagne         1            -1
## 1816                                        Charlemagne        -1            -1
## 1817                                        Charlemagne        -1            -1
## 1818                                        Charlemagne         1            -1
## 1819                                        Charlemagne         1            -1
## 1820                                        Charlemagne         1            -1
## 1821                                        Charlemagne        -1            -1
## 1822                                        Charlemagne        -1            -1
## 1823                                        Charlemagne         1            -1
## 1824                                        Charlemagne         1            -1
## 1825                                        Charlemagne         1            -1
## 1826                                        Charlemagne        -1            -1
## 1827                                        Charlemagne        -1            -1
## 1828                                        Charlemagne         1            -1
## 1829                                        Charlemagne         1            -1
## 1830                                        Charlemagne         1            -1
## 1831                                        Charlemagne         1            -1
## 1832                                        Charlemagne         1            -1
## 1833                                        Charlemagne        -1            -1
## 1834                                        Charlemagne        -1            -1
## 1835                                        Charlemagne         1            -1
## 1836                                        Charlemagne        -1            -1
## 1837                                        Charlemagne         1            -1
## 1838                                        Charlemagne         1            -1
## 1839                                        Charlemagne        -1            -1
## 1840                                        Charlemagne        -1            -1
## 1841                                        Charlemagne         1            -1
## 1842                                        Charlemagne         1            -1
## 1843                                        Charlemagne        -1            -1
## 1844                                        Charlemagne        -1            -1
## 1845                                        Charlemagne         1            -1
## 1846                                        Charlemagne        -1            -1
## 1847                                        Charlemagne         1            -1
## 1848                                        Charlemagne         1            -1
## 1849                                        Charlemagne         1            -1
## 1850                                        Charlemagne        -1            -1
## 1851                                        Charlemagne         1            -1
## 1852                                        Charlemagne        -1            -1
## 1853                                        Charlemagne        -1            -1
## 1854                                        Charlemagne        -1            -1
## 1855                                        Charlemagne         1            -1
## 1856                                        Charlemagne         1            -1
## 1857                                        Charlemagne         1            -1
## 1858                                        Charlemagne        -1            -1
## 1859                                        Charlemagne         1            -1
## 1860                                        Charlemagne        -1            -1
## 1861                                        Charlemagne         1            -1
## 1862                                        Charlemagne        -1            -1
## 1863                                        Charlemagne         1            -1
## 1864                                        Charlemagne         1            -1
## 1865                                        Charlemagne         1            -1
## 1866                                        Charlemagne         1            -1
## 1867                                        Charlemagne        -1            -1
## 1868                                        Charlemagne         1            -1
## 1869                                        Charlemagne         1            -1
## 1870                                        Charlemagne         1            -1
## 1871                                        Charlemagne        -1            -1
## 1872                                        Charlemagne         1            -1
## 1873                                        Charlemagne        -1            -1
## 1874                                        Charlemagne        -1            -1
## 1875                                           Polk Ave         1             1
## 1876                                           Polk Ave         1             1
## 1877                                           Polk Ave         1             1
## 1878                                           Polk Ave        -1             1
## 1879                                           Polk Ave        -1             1
## 1880                                           Polk Ave         1             1
## 1881                                           Polk Ave         1             1
## 1882                                           Polk Ave        -1             1
## 1883                                           Polk Ave         1             1
## 1884                                           Polk Ave        -1             1
## 1885                                           Polk Ave         1             1
## 1886                         torn tips         Polk Ave         1             1
## 1887                                           Polk Ave        -1             1
## 1888                                           Polk Ave         1             1
## 1889                                           Polk Ave        -1             1
## 1890                                           Polk Ave         1             1
## 1891                                           Polk Ave         1             1
## 1892                                           Polk Ave        -1             1
## 1893                                           Polk Ave         1             1
## 1894                                           Polk Ave         1             1
## 1895                                           Polk Ave         1             1
## 1896                                           Polk Ave        -1             1
## 1897                                           Polk Ave        -1             1
## 1898                                           Polk Ave         1             1
## 1899                                           Polk Ave        -1             1
## 1900                                           Polk Ave         1             1
## 1901                                           Polk Ave        -1             1
## 1902                                           Polk Ave         1             1
## 1903                                           Polk Ave         1             1
## 1904                         torn tips         Polk Ave         1             1
## 1905                         torn tips         Polk Ave        -1             1
## 1906                                           Polk Ave         1             1
## 1907                         torn tips         Polk Ave         1             1
## 1908                                           Polk Ave         1             1
## 1909                                           Polk Ave         1             1
## 1910                                           Polk Ave         1             1
## 1911                                           Polk Ave         1             1
## 1912                                           Polk Ave        -1             1
## 1913                                           Polk Ave        -1             1
## 1914                                           Polk Ave        -1             1
## 1915                                        Mount & 8th        -1             1
## 1916                                         23rd & 8th         1             1
## 1917                                         23rd & 8th         1             1
## 1918                                         23rd & 8th        -1             1
## 1919                                         23rd & 8th         1             1
## 1920                                         23rd & 8th        -1             1
## 1921                                         23rd & 8th        -1             1
## 1922                                         23rd & 8th         1             1
## 1923                                         23rd & 8th        -1             1
## 1924                                         23rd & 8th        -1             1
## 1925                                         23rd & 8th         1             1
## 1926                                         23rd & 8th         1             1
## 1927                                         23rd & 8th         1             1
## 1928                                         23rd & 8th        -1             1
## 1929                                         23rd & 8th         1             1
## 1930                                         23rd & 8th         1             1
## 1931                                         23rd & 8th         1             1
## 1932                                         23rd & 8th         1             1
## 1933                                         23rd & 8th         1             1
## 1934                                         23rd & 8th         1             1
## 1935                                         23rd & 8th         1             1
## 1936                                         23rd & 8th         1             1
## 1937                                         23rd & 8th         1             1
## 1938                                         23rd & 8th         1             1
## 1939                                         23rd & 8th         1             1
## 1940                                         23rd & 8th        -1             1
## 1941                                         23rd & 8th         1             1
## 1942                                         23rd & 8th         1             1
## 1943                                         23rd & 8th        -1             1
## 1944                                         23rd & 8th         1             1
## 1945                                         23rd & 8th         1             1
## 1946                                         23rd & 8th        -1             1
## 1947                                         23rd & 8th         1             1
## 1948                                         23rd & 8th         1             1
## 1949                                         23rd & 8th         1             1
## 1950                                         23rd & 8th         1             1
## 1951                                         23rd & 8th         1             1
## 1952                                         23rd & 8th         1             1
## 1953                                         23rd & 8th         1             1
## 1954                                         23rd & 8th         1             1
## 1955                                         23rd & 8th         1             1
## 1956                                         23rd & 8th         1             1
## 1957                                         23rd & 8th         1             1
## 1958                                         23rd & 8th        -1             1
## 1959                                         23rd & 8th         1             1
## 1960                                         23rd & 8th         1             1
## 1961                                         23rd & 8th         1             1
## 1962                                         23rd & 8th         1             1
## 1963                                         23rd & 8th         1             1
## 1964                                         23rd & 8th         1             1
## 1965                                        SW 296th St        -1             1
## 1966                                        SW 296th St        -1             1
## 1967                                        SW 296th St         1             1
## 1968                                        SW 296th St         1             1
## 1969                                        SW 296th St        -1             1
## 1970                                        SW 296th St        -1             1
## 1971                                        SW 296th St        -1             1
## 1972                                        SW 296th St        -1             1
## 1973                 wings torn at end      SW 296th St        -1             1
## 1974                                        SW 296th St        -1             1
## 1975                                        SW 296th St         1             1
## 1976                                        SW 296th St        -1             1
## 1977                 wings torn at end      SW 296th St        -1             1
## 1978                                        SW 296th St        -1             1
## 1979                                        SW 296th St        -1             1
## 1980                                        SW 296th St        -1             1
## 1981                                        SW 296th St         1             1
## 1982                                        SW 296th St         1             1
## 1983                                                 JP        -1            -1
## 1984                                                 JP        -1            -1
## 1985                                                 JP         1            -1
## 1986                                                 JP        -1            -1
## 1987                      d1+d2 yellow               JP         1            -1
## 1988                                                 JP        -1            -1
## 1989                      d1+d2 yellow               JP        -1            -1
## 1990                                                 JP         1            -1
## 1991                                                 JP         1            -1
## 1992                                                 JP         1            -1
## 1993                                                 JP        -1            -1
## 1994                                                 JP        -1            -1
## 1995                      d1+d2 yellow               JP         1            -1
## 1996                                                 JP         1            -1
## 1997                           d1 blue               JP        -1            -1
## 1998                                                 JP        -1            -1
## 1999                                                 JP         1            -1
## 2000                                                 JP         1            -1
## 2001                        d1+d2 blue               JP        -1            -1
## 2002                                                 JP        -1            -1
## 2003                         d1 yellow               JP        -1            -1
## 2004                                                 JP        -1            -1
## 2005                                                 JP        -1            -1
## 2006                                                 JP        -1            -1
## 2007                                                 JP         1            -1
## 2008                         d3 yellow               JP        -1            -1
## 2009                                                 JP         1            -1
## 2010                                                 JP        -1            -1
## 2011                                                 JP        -1            -1
## 2012                           d2 pink               JP        -1            -1
## 2013                                                 JP        -1            -1
## 2014                                                 JP         1            -1
## 2015                                                 JP        -1            -1
## 2016                           d1 blue               JP        -1            -1
## 2017                                                 JP        -1            -1
## 2018                         d2 yellow               JP        -1            -1
## 2019                         d3 yellow               JP        -1            -1
## 2020                                                 JP         1            -1
## 2021                                                 JP         1            -1
## 2022                                                 JP         1            -1
## 2023                                                 JP         1            -1
## 2024                           d1 pink               JP        -1            -1
## 2025                                                 JP        -1            -1
## 2026                           d1 blue               JP        -1            -1
## 2027                                                 JP         1            -1
## 2028                                                 JP        -1            -1
## 2029                                                 JP        -1            -1
## 2030                                                 JP         1            -1
## 2031                         d1 yellow               JP        -1            -1
## 2032                                                 JP         1            -1
## 2033                         d3 yellow               JP        -1            -1
## 2034                                                 JP        -1            -1
## 2035                                                 JP        -1            -1
## 2036                                                 JP        -1            -1
## 2037                                                 JP        -1            -1
## 2038                                                 JP        -1            -1
## 2039                                                 JP         1            -1
## 2040                                                 JP        -1            -1
## 2041                                                 JP         1            -1
## 2042                                                 JP         1            -1
## 2043                                                 JP         1            -1
## 2044                                                 JP        -1            -1
## 2045                                                 JP        -1            -1
## 2046                                                 JP        -1            -1
## 2047                                                 JP         1            -1
## 2048                                                 JP        -1            -1
## 2049                                                 JP        -1            -1
## 2050                           d2 pink               JP        -1            -1
## 2051                                                 JP        -1            -1
## 2052                         d2 yellow               JP         1            -1
## 2053                         d2 yellow               JP        -1            -1
## 2054                         d2 yellow               JP        -1            -1
## 2055                                                 JP        -1            -1
## 2056                                                 JP        -1            -1
## 2057                                                 JP        -1            -1
## 2058                                                 JP        -1            -1
## 2059                                          110N Main         1             1
## 2060                                          110N Main         1             1
## 2061                                          110N Main         1             1
## 2062                                          110N Main         1             1
## 2063                                          110N Main         1             1
## 2064                                          110N Main         1             1
## 2065                                          110N Main         1             1
## 2066                                          110N Main         1             1
## 2067                                          110N Main         1             1
## 2068                                          110N Main         1             1
## 2069                                          110N Main        -1             1
## 2070                                          110N Main         1             1
## 2071                                          110N Main        -1             1
## 2072                                          110N Main         1             1
## 2073                                          110N Main        -1             1
## 2074                        torn wings        110N Main        -1             1
## 2075                                          110N Main         1             1
## 2076                                          110N Main         1             1
## 2077                                          110N Main         1             1
## 2078                                          110N Main         1             1
## 2079                                          110N Main         1             1
## 2080                                          110N Main         1             1
## 2081                                          110N Main         1             1
## 2082                                          110N Main         1             1
## 2083                                          110N Main         1             1
## 2084                                          110N Main        -1             1
## 2085                                          110N Main         1             1
## 2086                                          110N Main         1             1
## 2087                                          110N Main         1             1
## 2088                       torn thorax        110N Main         1             1
## 2089                                          110N Main         1             1
## 2090                                          110N Main         1             1
## 2091                                          110N Main         1             1
## 2092                                          110N Main         1             1
## 2093                                          110N Main         1             1
## 2094                                          110N Main         1             1
## 2095                                          110N Main         1             1
## 2096                                          110N Main         1             1
## 2097                                          110N Main         1             1
## 2098                                          110N Main         1             1
## 2099                                          110N Main         1             1
## 2100                                          110N Main         1             1
## 2101                                          110N Main         1             1
## 2102                                          110N Main         1             1
## 2103                                          110N Main        -1             1
## 2104                                          110N Main         1             1
## 2105                                          110N Main         1             1
## 2106                                          110N Main        -1             1
## 2107                                          110N Main        -1             1
## 2108                                          110N Main         1             1
## 2109                       torn thorax        110N Main        -1             1
## 2110                                          110N Main         1             1
## 2111                                          110N Main        -1             1
## 2112                                          110N Main         1             1
## 2113                                          110N Main        -1             1
## 2114                                          110N Main         1             1
## 2115                                          110N Main         1             1
## 2116                                          110N Main         1             1
## 2117                                          110N Main         1             1
## 2118                                          110N Main         1             1
## 2119                                          110N Main         1             1
## 2120                                          110N Main        -1             1
## 2121                                        Charlemagne         1            -1
## 2122                                        Charlemagne        -1            -1
## 2123                                        Charlemagne        -1            -1
## 2124                                        Charlemagne        -1            -1
## 2125                                        Charlemagne        -1            -1
## 2126                                        Charlemagne         1            -1
## 2127                                        Charlemagne        -1            -1
## 2128                                        Charlemagne        -1            -1
## 2129                                        Charlemagne         1            -1
## 2130                                        Charlemagne        -1            -1
## 2131                                        Charlemagne        -1            -1
## 2132                         tips torn      Charlemagne        -1            -1
## 2133                                        Charlemagne        -1            -1
## 2134                                        Charlemagne        -1            -1
## 2135                                        Charlemagne        -1            -1
## 2136                                        Charlemagne        -1            -1
## 2137 tips torn; marked purple hind leg      Charlemagne        -1            -1
## 2138                                        Charlemagne        -1            -1
## 2139                                        Charlemagne        -1            -1
## 2140                                        Charlemagne        -1            -1
## 2141                         tips torn      Charlemagne        -1            -1
## 2142                                        Charlemagne         1            -1
## 2143                                        Charlemagne        -1            -1
## 2144                                        Charlemagne        -1            -1
## 2145                                        Charlemagne         1            -1
## 2146                                        Charlemagne        -1            -1
## 2147                                        Charlemagne        -1            -1
## 2148                                        Charlemagne         1            -1
## 2149                                        Charlemagne        -1            -1
## 2150                                        Charlemagne        -1            -1
## 2151                                        Charlemagne         1            -1
## 2152                                        Charlemagne         1            -1
## 2153                                        Charlemagne         1            -1
## 2154                                        Charlemagne        -1            -1
## 2155                                        Charlemagne        -1            -1
## 2156                                        Charlemagne         1            -1
## 2157                                        Charlemagne         1            -1
## 2158                                        Charlemagne         1            -1
## 2159                                        Charlemagne        -1            -1
## 2160                                        Charlemagne         1            -1
## 2161                                        Charlemagne         1            -1
## 2162                                        Charlemagne         1            -1
## 2163                                        Charlemagne        -1            -1
## 2164                                        Charlemagne         1            -1
## 2165                                        Charlemagne         1            -1
## 2166                                        Charlemagne        -1            -1
## 2167                                        Charlemagne         1            -1
## 2168                                        Charlemagne        -1            -1
## 2169                       marked blue      Charlemagne        -1            -1
## 2170                       marked blue      Charlemagne        -1            -1
## 2171                                        Charlemagne        -1            -1
## 2172                                        Charlemagne        -1            -1
## 2173                                        Charlemagne        -1            -1
## 2174                                        Charlemagne        -1            -1
## 2175                       marked blue      Charlemagne         1            -1
## 2176                                        Charlemagne        -1            -1
## 2177                       marked blue      Charlemagne        -1            -1
## 2178                    marked blue x3      Charlemagne        -1            -1
## 2179                                        Charlemagne        -1            -1
## 2180                       marked blue      Charlemagne        -1            -1
## 2181                                        Charlemagne        -1            -1
## 2182                       marked blue      Charlemagne         1            -1
## 2183                       marked blue      Charlemagne         1            -1
## 2184                                        Charlemagne         1            -1
## 2185                       marked blue      Charlemagne        -1            -1
## 2186                                        Charlemagne         1            -1
## 2187                                        Charlemagne         1            -1
## 2188                                        Charlemagne         1            -1
## 2189                    marked blue x2      Charlemagne         1            -1
## 2190                                        Charlemagne         1            -1
## 2191                                        Charlemagne         1            -1
## 2192                    marked blue x3      Charlemagne        -1            -1
## 2193                       marked blue      Charlemagne        -1            -1
## 2194                                        Charlemagne        -1            -1
## 2195                    marked blue x2      Charlemagne        -1            -1
## 2196                                        Charlemagne         1            -1
## 2197                                        Charlemagne        -1            -1
## 2198                                        Charlemagne        -1            -1
## 2199                                        Charlemagne        -1            -1
## 2200                                        Charlemagne        -1            -1
## 2201                       marked blue      Charlemagne        -1            -1
## 2202                                        Charlemagne         1            -1
## 2203                                        Charlemagne        -1            -1
## 2204                                        Charlemagne        -1            -1
## 2205                       marked blue      Charlemagne        -1            -1
## 2206                                        Charlemagne        -1            -1
## 2207                                        Charlemagne        -1            -1
## 2208                                        Charlemagne        -1            -1
## 2209                                        Charlemagne         1            -1
## 2210                       marked blue      Charlemagne        -1            -1
## 2211                       marked blue      Charlemagne        -1            -1
## 2212                                        Charlemagne        -1            -1
## 2213                                        Charlemagne        -1            -1
## 2214                       marked blue      Charlemagne        -1            -1
## 2215                                        Charlemagne        -1            -1
## 2216                                        Charlemagne        -1            -1
## 2217                                        Charlemagne        -1            -1
## 2218                                        Charlemagne        -1            -1
## 2219                                        Charlemagne        -1            -1
## 2220                                        Charlemagne         1            -1
## 2221                    marked blue x2      Charlemagne         1            -1
## 2222                                        Charlemagne         1            -1
## 2223                 torn tips; marked      Charlemagne         1            -1
## 2224                        torn tips       Charlemagne        -1            -1
## 2225                                        Charlemagne         1            -1
## 2226                                        Charlemagne        -1            -1
## 2227                                        Charlemagne         1            -1
## 2228                                        Charlemagne         1            -1
## 2229                            marked      Charlemagne         1            -1
## 2230                                        Charlemagne         1            -1
## 2231                                        Charlemagne         1            -1
## 2232                                        Charlemagne         1            -1
## 2233                         marked x2      Charlemagne         1            -1
## 2234                                        Charlemagne        -1            -1
## 2235                                        Charlemagne         1            -1
## 2236                            marked      Charlemagne         1            -1
## 2237                            marked      Charlemagne        -1            -1
## 2238                                        Charlemagne        -1            -1
## 2239                            marked      Charlemagne         1            -1
## 2240                                        Charlemagne        -1            -1
## 2241                                        Charlemagne         1            -1
## 2242                                        Charlemagne         1            -1
## 2243                                        Charlemagne        -1            -1
## 2244                                        Charlemagne        -1            -1
## 2245                                        Charlemagne         1            -1
## 2246                                        Charlemagne         1            -1
## 2247                                        Charlemagne         1            -1
## 2248                                        Charlemagne         1            -1
## 2249                                        Charlemagne        -1            -1
## 2250                                        Charlemagne        -1            -1
## 2251                                        Charlemagne         1            -1
## 2252                                        Charlemagne         1            -1
## 2253                                        Charlemagne        -1            -1
## 2254                                        Charlemagne        -1            -1
## 2255                                        Charlemagne        -1            -1
## 2256                                        Charlemagne        -1            -1
## 2257                                        Charlemagne         1            -1
## 2258                                        Charlemagne         1            -1
## 2259                    marked pink x2      Charlemagne         1            -1
## 2260                                        Charlemagne        -1            -1
## 2261                       marked pink      Charlemagne         1            -1
## 2262                            marked      Charlemagne         1            -1
## 2263                                        Charlemagne        -1            -1
## 2264                                        Charlemagne        -1            -1
## 2265                                        Charlemagne         1            -1
## 2266                                        Charlemagne         1            -1
## 2267                                        Charlemagne        -1            -1
## 2268                                        Charlemagne        -1            -1
## 2269                                        Charlemagne         1            -1
## 2270                                        Charlemagne         1            -1
## 2271                   marked white x2      Charlemagne        -1            -1
## 2272                                        Charlemagne        -1            -1
## 2273                                        Charlemagne        -1            -1
## 2274                       marked pink      Charlemagne         1            -1
## 2275                      marked white      Charlemagne         1            -1
## 2276                                        Charlemagne         1            -1
## 2277                                        Charlemagne         1            -1
## 2278                   marked white x2      Charlemagne         1            -1
## 2279                       marked pink      Charlemagne        -1            -1
## 2280                      marked white      Charlemagne         1            -1
## 2281                                        Charlemagne         1            -1
## 2282                                        Charlemagne        -1            -1
## 2283                                        Charlemagne        -1            -1
## 2284                                        Charlemagne        -1            -1
## 2285                       marked pink      Charlemagne         1            -1
## 2286                      marked white      Charlemagne         1            -1
## 2287                                        Charlemagne        -1            -1
## 2288                      marked white      Charlemagne        -1            -1
## 2289                                        Charlemagne         1            -1
## 2290                      marked white      Charlemagne        -1            -1
## 2291                                        Charlemagne        -1            -1
## 2292                                        Charlemagne        -1            -1
## 2293                                        Charlemagne         1            -1
## 2294                                        Charlemagne         1            -1
## 2295                                        Charlemagne        -1            -1
## 2296                                        Charlemagne         1            -1
## 2297                                        Charlemagne         1            -1
## 2298                       marked pink      Charlemagne        -1            -1
## 2299                                        Charlemagne        -1            -1
## 2300                      marked white      Charlemagne         1            -1
## 2301                                        Charlemagne         1            -1
## 2302                                        Charlemagne         1            -1
## 2303                                        Charlemagne        -1            -1
## 2304                   marked white d2      Charlemagne         1            -1
## 2305                                        Charlemagne        -1            -1
## 2306                                        Charlemagne         1            -1
## 2307                                        Charlemagne        -1            -1
## 2308                   marked white d3      Charlemagne        -1            -1
## 2309                                        Charlemagne        -1            -1
## 2310                                        Charlemagne        -1            -1
## 2311                                        Charlemagne        -1            -1
## 2312                   marked white d2      Charlemagne        -1            -1
## 2313               marked pink d1 + d3      Charlemagne         1            -1
## 2314                                        Charlemagne        -1            -1
## 2315                     white d1 + d3      Charlemagne         1            -1
## 2316                                        Charlemagne        -1            -1
## 2317                          white d3      Charlemagne        -1            -1
## 2318                                        Charlemagne         1            -1
## 2319                                        Charlemagne        -1            -1
## 2320                                        Charlemagne        -1            -1
## 2321                          white d2      Charlemagne         1            -1
## 2322                                        Charlemagne        -1            -1
## 2323                           pink d1      Charlemagne         1            -1
## 2324                           pink d3      Charlemagne        -1            -1
## 2325                                        Charlemagne        -1            -1
## 2326                                        Charlemagne        -1            -1
## 2327                                        Charlemagne        -1            -1
## 2328                                        Charlemagne        -1            -1
## 2329                                        Charlemagne        -1            -1
## 2330                     white d2 + d3      Charlemagne        -1            -1
## 2331                                        Charlemagne        -1            -1
## 2332                                        Charlemagne        -1            -1
## 2333                                        Charlemagne        -1            -1
## 2334                                        Charlemagne         1            -1
## 2335                         marked d3      Charlemagne         1            -1
## 2336                         marked d3      Charlemagne         1            -1
## 2337                         marked d3      Charlemagne        -1            -1
## 2338                                        Charlemagne         1            -1
## 2339                    marked d1 + d2      Charlemagne        -1            -1
## 2340                                        Charlemagne         1            -1
## 2341                    marked d2 + d3      Charlemagne         1            -1
## 2342                                        Charlemagne        -1            -1
## 2343                                        Charlemagne         1            -1
## 2344                         marked d1      Charlemagne        -1            -1
## 2345                                        Charlemagne         1            -1
## 2346                    marked d1 + d3      Charlemagne        -1            -1
## 2347                    marked d1 + d3      Charlemagne        -1            -1
## 2348                         marked d3      Charlemagne         1            -1
## 2349                                        Charlemagne        -1            -1
## 2350                                        Charlemagne        -1            -1
## 2351                         marked d3      Charlemagne         1            -1
## 2352                                        Charlemagne        -1            -1
## 2353                                        Charlemagne         1            -1
## 2354                         marked d1      Charlemagne        -1            -1
## 2355                                        Charlemagne        -1            -1
## 2356                         marked d1      Charlemagne         1            -1
## 2357                                        Charlemagne        -1            -1
## 2358                                        Charlemagne        -1            -1
## 2359                         marked d1      Charlemagne        -1            -1
## 2360                         marked d1      Charlemagne         1            -1
## 2361                                        Charlemagne        -1            -1
## 2362                                        Charlemagne         1            -1
## 2363          marked turquoise d1 + d3      Charlemagne         1            -1
## 2364               marked turquoise d3      Charlemagne         1            -1
## 2365          marked turquoise d1 + d3      Charlemagne         1            -1
## 2366                                        Charlemagne         1            -1
## 2367                                        Charlemagne        -1            -1
## 2368          marked turquoise d1 + d3      Charlemagne         1            -1
## 2369                                          Founder's        -1            -1
## 2370                                          Founder's        -1            -1
## 2371                                          Founder's        -1            -1
## 2372                                          Founder's        -1            -1
## 2373                                          Founder's        -1            -1
## 2374                                          Founder's         1            -1
## 2375                                          Founder's         1            -1
## 2376                                          Founder's        -1            -1
## 2377                                          Founder's         1            -1
## 2378                                          Founder's         1            -1
## 2379                                          Founder's         1            -1
## 2380                                          Founder's        -1            -1
## 2381                                          Founder's        -1            -1
## 2382                                          Founder's        -1            -1
## 2383                                          Founder's         1            -1
## 2384                                          Founder's         1            -1
## 2385                                          Founder's         1            -1
## 2386                                          Founder's        -1            -1
## 2387                                          Founder's        -1            -1
## 2388                                          Founder's        -1            -1
## 2389                                          Founder's        -1            -1
## 2390                                          Founder's        -1            -1
## 2391                                          Founder's        -1            -1
## 2392                                          Founder's         1            -1
## 2393                                          Founder's        -1            -1
## 2394                                          Founder's        -1            -1
## 2395                                          Founder's         1            -1
## 2396                                          Founder's        -1            -1
## 2397                                          Founder's        -1            -1
## 2398                                          Founder's         1            -1
## 2399                                          Founder's         1            -1
## 2400                                          Founder's         1            -1
## 2401                                          Founder's         1            -1
## 2402                                          Founder's        -1            -1
## 2403                                         23rd & 8th         1             1
## 2404                                         23rd & 8th        -1             1
## 2405                                         23rd & 8th        -1             1
## 2406                                         23rd & 8th         1             1
## 2407                                         23rd & 8th         1             1
## 2408                 wings torn at end       23rd & 8th        -1             1
## 2409                 wings torn at end       23rd & 8th        -1             1
## 2410                 wings torn at end       23rd & 8th        -1             1
## 2411                                         23rd & 8th        -1             1
## 2412                 wings torn at end       23rd & 8th         1             1
## 2413                                         23rd & 8th         1             1
## 2414                 wings torn at end       23rd & 8th         1             1
## 2415                                         23rd & 8th        -1             1
## 2416                                         23rd & 8th        -1             1
## 2417                                         23rd & 8th        -1             1
## 2418                                         23rd & 8th        -1             1
## 2419                                        SW 296th St        -1             1
## 2420                                        SW 296th St         1             1
## 2421                                        SW 296th St        -1             1
## 2422                                        SW 296th St        -1             1
## 2423                                        SW 296th St         1             1
## 2424                                        SW 296th St        -1             1
## 2425                                        SW 296th St         1             1
## 2426                                        SW 296th St        -1             1
## 2427                                        SW 296th St        -1             1
## 2428                                        SW 296th St         1             1
## 2429                                        SW 296th St        -1             1
## 2430                                        SW 296th St         1             1
## 2431                                        SW 296th St         1             1
## 2432                                        SW 296th St         1             1
## 2433                                        SW 296th St         1             1
## 2434                                        SW 296th St         1             1
## 2435                                        SW 296th St        -1             1
## 2436                                        SW 296th St        -1             1
## 2437                                        SW 296th St        -1             1
## 2438                                        SW 296th St        -1             1
## 2439                                        SW 296th St        -1             1
## 2440                                        SW 296th St        -1             1
## 2441                                        SW 296th St        -1             1
## 2442                                        SW 296th St        -1             1
## 2443                                        SW 296th St        -1             1
## 2444                                        SW 296th St        -1             1
## 2445                                        SW 296th St        -1             1
## 2446                 wings torn at end      SW 296th St        -1             1
## 2447                 wings torn at end      SW 296th St        -1             1
## 2448                 wings torn at end      SW 296th St        -1             1
## 2449                                        SW 296th St         1             1
## 2450                                        SW 296th St        -1             1
## 2451                                        SW 296th St        -1             1
## 2452                                        SW 296th St         1             1
## 2453                                        SW 296th St        -1             1
## 2454                 wings torn at end      Charlemagne         1            -1
## 2455                 wings torn at end      Charlemagne         1            -1
## 2456                                        Charlemagne        -1            -1
## 2457                 wings torn at end      Charlemagne         1            -1
## 2458                 wings torn at end      Charlemagne        -1            -1
## 2459                                        Charlemagne         1            -1
## 2460                                        Charlemagne        -1            -1
## 2461                                        Charlemagne        -1            -1
## 2462                 wings torn at end      Charlemagne         1            -1
## 2463                                        Charlemagne        -1            -1
## 2464                                        Charlemagne        -1            -1
## 2465                 wings torn at end      Charlemagne         1            -1
## 2466                 wings torn at end      Charlemagne        -1            -1
## 2467                                        Charlemagne         1            -1
## 2468                 wings torn at end      Charlemagne         1            -1
## 2469                 wings torn at end      Charlemagne         1            -1
## 2470                                          110N Main        -1             1
## 2471                                          110N Main         1             1
## 2472                                          110N Main         1             1
## 2473                                          110N Main        -1             1
## 2474                 wings torn at end        110N Main        -1             1
## 2475                                          110N Main         1             1
## 2476                                          110N Main         1             1
## 2477                                          110N Main         1             1
## 2478                                          110N Main        -1             1
## 2479                                          110N Main         1             1
## 2480                 wings torn at end        110N Main        -1             1
## 2481                 wings torn at end        110N Main        -1             1
## 2482                                          110N Main         1             1
## 2483                                          110N Main         1             1
## 2484                                          110N Main         1             1
## 2485                                          110N Main        -1             1
## 2486                                          110N Main         1             1
## 2487                                          110N Main         1             1
## 2488                                          110N Main        -1             1
## 2489                                          110N Main        -1             1
## 2490                                          110N Main         1             1
## 2491                                          110N Main        -1             1
## 2492                                          110N Main        -1             1
## 2493                                          110N Main         1             1
## 2494                                          110N Main        -1             1
## 2495                 wings torn at end        110N Main        -1             1
## 2496                                          110N Main         1             1
## 2497                                          110N Main        -1             1
## 2498                 wings torn at end        110N Main         1             1
## 2499                                          110N Main        -1             1
## 2500                                          110N Main         1             1
## 2501                                          110N Main         1             1
## 2502                                          110N Main        -1             1
## 2503                                          110N Main        -1             1
## 2504                                          110N Main         1             1
## 2505                                          110N Main         1             1
## 2506                                          110N Main        -1             1
## 2507                                          110N Main        -1             1
## 2508                                          110N Main        -1             1
## 2509                                          110N Main        -1             1
## 2510                                          110N Main        -1             1
## 2511                                          110N Main        -1             1
## 2512                 wings torn at end        110N Main         1             1
## 2513                                           Polk Ave         1             1
## 2514                                           Polk Ave         1             1
## 2515                                           Polk Ave         1             1
## 2516                 wings torn at end         Polk Ave        -1             1
## 2517                 wings torn at end         Polk Ave         1             1
## 2518                                           Polk Ave        -1             1
## 2519                 wings torn at end         Polk Ave         1             1
## 2520                                           Polk Ave         1             1
## 2521                 wings torn at end         Polk Ave        -1             1
## 2522                                           Polk Ave        -1             1
## 2523                                           Polk Ave        -1             1
## 2524                                           Polk Ave         1             1
## 2525                                           Polk Ave        -1             1
## 2526                                           Polk Ave         1             1
## 2527                                           Polk Ave         1             1
## 2528                        wings torn         Polk Ave        -1             1
## 2529                                           Polk Ave        -1             1
## 2530                                           Polk Ave        -1             1
## 2531                                           Polk Ave         1             1
## 2532                                           Polk Ave         1             1
## 2533                                           Polk Ave        -1             1
## 2534                                           Polk Ave         1             1
## 2535                                           Polk Ave         1             1
## 2536                 wings torn at end      Mount & 8th         1             1
## 2537                                        Mount & 8th         1             1
## 2538                                        Mount & 8th         1             1
## 2539                                        Mount & 8th         1             1
## 2540                 wings torn at end      Mount & 8th         1             1
## 2541                                        Mount & 8th        -1             1
## 2542                                        Mount & 8th        -1             1
## 2543                 wings torn at end      Mount & 8th        -1             1
## 2544                                        Mount & 8th         1             1
## 2545                                        Mount & 8th        -1             1
## 2546                                        Mount & 8th        -1             1
## 2547                                        Mount & 8th         1             1
## 2548                                        Mount & 8th        -1             1
## 2549                                        Mount & 8th        -1             1
## 2550                                        Mount & 8th        -1             1
## 2551                                        Mount & 8th         1             1
## 2552                                        Mount & 8th        -1             1
## 2553                                        Mount & 8th        -1             1
## 2554                 wings torn at end      Mount & 8th         1             1
## 2555                                        Mount & 8th         1             1
## 2556                                        Mount & 8th        -1             1
## 2557                 wings torn at end      Mount & 8th         1             1
## 2558                                        Mount & 8th         1             1
## 2559                                        Mount & 8th         1             1
## 2560                 wings torn at end      Mount & 8th        -1             1
## 2561                                        Mount & 8th        -1             1
## 2562                                        Charlemagne         1            -1
## 2563                                        Charlemagne        -1            -1
## 2564                                        Charlemagne         1            -1
## 2565                                        Charlemagne         1            -1
## 2566                                        Charlemagne        -1            -1
## 2567                 wings torn at end      Charlemagne         1            -1
## 2568                                        Charlemagne         1            -1
## 2569                 wings torn at end      Charlemagne        -1            -1
## 2570                                        Charlemagne        -1            -1
## 2571                                        Charlemagne        -1            -1
## 2572                                        Charlemagne        -1            -1
## 2573                 wings torn at end      Charlemagne         1            -1
## 2574                                        Charlemagne        -1            -1
## 2575                                        Charlemagne        -1            -1
## 2576                                        Charlemagne        -1            -1
## 2577                                        Charlemagne         1            -1
## 2578                                        Charlemagne        -1            -1
## 2579                                        Charlemagne        -1            -1
## 2580                                        Charlemagne        -1            -1
## 2581                 wings torn at end      Charlemagne        -1            -1
## 2582                                        Charlemagne         1            -1
## 2583                 wings torn at end      Charlemagne        -1            -1
## 2584                                        Charlemagne         1            -1
## 2585                                        Charlemagne         1            -1
## 2586                                        Charlemagne         1            -1
## 2587                 wings torn at end      Charlemagne        -1            -1
## 2588                 wings torn at end      Charlemagne        -1            -1
## 2589                                        Charlemagne         1            -1
## 2590                 wings torn at end      Charlemagne        -1            -1
## 2591                                        Charlemagne        -1            -1
## 2592                                        Charlemagne         1            -1
## 2593                                        Charlemagne         1            -1
## 2594                 wings torn at end      Charlemagne        -1            -1
## 2595                                        Charlemagne        -1            -1
## 2596                                        Charlemagne         1            -1
## 2597                                        Charlemagne         1            -1
## 2598                                        Charlemagne         1            -1
## 2599                                        Charlemagne         1            -1
## 2600                 wings torn at end      Charlemagne         1            -1
## 2601                                        Charlemagne         1            -1
## 2602                                        Charlemagne         1            -1
## 2603                                        Charlemagne         1            -1
## 2604                                        Charlemagne         1            -1
## 2605                                        Charlemagne         1            -1
## 2606                                        Charlemagne         1            -1
## 2607                                        Charlemagne         1            -1
## 2608                 wings torn at end      Charlemagne        -1            -1
## 2609                                        Charlemagne        -1            -1
## 2610                                        Charlemagne         1            -1
## 2611                 wings torn at end      Charlemagne        -1            -1
## 2612                                        Charlemagne        -1            -1
## 2613                                        Charlemagne        -1            -1
## 2614                 wings torn at end      Charlemagne        -1            -1
## 2615                                        Charlemagne        -1            -1
## 2616                                        Charlemagne         1            -1
## 2617                                        Charlemagne        -1            -1
## 2618                                        Charlemagne         1            -1
## 2619                 wings torn at end      Charlemagne        -1            -1
## 2620                 wings torn at end      Charlemagne         1            -1
## 2621                                        Charlemagne        -1            -1
## 2622                                        Charlemagne         1            -1
## 2623                 wings torn at end      Charlemagne        -1            -1
## 2624                                        Charlemagne        -1            -1
## 2625                                        Charlemagne        -1            -1
## 2626                                        Charlemagne        -1            -1
## 2627                 wings torn at end      Charlemagne        -1            -1
## 2628                 wings torn at end      Charlemagne         1            -1
## 2629                 wings torn at end      Charlemagne        -1            -1
## 2630                                        Charlemagne         1            -1
## 2631                                        Charlemagne        -1            -1
## 2632                                        Charlemagne        -1            -1
## 2633                 wings torn at end      Charlemagne        -1            -1
## 2634                                        Charlemagne        -1            -1
## 2635                                        Charlemagne        -1            -1
## 2636                        wings torn      Charlemagne         1            -1
## 2637                                        Charlemagne        -1            -1
## 2638                        wings torn      Charlemagne         1            -1
## 2639                                        Charlemagne         1            -1
## 2640                                        Charlemagne        -1            -1
## 2641                                        Charlemagne        -1            -1
## 2642                                        Charlemagne        -1            -1
## 2643                                          Mohawk St         1            -1
## 2644                                          Mohawk St         1            -1
## 2645                                          Mohawk St         1            -1
## 2646                 wings torn at end        Mohawk St        -1            -1
## 2647                                          Mohawk St        -1            -1
## 2648                                          Mohawk St         1            -1
## 2649                                          Mohawk St        -1            -1
## 2650                                          Mohawk St        -1            -1
## 2651                                          Mohawk St        -1            -1
## 2652                                          Mohawk St        -1            -1
## 2653                                          Mohawk St         1            -1
## 2654                                          Mohawk St        -1            -1
## 2655                                          Mohawk St        -1            -1
## 2656                                          Mohawk St         1            -1
## 2657                                          Mohawk St        -1            -1
## 2658                                         23rd & 8th        -1             1
## 2659             wings torn at the end       23rd & 8th        -1             1
## 2660                                         23rd & 8th        -1             1
## 2661                                         23rd & 8th        -1             1
## 2662                                         23rd & 8th        -1             1
## 2663             wings torn at the end       23rd & 8th        -1             1
## 2664             wings torn at the end       23rd & 8th        -1             1
## 2665                                         23rd & 8th        -1             1
## 2666                                         23rd & 8th        -1             1
## 2667                                         23rd & 8th        -1             1
## 2668                                         23rd & 8th         1             1
## 2669                                         23rd & 8th        -1             1
## 2670             wings torn at the end       23rd & 8th         1             1
## 2671             wings torn at the end       23rd & 8th        -1             1
## 2672                                         23rd & 8th        -1             1
## 2673                                         23rd & 8th        -1             1
## 2674             wings torn at the end       23rd & 8th        -1             1
## 2675                                         23rd & 8th         1             1
## 2676             wings torn at the end       23rd & 8th        -1             1
## 2677             wings torn at the end       23rd & 8th         1             1
## 2678                                         23rd & 8th        -1             1
## 2679             wings torn at the end       23rd & 8th         1             1
## 2680                                         23rd & 8th        -1             1
## 2681             wings torn at the end       23rd & 8th        -1             1
## 2682                                         23rd & 8th        -1             1
## 2683             wings torn at the end       23rd & 8th        -1             1
## 2684                                         23rd & 8th        -1             1
## 2685             wings torn at the end       23rd & 8th        -1             1
## 2686             wings torn at the end       23rd & 8th        -1             1
## 2687             wings torn at the end       23rd & 8th        -1             1
## 2688             wings torn at the end       23rd & 8th        -1             1
## 2689             wings torn at the end       23rd & 8th         1             1
## 2690                                         23rd & 8th        -1             1
## 2691                                         23rd & 8th         1             1
## 2692                                         23rd & 8th        -1             1
## 2693                                         23rd & 8th        -1             1
## 2694                                        SW 296th St        -1             1
## 2695                                        SW 296th St         1             1
## 2696                                        SW 296th St         1             1
## 2697                                        SW 296th St         1             1
## 2698                                        SW 296th St         1             1
## 2699             wings torn at the end      SW 296th St        -1             1
## 2700                                        SW 296th St        -1             1
## 2701                                        SW 296th St         1             1
## 2702             wings torn at the end      SW 296th St        -1             1
## 2703             wings torn at the end      SW 296th St        -1             1
## 2704             wings torn at the end      SW 296th St        -1             1
## 2705                                        SW 296th St        -1             1
## 2706                                        SW 296th St        -1             1
## 2707             wings torn at the end      SW 296th St        -1             1
## 2708                                        SW 296th St         1             1
## 2709                                        SW 296th St         1             1
## 2710                                        SW 296th St         1             1
## 2711                                        SW 296th St        -1             1
## 2712                                        SW 296th St        -1             1
## 2713                                        SW 296th St         1             1
## 2714                                        SW 296th St        -1             1
## 2715                                        SW 296th St         1             1
## 2716                                        SW 296th St         1             1
## 2717                                        SW 296th St        -1             1
## 2718                                        SW 296th St        -1             1
## 2719                                        SW 296th St        -1             1
## 2720                                        SW 296th St        -1             1
## 2721                                        SW 296th St        -1             1
## 2722                                        SW 296th St         1             1
## 2723                                        SW 296th St         1             1
## 2724                                        SW 296th St        -1             1
## 2725                                        SW 296th St        -1             1
## 2726                                        SW 296th St        -1             1
## 2727                                        SW 296th St        -1             1
## 2728                                        SW 296th St        -1             1
## 2729                                        SW 296th St        -1             1
## 2730                                        SW 296th St         1             1
## 2731                                        SW 296th St         1             1
## 2732                                        SW 296th St        -1             1
## 2733                                        SW 296th St        -1             1
## 2734                                        SW 296th St        -1             1
## 2735                                        SW 296th St        -1             1
## 2736                                              KLMRL        -1            -1
## 2737                                              KLMRL         1            -1
## 2738             wings torn at the end            KLMRL         1            -1
## 2739                                              KLMRL        -1            -1
## 2740                                                 JP        -1            -1
## 2741                                                 JP         1            -1
## 2742                                                 JP        -1            -1
## 2743                                                 JP        -1            -1
## 2744                                                 JP         1            -1
## 2745                                                 JP        -1            -1
## 2746                                              KLMRL         1            -1
## 2747                                              KLMRL         1            -1
## 2748                                              KLMRL        -1            -1
## 2749                                              KLMRL        -1            -1
## 2750                                                 JP         1            -1
## 2751                                                 JP        -1            -1
## 2752                                                 JP         1            -1
## 2753             wings torn at the end               JP        -1            -1
## 2754                                              KLMRL         1            -1
## 2755                                              KLMRL        -1            -1
## 2756             wings torn at the end            KLMRL        -1            -1
## 2757                                              KLMRL         1            -1
## 2758                                              KLMRL        -1            -1
## 2759                                                 JP        -1            -1
## 2760                                                 JP         1            -1
## 2761                                                 JP        -1            -1
## 2762                                                 JP         1            -1
## 2763             wings torn at the end            KLMRL        -1            -1
## 2764                                              KLMRL        -1            -1
## 2765                                              KLMRL        -1            -1
## 2766           thorax torn on one side            KLMRL         1            -1
## 2767                                              KLMRL        -1            -1
## 2768             wings torn at the end               JP        -1            -1
## 2769                                                 JP         1            -1
## 2770                                                 JP         1            -1
## 2771                                                 JP        -1            -1
## 2772             wings torn at the end            KLMRL        -1            -1
## 2773                                              KLMRL        -1            -1
## 2774                                              KLMRL        -1            -1
## 2775                                              KLMRL        -1            -1
## 2776                                              KLMRL        -1            -1
## 2777             wings torn at the end               JP         1            -1
## 2778                                                 JP        -1            -1
## 2779                                                 JP        -1            -1
## 2780                                                 JP        -1            -1
## 2781                                                 JP        -1            -1
## 2782                                                 JP        -1            -1
## 2783                                                 JP        -1            -1
## 2784                                                 JP        -1            -1
## 2785                                                 JP        -1            -1
## 2786                                                 JP        -1            -1
## 2787                                                 JP        -1            -1
## 2788                                                 JP         1            -1
## 2789                                                 JP         1            -1
## 2790                                                 JP         1            -1
## 2791                                                 JP        -1            -1
## 2792                                                 JP        -1            -1
## 2793                                                 JP         1            -1
## 2794                                                 JP         1            -1
## 2795                                                 JP        -1            -1
## 2796                                                 JP         1            -1
## 2797                                                 JP        -1            -1
## 2798                                                 JP        -1            -1
## 2799                                                 JP         1            -1
## 2800                                                 JP        -1            -1
## 2801                                                 JP         1            -1
## 2802                                                 JP         1            -1
## 2803                                                 JP         1            -1
## 2804                                                 JP         1            -1
## 2805                                                 JP        -1            -1
## 2806                                                 JP        -1            -1
## 2807                                                 JP        -1            -1
## 2808                                                 JP         1            -1
## 2809                                                 JP         1            -1
## 2810                                                 JP        -1            -1
## 2811                                                 JP        -1            -1
## 2812                                          110N Main        -1             1
## 2813                                          110N Main         1             1
## 2814                                          110N Main         1             1
## 2815                                          110N Main        -1             1
## 2816                                          110N Main        -1             1
## 2817                                          110N Main         1             1
## 2818                                          110N Main         1             1
## 2819                                          110N Main         1             1
## 2820                                          110N Main        -1             1
## 2821                                          110N Main         1             1
## 2822                                          110N Main        -1             1
## 2823             wings torn at the end        110N Main        -1             1
## 2824                                          110N Main        -1             1
## 2825                                          110N Main        -1             1
## 2826                                          110N Main         1             1
## 2827                                          110N Main        -1             1
## 2828                                          110N Main         1             1
## 2829                                          110N Main        -1             1
## 2830                                          110N Main        -1             1
## 2831                                          110N Main        -1             1
## 2832                                          110N Main         1             1
## 2833                                          110N Main        -1             1
## 2834                                          110N Main        -1             1
## 2835                                          110N Main         1             1
## 2836                                          110N Main         1             1
## 2837                                          110N Main        -1             1
## 2838                                          110N Main         1             1
## 2839                                          110N Main         1             1
## 2840                                          110N Main        -1             1
## 2841                                          110N Main        -1             1
## 2842                                          110N Main        -1             1
## 2843                                          110N Main        -1             1
## 2844                                          110N Main        -1             1
## 2845                                          110N Main        -1             1
## 2846                                          110N Main         1             1
## 2847                                          110N Main        -1             1
## 2848                                          110N Main         1             1
## 2849                                          110N Main        -1             1
## 2850                                          110N Main        -1             1
## 2851                                          110N Main        -1             1
## 2852                                          110N Main         1             1
## 2853                                          110N Main        -1             1
## 2854                                          110N Main        -1             1
## 2855                                           Polk Ave        -1             1
## 2856                                           Polk Ave         1             1
## 2857                                           Polk Ave        -1             1
## 2858                                           Polk Ave         1             1
## 2859                                           Polk Ave         1             1
## 2860                                           Polk Ave         1             1
## 2861                                           Polk Ave         1             1
## 2862             wings torn at the end         Polk Ave        -1             1
## 2863                                           Polk Ave        -1             1
## 2864             wings torn at the end         Polk Ave         1             1
## 2865                                           Polk Ave        -1             1
## 2866                                           Polk Ave        -1             1
## 2867                                           Polk Ave        -1             1
## 2868                                           Polk Ave         1             1
## 2869                                           Polk Ave         1             1
## 2870                                           Polk Ave        -1             1
## 2871                                           Polk Ave        -1             1
## 2872             wings torn at the end         Polk Ave        -1             1
## 2873                                           Polk Ave         1             1
## 2874                                           Polk Ave        -1             1
## 2875                                           Polk Ave        -1             1
## 2876                                           Polk Ave         1             1
## 2877                                           Polk Ave        -1             1
## 2878                                           Polk Ave         1             1
## 2879                                           Polk Ave        -1             1
## 2880                                           Polk Ave         1             1
## 2881                                           Polk Ave         1             1
## 2882                                           Polk Ave        -1             1
## 2883                                           Polk Ave        -1             1
## 2884                                           Polk Ave         1             1
## 2885                                           Polk Ave         1             1
## 2886                                           Polk Ave         1             1
## 2887                                           Polk Ave        -1             1
## 2888                                           Polk Ave        -1             1
## 2889                                           Polk Ave         1             1
## 2890                                           Polk Ave        -1             1
## 2891                                           Polk Ave        -1             1
## 2892                                           Polk Ave        -1             1
## 2893                                           Polk Ave        -1             1
## 2894                                           Polk Ave        -1             1
## 2895                                           Polk Ave         1             1
## 2896                                           Polk Ave        -1             1
## 2897                                           Polk Ave        -1             1
## 2898                                           Polk Ave        -1             1
## 2899                                           Polk Ave         1             1
## 2900                                           Polk Ave        -1             1
## 2901                                           Polk Ave         1             1
## 2902                                           Polk Ave         1             1
## 2903                                           Polk Ave        -1             1
## 2904                                           Polk Ave        -1             1
## 2905                                        Mount & 8th        -1             1
## 2906                                        Mount & 8th        -1             1
## 2907                                        Mount & 8th        -1             1
## 2908                                        Mount & 8th        -1             1
## 2909                                        Mount & 8th        -1             1
## 2910                                        Mount & 8th        -1             1
## 2911                                        Mount & 8th         1             1
## 2912                                        Mount & 8th         1             1
## 2913                                        Mount & 8th         1             1
## 2914             wings torn at the end      Mount & 8th        -1             1
## 2915                                        Mount & 8th        -1             1
## 2916                                        Mount & 8th        -1             1
## 2917                                        Mount & 8th         1             1
## 2918                                        Mount & 8th        -1             1
## 2919                                        Mount & 8th         1             1
## 2920                                        Mount & 8th         1             1
## 2921             wings torn at the end      Mount & 8th        -1             1
## 2922                                        Mount & 8th        -1             1
## 2923                                        Mount & 8th        -1             1
## 2924                                        Mount & 8th        -1             1
## 2925                                        Mount & 8th        -1             1
## 2926                                        Mount & 8th        -1             1
## 2927                                        Mount & 8th         1             1
## 2928                                        Mount & 8th         1             1
## 2929                                        Mount & 8th        -1             1
## 2930             wings torn at the end      Mount & 8th         1             1
## 2931                                        Mount & 8th        -1             1
## 2932                                        Mount & 8th        -1             1
## 2933                                        Mount & 8th        -1             1
## 2934                                        Charlemagne        -1            -1
## 2935                                        Charlemagne        -1            -1
## 2936             wings torn at the end      Charlemagne        -1            -1
## 2937                                        Charlemagne        -1            -1
## 2938                                        Charlemagne         1            -1
## 2939                                        Charlemagne         1            -1
## 2940                                        Charlemagne         1            -1
## 2941             wings torn at the end      Charlemagne        -1            -1
## 2942                                        Charlemagne         1            -1
## 2943                                        Charlemagne         1            -1
## 2944                                        Charlemagne         1            -1
## 2945             wings torn at the end      Charlemagne         1            -1
## 2946                                        Charlemagne        -1            -1
## 2947                                        Charlemagne        -1            -1
## 2948                                        Charlemagne        -1            -1
## 2949                                        Charlemagne        -1            -1
## 2950                                        Charlemagne         1            -1
## 2951                                        Charlemagne        -1            -1
## 2952                                        Charlemagne         1            -1
## 2953                                        Charlemagne         1            -1
## 2954                                        Charlemagne        -1            -1
## 2955                                        Charlemagne         1            -1
## 2956                                        Charlemagne         1            -1
## 2957                                        Charlemagne        -1            -1
## 2958                                        Charlemagne        -1            -1
## 2959                                        Charlemagne        -1            -1
## 2960             wings torn at the end      Charlemagne        -1            -1
## 2961                                        Charlemagne        -1            -1
## 2962                                        Charlemagne        -1            -1
## 2963                                        Charlemagne        -1            -1
## 2964             wings torn at the end      Charlemagne         1            -1
## 2965                                        Charlemagne        -1            -1
## 2966                                        Charlemagne         1            -1
## 2967                                        Charlemagne        -1            -1
## 2968                                        Charlemagne         1            -1
## 2969                                        Charlemagne         1            -1
## 2970                                        Charlemagne         1            -1
## 2971                                        Charlemagne         1            -1
## 2972                                        Charlemagne        -1            -1
## 2973             wings torn at the end      Charlemagne        -1            -1
## 2974                                        Charlemagne        -1            -1
## 2975                                        Charlemagne         1            -1
## 2976                                        Charlemagne         1            -1
## 2977                                        Charlemagne         1            -1
## 2978                                        Charlemagne        -1            -1
## 2979                                        Charlemagne        -1            -1
## 2980                                        Charlemagne        -1            -1
## 2981             wings torn at the end      Charlemagne        -1            -1
## 2982                                        Charlemagne         1            -1
## 2983                                        Charlemagne         1            -1
## 2984                                        Charlemagne         1            -1
## 2985                                        Charlemagne        -1            -1
## 2986                                        Charlemagne        -1            -1
## 2987                                        Charlemagne        -1            -1
## 2988                                        Charlemagne         1            -1
## 2989                                        Charlemagne        -1            -1
## 2990                                        Charlemagne         1            -1
## 2991                                        Charlemagne        -1            -1
## 2992                                        Charlemagne        -1            -1
## 2993                                        Charlemagne        -1            -1
## 2994                                        Charlemagne         1            -1
## 2995                                        Charlemagne         1            -1
## 2996                                        Charlemagne        -1            -1
## 2997           thorax torn on one side      Charlemagne        -1            -1
## 2998                                        Charlemagne         1            -1
## 2999             wings torn at the end      Charlemagne        -1            -1
## 3000                                        Charlemagne        -1            -1
## 3001                                        Charlemagne        -1            -1
## 3002                                        Charlemagne        -1            -1
## 3003                                        Charlemagne         1            -1
## 3004                                        Charlemagne        -1            -1
## 3005                                        Charlemagne        -1            -1
## 3006                                        Charlemagne        -1            -1
## 3007                                        Charlemagne        -1            -1
## 3008                                        Charlemagne        -1            -1
## 3009                                        Charlemagne         1            -1
## 3010                                        Charlemagne         1            -1
## 3011                                        Charlemagne         1            -1
## 3012                                        Charlemagne        -1            -1
## 3013                                        Charlemagne        -1            -1
## 3014                                        Charlemagne        -1            -1
## 3015                                        Charlemagne         1            -1
## 3016                                        Charlemagne         1            -1
## 3017                                        Charlemagne         1            -1
## 3018                                        Charlemagne         1            -1
## 3019                                        Charlemagne         1            -1
## 3020                                        Charlemagne        -1            -1
## 3021                                        Charlemagne        -1            -1
## 3022                                        Charlemagne        -1            -1
## 3023                                        Charlemagne         1            -1
## 3024                                        Charlemagne        -1            -1
## 3025                                        Charlemagne         1            -1
## 3026             wings torn at the end      Charlemagne        -1            -1
## 3027                                        Charlemagne         1            -1
## 3028                                        Charlemagne        -1            -1
## 3029                                        Charlemagne         1            -1
## 3030             wings torn at the end      Charlemagne        -1            -1
## 3031                                        Charlemagne        -1            -1
## 3032                                        Charlemagne        -1            -1
## 3033                                        Charlemagne        -1            -1
## 3034                                        Charlemagne        -1            -1
## 3035                                        Charlemagne        -1            -1
## 3036             wings torn at the end      Charlemagne        -1            -1
## 3037                                        Charlemagne        -1            -1
## 3038             wings torn at the end      Charlemagne        -1            -1
## 3039                                        Charlemagne        -1            -1
## 3040                                        Charlemagne        -1            -1
## 3041                                        Charlemagne        -1            -1
## 3042                                        Charlemagne         1            -1
## 3043                                        Charlemagne        -1            -1
## 3044                                        Charlemagne        -1            -1
## 3045                                        Charlemagne        -1            -1
## 3046                                        Charlemagne        -1            -1
## 3047                                        Charlemagne        -1            -1
## 3048                                        Charlemagne        -1            -1
## 3049                                        Charlemagne        -1            -1
## 3050             wings torn at the end      Charlemagne        -1            -1
## 3051             wings torn at the end      Charlemagne         1            -1
## 3052                                        Charlemagne        -1            -1
## 3053                                        Charlemagne        -1            -1
## 3054                                        Charlemagne         1            -1
## 3055                                        Charlemagne        -1            -1
## 3056                                        Charlemagne        -1            -1
## 3057                                        Charlemagne        -1            -1
## 3058                                        Charlemagne         1            -1
## 3059                                        Charlemagne         1            -1
## 3060                                        Charlemagne        -1            -1
## 3061                                        Charlemagne        -1            -1
## 3062             wings torn at the end      Charlemagne        -1            -1
## 3063                                        Charlemagne        -1            -1
## 3064                                        Charlemagne        -1            -1
## 3065                                        Charlemagne        -1            -1
## 3066                                        Charlemagne         1            -1
## 3067                                        Charlemagne        -1            -1
## 3068                                        Charlemagne        -1            -1
## 3069                                        Charlemagne        -1            -1
## 3070                                        Charlemagne        -1            -1
## 3071                                        Charlemagne        -1            -1
## 3072                                        Charlemagne        -1            -1
## 3073                                        Charlemagne        -1            -1
## 3074                                        Charlemagne         1            -1
## 3075                                        Charlemagne         1            -1
## 3076                                        Charlemagne        -1            -1
## 3077                                        Charlemagne         1            -1
## 3078                                        Charlemagne        -1            -1
## 3079                                        Charlemagne        -1            -1
## 3080                                        Charlemagne        -1            -1
## 3081                                        Charlemagne        -1            -1
## 3082                                        Charlemagne         1            -1
## 3083                                        Charlemagne        -1            -1
## 3084                                        Charlemagne         1            -1
## 3085                                        Charlemagne         1            -1
## 3086                                        Charlemagne         1            -1
## 3087                                        Charlemagne         1            -1
## 3088                                        Charlemagne         1            -1
## 3089                                        Charlemagne         1            -1
## 3090                                        Charlemagne        -1            -1
## 3091                                        Charlemagne        -1            -1
## 3092                                        Charlemagne         1            -1
## 3093                                        Charlemagne         1            -1
## 3094                                        Charlemagne        -1            -1
## 3095                                        Charlemagne        -1            -1
## 3096                                        Charlemagne        -1            -1
## 3097                                        Charlemagne         1            -1
## 3098                                        Charlemagne        -1            -1
## 3099                                        Charlemagne        -1            -1
## 3100                                        Charlemagne         1            -1
## 3101             wings torn at the end      Charlemagne        -1            -1
## 3102                                        Charlemagne        -1            -1
## 3103                                        Charlemagne         1            -1
## 3104                                        Charlemagne        -1            -1
## 3105                                        Charlemagne        -1            -1
## 3106                                        Charlemagne         1            -1
## 3107                                        Charlemagne         1            -1
## 3108                                        Charlemagne        -1            -1
## 3109                                        Charlemagne        -1            -1
## 3110                                        Charlemagne         1            -1
## 3111                                        Charlemagne        -1            -1
## 3112                                        Charlemagne         1            -1
## 3113                                        Charlemagne        -1            -1
## 3114                                        Charlemagne         1            -1
## 3115                                        Charlemagne         1            -1
## 3116                                        Charlemagne        -1            -1
## 3117                                        Charlemagne        -1            -1
## 3118                                        Charlemagne        -1            -1
## 3119                                        Charlemagne         1            -1
## 3120                                        Charlemagne        -1            -1
## 3121                                        Charlemagne        -1            -1
## 3122                                        Charlemagne        -1            -1
## 3123                                        Charlemagne         1            -1
## 3124                                        Charlemagne         1            -1
## 3125                                        Charlemagne        -1            -1
## 3126                                        Charlemagne        -1            -1
## 3127                                        Charlemagne        -1            -1
## 3128                                        Charlemagne         1            -1
## 3129                                        Charlemagne         1            -1
## 3130                                        Charlemagne        -1            -1
## 3131                                        Charlemagne         1            -1
## 3132                                        Charlemagne        -1            -1
## 3133                                        Charlemagne        -1            -1
## 3134                                        Charlemagne        -1            -1
## 3135                                        Charlemagne         1            -1
## 3136             wings torn at the end      Charlemagne         1            -1
## 3137                                        Charlemagne        -1            -1
## 3138                                        Charlemagne         1            -1
## 3139                                        Charlemagne        -1            -1
## 3140                                        Charlemagne         1            -1
## 3141                                        Charlemagne        -1            -1
## 3142                                        Charlemagne        -1            -1
## 3143                                        Charlemagne         1            -1
## 3144                                        Charlemagne        -1            -1
## 3145                                        Charlemagne         1            -1
## 3146                                        Charlemagne         1            -1
## 3147                                        Charlemagne         1            -1
## 3148                                        Charlemagne        -1            -1
## 3149                                        Charlemagne         1            -1
## 3150                                        Charlemagne         1            -1
## 3151                                        Charlemagne         1            -1
## 3152                                        Charlemagne        -1            -1
## 3153                                        Charlemagne         1            -1
## 3154                                        Charlemagne        -1            -1
## 3155             wings torn at the end       Aregood Ln        -1            -1
## 3156                                         Aregood Ln        -1            -1
## 3157                                         Aregood Ln        -1            -1
## 3158                                         Aregood Ln        -1            -1
## 3159                                         Aregood Ln         1            -1
## 3160                                          Founder's        -1            -1
## 3161                                          Founder's         1            -1
## 3162                                          Founder's         1            -1
## 3163                                          Founder's        -1            -1
## 3164                                          Founder's        -1            -1
## 3165             wings torn at the end       Aregood Ln         1            -1
## 3166                                         Aregood Ln        -1            -1
## 3167                                         Aregood Ln         1            -1
## 3168             wings torn at the end       Aregood Ln        -1            -1
## 3169             wings torn at the end       Aregood Ln        -1            -1
## 3170                                          Founder's         1            -1
## 3171                                          Founder's        -1            -1
## 3172                                          Founder's        -1            -1
## 3173                                          Founder's         1            -1
## 3174                                          Founder's        -1            -1
## 3175                                         Aregood Ln        -1            -1
## 3176                                         Aregood Ln        -1            -1
## 3177                                         Aregood Ln        -1            -1
## 3178           thorax torn on one side       Aregood Ln        -1            -1
## 3179             wings torn at the end       Aregood Ln        -1            -1
## 3180                                          Founder's        -1            -1
## 3181                                          Founder's        -1            -1
## 3182                                          Founder's        -1            -1
## 3183                                          Founder's         1            -1
## 3184                                         Aregood Ln        -1            -1
## 3185                                         Aregood Ln        -1            -1
## 3186                                         Aregood Ln        -1            -1
## 3187                                          Founder's        -1            -1
## 3188                                          Founder's        -1            -1
## 3189                                          Founder's         1            -1
## 3190                                          Founder's        -1            -1
## 3191                                          Founder's        -1            -1
## 3192                                          Founder's        -1            -1
## 3193                                          Founder's        -1            -1
## 3194                                          Founder's        -1            -1
## 3195                                          Founder's         1            -1
## 3196                                          Founder's         1            -1
## 3197                                          Founder's        -1            -1
## 3198             wings torn at the end        Founder's         1            -1
## 3199                                          Founder's         1            -1
## 3200             wings torn at the end        Founder's        -1            -1
## 3201                                          Founder's        -1            -1
## 3202                                          Founder's         1            -1
## 3203                                          Founder's        -1            -1
## 3204                                          Founder's        -1            -1
## 3205             wings torn at the end        Founder's         1            -1
## 3206                                          Founder's        -1            -1
## 3207                                          Founder's        -1            -1
## 3208                                          Founder's         1            -1
## 3209                                          Founder's        -1            -1
## 3210                                          Founder's         1            -1
## 3211                                          Founder's         1            -1
## 3212                                          Founder's        -1            -1
## 3213                                          Founder's        -1            -1
## 3214                                          Founder's         1            -1
## 3215                                          Founder's        -1            -1
## 3216                                          Founder's        -1            -1
## 3217                                          Founder's         1            -1
## 3218                                          Founder's         1            -1
## 3219                                          Founder's         1            -1
## 3220                                          Founder's        -1            -1
## 3221                                          Founder's        -1            -1
## 3222                                          Founder's         1            -1
## 3223                                          Founder's         1            -1
## 3224             wings torn at the end       Aregood Ln         1            -1
## 3225             wings torn at the end       Aregood Ln         1            -1
## 3226                                          Founder's        -1            -1
## 3227                                          Founder's         1            -1
## 3228                                          Founder's         1            -1
## 3229                                          Founder's        -1            -1
## 3230                                          Founder's        -1            -1
## 3231                                          Founder's         1            -1
## 3232                                          Founder's         1            -1
## 3233                                          Founder's        -1            -1
## 3234                                          Founder's         1            -1
## 3235                                          Founder's         1            -1
## 3236                                          Founder's        -1            -1
## 3237                                          Founder's        -1            -1
## 3238                                          Founder's        -1            -1
## 3239                                          Founder's        -1            -1
## 3240                                          Founder's         1            -1
## 3241                                          Founder's         1            -1
## 3242                                          Founder's        -1            -1
## 3243                                          Founder's         1            -1
## 3244                                          Founder's         1            -1
## 3245                                          Founder's         1            -1
## 3246                                          Founder's        -1            -1
## 3247                                          Founder's        -1            -1
## 3248                                          Founder's        -1            -1
## 3249                                          Founder's         1            -1
## 3250                                          Founder's         1            -1
## 3251                                        SW 296th St        -1             1
## 3252                                        SW 296th St        -1             1
## 3253                                        SW 296th St         1             1
## 3254                                        SW 296th St        -1             1
## 3255                                        SW 296th St         1             1
## 3256                                        SW 296th St         1             1
## 3257                                        SW 296th St        -1             1
## 3258                                        SW 296th St         1             1
## 3259                                        SW 296th St         1             1
## 3260                                        SW 296th St         1             1
## 3261                                        SW 296th St        -1             1
## 3262                                        SW 296th St         1             1
## 3263                                        Charlemagne         1            -1
## 3264                                        Charlemagne         1            -1
## 3265                                        Charlemagne         1            -1
## 3266                                        Charlemagne         1            -1
## 3267                                        Charlemagne        -1            -1
## 3268                                        Charlemagne         1            -1
## 3269                                        Charlemagne        -1            -1
## 3270                                        Charlemagne         1            -1
## 3271                                        Charlemagne         1            -1
## 3272                                        Charlemagne         1            -1
## 3273                                        Charlemagne        -1            -1
## 3274                                        Charlemagne         1            -1
## 3275                                        Charlemagne         1            -1
## 3276                                        Charlemagne        -1            -1
## 3277                                        Charlemagne         1            -1
## 3278                                        Charlemagne        -1            -1
## 3279                                        Charlemagne         1            -1
## 3280                                        Charlemagne        -1            -1
## 3281                                        Charlemagne         1            -1
## 3282                                        Charlemagne        -1            -1
## 3283                                        Charlemagne         1            -1
## 3284                                        Charlemagne        -1            -1
## 3285                                        Charlemagne         1            -1
## 3286                                        Charlemagne        -1            -1
## 3287                                        Charlemagne        -1            -1
## 3288                                        Charlemagne        -1            -1
## 3289                                          110N Main        -1             1
## 3290                                          110N Main         1             1
## 3291                                          110N Main        -1             1
## 3292                                          110N Main        -1             1
## 3293                                          110N Main         1             1
## 3294                                          110N Main         1             1
## 3295                                          110N Main         1             1
## 3296                                          110N Main        -1             1
## 3297                                          110N Main        -1             1
## 3298                                          110N Main         1             1
## 3299                                          110N Main        -1             1
## 3300                                          110N Main         1             1
## 3301                                          110N Main        -1             1
## 3302                                          110N Main         1             1
## 3303                                          110N Main        -1             1
## 3304                                          110N Main         1             1
## 3305                                          110N Main         1             1
## 3306                                          110N Main        -1             1
## 3307                                          110N Main         1             1
## 3308                                          110N Main        -1             1
## 3309                                          110N Main        -1             1
## 3310                                        Charlemagne        -1            -1
## 3311                                        Charlemagne         1            -1
## 3312                                        Charlemagne        -1            -1
## 3313                                        Charlemagne        -1            -1
## 3314                                        SW 142nd St         1             1
## 3315                                        SW 142nd St        -1             1
## 3316                                        SW 142nd St         1             1
## 3317                                        SW 142nd St        -1             1
## 3318                                                 JP        -1            -1
## 3319                                                 JP        -1            -1
## 3320                                                 JP         1            -1
## 3321                                                 JP        -1            -1
## 3322                                                 JP         1            -1
## 3323                                                 JP         1            -1
## 3324                                                 JP         1            -1
## 3325                                        Charlemagne        -1            -1
## 3326                                        Charlemagne         1            -1
## 3327                                        Charlemagne         1            -1
## 3328                                        Charlemagne        -1            -1
## 3329                                        Charlemagne        -1            -1
## 3330                                        Charlemagne        -1            -1
## 3331                                                 JP        -1            -1
## 3332                                                 JP         1            -1
## 3333                                                 JP        -1            -1
## 3334                                        Charlemagne         1            -1
## 3335                                        Charlemagne         1            -1
## 3336                                        Charlemagne        -1            -1
## 3337                                        Charlemagne         1            -1
## 3338                                        Charlemagne        -1            -1
## 3339                                        Charlemagne         1            -1
## 3340                                           Polk Ave         1             1
## 3341                                           Polk Ave        -1             1
## 3342                                           Polk Ave         1             1
## 3343                                           Polk Ave         1             1
## 3344                       torn thorax         Polk Ave         1             1
## 3345                                           Polk Ave         1             1
## 3346                                           Polk Ave         1             1
## 3347                                           Polk Ave         1             1
## 3348                                           Polk Ave         1             1
## 3349                                           Polk Ave        -1             1
## 3350                                           Polk Ave         1             1
## 3351                                           Polk Ave        -1             1
## 3352                                           Polk Ave         1             1
## 3353                                           Polk Ave         1             1
## 3354                                           Polk Ave         1             1
## 3355                                           Polk Ave         1             1
## 3356                                           Polk Ave         1             1
## 3357                                           Polk Ave         1             1
## 3358                                           Polk Ave         1             1
## 3359                                           Polk Ave         1             1
## 3360                                           Polk Ave         1             1
## 3361                                           Polk Ave         1             1
## 3362                                           Polk Ave        -1             1
## 3363                                           Polk Ave        -1             1
## 3364                                           Polk Ave         1             1
## 3365                                           Polk Ave         1             1
## 3366                                           Polk Ave         1             1
## 3367                                           Polk Ave         1             1
## 3368                                           Polk Ave        -1             1
## 3369                                           Polk Ave        -1             1
## 3370                                           Polk Ave         1             1
## 3371                                           Polk Ave         1             1
## 3372                                           Polk Ave         1             1
## 3373                                           Polk Ave        -1             1
## 3374                                           Polk Ave         1             1
## 3375                                           Polk Ave        -1             1
## 3376                                           Polk Ave         1             1
## 3377                                           Polk Ave         1             1
## 3378                                           Polk Ave         1             1
## 3379                                           Polk Ave        -1             1
## 3380                                           Polk Ave        -1             1
## 3381                                           Polk Ave         1             1
## 3382                                           Polk Ave        -1             1
## 3383                                           Polk Ave         1             1
## 3384                                           Polk Ave         1             1
## 3385                                           Polk Ave         1             1
## 3386                                           Polk Ave        -1             1
## 3387                                           Polk Ave         1             1
## 3388                                           Polk Ave        -1             1
## 3389                                           Polk Ave         1             1
## 3390                                           Polk Ave         1             1
## 3391                                           Polk Ave         1             1
## 3392                                           Polk Ave         1             1
## 3393                                           Polk Ave        -1             1
## 3394                     (8th x Mound)      Mount & 8th        -1             1
## 3395                                        Mount & 8th         1             1
## 3396                                        Mount & 8th         1             1
## 3397                                        Mount & 8th         1             1
## 3398                                        Mount & 8th         1             1
## 3399                                        Mount & 8th        -1             1
## 3400                                        Mount & 8th         1             1
## 3401                                        Mount & 8th         1             1
## 3402                        torn wings      Mount & 8th         1             1
## 3403                                        Mount & 8th         1             1
## 3404                                        Mount & 8th        -1             1
## 3405                        torn wings      Mount & 8th        -1             1
## 3406                                        Mount & 8th        -1             1
## 3407                                        Mount & 8th         1             1
## 3408                                        Mount & 8th         1             1
## 3409                                        Mount & 8th         1             1
## 3410                                        Mount & 8th         1             1
## 3411                                        Mount & 8th        -1             1
## 3412                                        Mount & 8th         1             1
## 3413                                        Mount & 8th         1             1
## 3414                                        Mount & 8th        -1             1
## 3415                                        Mount & 8th        -1             1
## 3416                                        Mount & 8th         1             1
## 3417                                        Mount & 8th         1             1
## 3418                                        Mount & 8th         1             1
## 3419                                        Mount & 8th         1             1
## 3420                                        Mount & 8th         1             1
## 3421                                        Mount & 8th         1             1
## 3422                                        Mount & 8th         1             1
## 3423                                        Mount & 8th         1             1
## 3424                                        Mount & 8th         1             1
## 3425                                        Mount & 8th         1             1
## 3426                                        Mount & 8th         1             1
## 3427                  torn right wings      Mount & 8th         1             1
## 3428                                        Mount & 8th         1             1
## 3429                                        Mount & 8th         1             1
## 3430                                        Mount & 8th        -1             1
## 3431                                        Mount & 8th         1             1
## 3432                                        Mount & 8th         1             1
## 3433                                        Mount & 8th        -1             1
## 3434                                        Mount & 8th         1             1
## 3435                                        Mount & 8th         1             1
## 3436                                        Mount & 8th         1             1
## 3437                                        Mount & 8th         1             1
## 3438                                        Mount & 8th         1             1
## 3439                                        Mount & 8th        -1             1
## 3440                                        Mount & 8th         1             1
## 3441                                        Mount & 8th         1             1
## 3442                                        Mount & 8th        -1             1
## 3443                                        Mount & 8th         1             1
## 3444                                        Mount & 8th         1             1
## 3445                                        Mount & 8th         1             1
## 3446                                        Mount & 8th        -1             1
## 3447                        torn wings      Mount & 8th         1             1
## 3448                                        SW 296th St         1             1
## 3449                                        SW 296th St         1             1
## 3450              torn wing; left side      SW 296th St         1             1
## 3451                                        SW 296th St        -1             1
## 3452                                        SW 296th St         1             1
## 3453                                        SW 296th St         1             1
## 3454                                        SW 296th St        -1             1
## 3455                                        SW 296th St         1             1
## 3456                                        SW 296th St        -1             1
## 3457                                        SW 296th St         1             1
## 3458                        torn wings      SW 296th St         1             1
## 3459                                        SW 296th St         1             1
## 3460                                        SW 296th St        -1             1
## 3461                                        SW 296th St         1             1
## 3462                                        SW 296th St         1             1
## 3463                                        SW 296th St         1             1
## 3464                                        SW 296th St        -1             1
## 3465                                        SW 296th St        -1             1
## 3466                                        SW 296th St         1             1
## 3467                                        SW 296th St        -1             1
## 3468                                        SW 296th St         1             1
## 3469                                        SW 296th St         1             1
## 3470                                        SW 296th St         1             1
## 3471                                        SW 296th St         1             1
## 3472                         torn tips      SW 296th St         1             1
## 3473                                        SW 296th St         1             1
## 3474                                        SW 296th St         1             1
## 3475                                        SW 296th St         1             1
## 3476                                        SW 296th St        -1             1
## 3477                                        SW 296th St         1             1
## 3478                                        SW 296th St        -1             1
## 3479                                        SW 296th St         1             1
## 3480                                        SW 296th St         1             1
## 3481                        torn wings      SW 296th St         1             1
## 3482                                        SW 296th St        -1             1
## 3483                                        SW 296th St         1             1
## 3484                                        SW 296th St         1             1
## 3485                                        SW 296th St        -1             1
##                 date datetime      dates month_of_year wing2thorax
## 1         April/2013 Apr 2013 2013-04-01             4    2.790210
## 2         April/2013 Apr 2013 2013-04-01             4    2.676375
## 3         April/2013 Apr 2013 2013-04-01             4    2.812903
## 4         April/2013 Apr 2013 2013-04-01             4    2.617530
## 5         April/2013 Apr 2013 2013-04-01             4    2.821549
## 6         April/2013 Apr 2013 2013-04-01             4    2.652027
## 7         April/2013 Apr 2013 2013-04-01             4    2.794425
## 8         April/2013 Apr 2013 2013-04-01             4    2.830769
## 9         April/2013 Apr 2013 2013-04-01             4    2.721254
## 10        April/2013 Apr 2013 2013-04-01             4    2.626984
## 11        April/2013 Apr 2013 2013-04-01             4    2.707463
## 12        April/2013 Apr 2013 2013-04-01             4    2.765125
## 13        April/2013 Apr 2013 2013-04-01             4    2.686520
## 14        April/2013 Apr 2013 2013-04-01             4    2.555556
## 15        April/2013 Apr 2013 2013-04-01             4    1.716172
## 16        April/2013 Apr 2013 2013-04-01             4    2.652459
## 17        April/2013 Apr 2013 2013-04-01             4    2.652459
## 18        April/2013 Apr 2013 2013-04-01             4    2.743316
## 19        April/2013 Apr 2013 2013-04-01             4    2.770492
## 20        April/2013 Apr 2013 2013-04-01             4    2.762658
## 21        April/2013 Apr 2013 2013-04-01             4    2.887608
## 22        April/2013 Apr 2013 2013-04-01             4    2.485246
## 23        April/2013 Apr 2013 2013-04-01             4    2.848138
## 24        April/2013 Apr 2013 2013-04-01             4    2.710247
## 25        April/2013 Apr 2013 2013-04-01             4    2.781250
## 26        April/2013 Apr 2013 2013-04-01             4    2.817857
## 27        April/2013 Apr 2013 2013-04-01             4    2.717877
## 28        April/2013 Apr 2013 2013-04-01             4    2.783626
## 29        April/2013 Apr 2013 2013-04-01             4    1.706122
## 30        April/2013 Apr 2013 2013-04-01             4    1.759036
## 31        April/2013 Apr 2013 2013-04-01             4    2.697674
## 32        April/2013 Apr 2013 2013-04-01             4    2.662295
## 33        April/2013 Apr 2013 2013-04-01             4    2.692547
## 34        April/2013 Apr 2013 2013-04-01             4    2.666667
## 35        April/2013 Apr 2013 2013-04-01             4    2.025830
## 36        April/2013 Apr 2013 2013-04-01             4    2.720137
## 37        April/2013 Apr 2013 2013-04-01             4    2.817073
## 38        April/2013 Apr 2013 2013-04-01             4    2.705263
## 39        April/2013 Apr 2013 2013-04-01             4    2.542254
## 40        April/2013 Apr 2013 2013-04-01             4    2.790625
## 41        April/2013 Apr 2013 2013-04-01             4    2.653199
## 42        April/2013 Apr 2013 2013-04-01             4    2.764085
## 43        April/2013 Apr 2013 2013-04-01             4    2.889968
## 44        April/2013 Apr 2013 2013-04-01             4    2.067797
## 45        April/2013 Apr 2013 2013-04-01             4    2.705674
## 46        April/2013 Apr 2013 2013-04-01             4    2.641509
## 47        April/2013 Apr 2013 2013-04-01             4    2.933798
## 48        April/2013 Apr 2013 2013-04-01             4    1.771429
## 49        April/2013 Apr 2013 2013-04-01             4    2.616022
## 50        April/2013 Apr 2013 2013-04-01             4    2.637037
## 51        April/2013 Apr 2013 2013-04-01             4    2.537415
## 52        April/2013 Apr 2013 2013-04-01             4    2.654952
## 53        April/2013 Apr 2013 2013-04-01             4    2.668770
## 54        April/2013 Apr 2013 2013-04-01             4    2.558583
## 55        April/2013 Apr 2013 2013-04-01             4    2.946996
## 56        April/2013 Apr 2013 2013-04-01             4    2.631737
## 57        April/2013 Apr 2013 2013-04-01             4    2.791209
## 58        April/2013 Apr 2013 2013-04-01             4    2.787986
## 59        April/2013 Apr 2013 2013-04-01             4    2.747423
## 60        April/2013 Apr 2013 2013-04-01             4    2.810345
## 61        April/2013 Apr 2013 2013-04-01             4    2.747801
## 62        April/2013 Apr 2013 2013-04-01             4    2.850318
## 63        April/2013 Apr 2013 2013-04-01             4    2.569801
## 64        April/2013 Apr 2013 2013-04-01             4    2.463668
## 65        April/2013 Apr 2013 2013-04-01             4    2.653846
## 66        April/2013 Apr 2013 2013-04-01             4    2.527851
## 67        April/2013 Apr 2013 2013-04-01             4    2.811881
## 68        April/2013 Apr 2013 2013-04-01             4    2.865269
## 69        April/2013 Apr 2013 2013-04-01             4    2.972973
## 70        April/2013 Apr 2013 2013-04-01             4    2.477816
## 71        April/2013 Apr 2013 2013-04-01             4    2.828652
## 72        April/2013 Apr 2013 2013-04-01             4    2.535316
## 73        April/2013 Apr 2013 2013-04-01             4    2.544959
## 74        April/2013 Apr 2013 2013-04-01             4    2.705882
## 75        April/2013 Apr 2013 2013-04-01             4    2.639175
## 76        April/2013 Apr 2013 2013-04-01             4    1.704918
## 77        April/2013 Apr 2013 2013-04-01             4    2.942529
## 78        April/2013 Apr 2013 2013-04-01             4    2.829060
## 79        April/2013 Apr 2013 2013-04-01             4    2.712230
## 80        April/2013 Apr 2013 2013-04-01             4    1.707547
## 81        April/2013 Apr 2013 2013-04-01             4    2.520000
## 82        April/2013 Apr 2013 2013-04-01             4    1.827004
## 83        April/2013 Apr 2013 2013-04-01             4    1.639405
## 84        April/2013 Apr 2013 2013-04-01             4    2.504587
## 85        April/2013 Apr 2013 2013-04-01             4    1.918644
## 86        April/2013 Apr 2013 2013-04-01             4    1.571984
## 87        April/2013 Apr 2013 2013-04-01             4    1.728070
## 88        April/2013 Apr 2013 2013-04-01             4    1.798419
## 89        April/2013 Apr 2013 2013-04-01             4    1.762295
## 90        April/2013 Apr 2013 2013-04-01             4    1.771863
## 91        April/2013 Apr 2013 2013-04-01             4    1.670543
## 92        April/2013 Apr 2013 2013-04-01             4    1.914397
## 93        April/2013 Apr 2013 2013-04-01             4    2.685714
## 94        April/2013 Apr 2013 2013-04-01             4    2.846154
## 95        April/2013 Apr 2013 2013-04-01             4    1.638462
## 96        April/2013 Apr 2013 2013-04-01             4    2.527027
## 97        April/2013 Apr 2013 2013-04-01             4    2.604457
## 98        April/2013 Apr 2013 2013-04-01             4    2.419825
## 99        April/2013 Apr 2013 2013-04-01             4    2.513021
## 100       April/2013 Apr 2013 2013-04-01             4    1.666667
## 101       April/2013 Apr 2013 2013-04-01             4    2.594675
## 102       April/2013 Apr 2013 2013-04-01             4    2.535088
## 103       April/2013 Apr 2013 2013-04-01             4    2.120301
## 104       April/2013 Apr 2013 2013-04-01             4    2.693548
## 105       April/2013 Apr 2013 2013-04-01             4    2.727829
## 106       April/2013 Apr 2013 2013-04-01             4    2.713396
## 107       April/2013 Apr 2013 2013-04-01             4    1.417857
## 108       April/2013 Apr 2013 2013-04-01             4    2.851266
## 109       April/2013 Apr 2013 2013-04-01             4    2.667702
## 110       April/2013 Apr 2013 2013-04-01             4    2.803448
## 111       April/2013 Apr 2013 2013-04-01             4    2.746082
## 112       April/2013 Apr 2013 2013-04-01             4    1.875969
## 113       April/2013 Apr 2013 2013-04-01             4    2.449275
## 114       April/2013 Apr 2013 2013-04-01             4    2.497396
## 115       April/2013 Apr 2013 2013-04-01             4    2.506925
## 116       April/2013 Apr 2013 2013-04-01             4    3.081633
## 117       April/2013 Apr 2013 2013-04-01             4    2.823362
## 118       April/2013 Apr 2013 2013-04-01             4    2.629747
## 119       April/2013 Apr 2013 2013-04-01             4    2.787791
## 120       April/2013 Apr 2013 2013-04-01             4    2.745283
## 121       April/2013 Apr 2013 2013-04-01             4    2.664879
## 122       April/2013 Apr 2013 2013-04-01             4    2.631429
## 123       April/2013 Apr 2013 2013-04-01             4    2.652174
## 124       April/2013 Apr 2013 2013-04-01             4    2.675362
## 125       April/2013 Apr 2013 2013-04-01             4    2.620000
## 126       April/2013 Apr 2013 2013-04-01             4    2.630573
## 127       April/2013 Apr 2013 2013-04-01             4    2.794702
## 128       April/2013 Apr 2013 2013-04-01             4    2.711538
## 129       April/2013 Apr 2013 2013-04-01             4    2.686520
## 130       April/2013 Apr 2013 2013-04-01             4    2.813609
## 131       April/2013 Apr 2013 2013-04-01             4    2.691030
## 132       April/2013 Apr 2013 2013-04-01             4    2.763333
## 133       April/2013 Apr 2013 2013-04-01             4    2.722826
## 134       April/2013 Apr 2013 2013-04-01             4    2.728000
## 135       April/2013 Apr 2013 2013-04-01             4    3.003226
## 136       April/2013 Apr 2013 2013-04-01             4    2.900344
## 137       April/2013 Apr 2013 2013-04-01             4    2.765363
## 138       April/2013 Apr 2013 2013-04-01             4    2.763077
## 139       April/2013 Apr 2013 2013-04-01             4    2.956667
## 140       April/2013 Apr 2013 2013-04-01             4    2.813380
## 141       April/2013 Apr 2013 2013-04-01             4    2.678344
## 142       April/2013 Apr 2013 2013-04-01             4    2.529114
## 143       April/2013 Apr 2013 2013-04-01             4    2.707547
## 144       April/2013 Apr 2013 2013-04-01             4    1.826087
## 145       April/2013 Apr 2013 2013-04-01             4    2.551320
## 146       April/2013 Apr 2013 2013-04-01             4    2.657609
## 147       April/2013 Apr 2013 2013-04-01             4    2.974684
## 148       April/2013 Apr 2013 2013-04-01             4    2.773649
## 149       April/2013 Apr 2013 2013-04-01             4    2.689231
## 150       April/2013 Apr 2013 2013-04-01             4    1.823276
## 151       April/2013 Apr 2013 2013-04-01             4    2.799228
## 152       April/2013 Apr 2013 2013-04-01             4    2.698413
## 153       April/2013 Apr 2013 2013-04-01             4    2.665605
## 154       April/2013 Apr 2013 2013-04-01             4    2.532353
## 155       April/2013 Apr 2013 2013-04-01             4    2.708455
## 156       April/2013 Apr 2013 2013-04-01             4    2.812883
## 157       April/2013 Apr 2013 2013-04-01             4    2.508861
## 158       April/2013 Apr 2013 2013-04-01             4    2.758389
## 159       April/2013 Apr 2013 2013-04-01             4    1.986486
## 160       April/2013 Apr 2013 2013-04-01             4    2.653251
## 161       April/2013 Apr 2013 2013-04-01             4    1.573944
## 162       April/2013 Apr 2013 2013-04-01             4    2.607046
## 163       April/2013 Apr 2013 2013-04-01             4    2.689223
## 164       April/2013 Apr 2013 2013-04-01             4    2.560914
## 165       April/2013 Apr 2013 2013-04-01             4    2.690476
## 166       April/2013 Apr 2013 2013-04-01             4    2.722741
## 167       April/2013 Apr 2013 2013-04-01             4    2.649068
## 168       April/2013 Apr 2013 2013-04-01             4    2.555838
## 169       April/2013 Apr 2013 2013-04-01             4    2.634675
## 170       April/2013 Apr 2013 2013-04-01             4    2.801242
## 171       April/2013 Apr 2013 2013-04-01             4    2.684066
## 172       April/2013 Apr 2013 2013-04-01             4    2.737542
## 173       April/2013 Apr 2013 2013-04-01             4    2.619938
## 174       April/2013 Apr 2013 2013-04-01             4    2.715753
## 175       April/2013 Apr 2013 2013-04-01             4    1.679443
## 176       April/2013 Apr 2013 2013-04-01             4    2.685714
## 177       April/2013 Apr 2013 2013-04-01             4    2.653409
## 178       April/2013 Apr 2013 2013-04-01             4    2.485294
## 179       April/2013 Apr 2013 2013-04-01             4    2.595588
## 180       April/2013 Apr 2013 2013-04-01             4    2.790698
## 181       April/2013 Apr 2013 2013-04-01             4    2.758730
## 182       April/2013 Apr 2013 2013-04-01             4    1.732510
## 183       April/2013 Apr 2013 2013-04-01             4    2.637462
## 184       April/2013 Apr 2013 2013-04-01             4    2.037657
## 185       April/2013 Apr 2013 2013-04-01             4    2.575198
## 186       April/2013 Apr 2013 2013-04-01             4    2.740061
## 187       April/2013 Apr 2013 2013-04-01             4    2.668622
## 188       April/2013 Apr 2013 2013-04-01             4    2.581871
## 189       April/2013 Apr 2013 2013-04-01             4    1.610738
## 190       April/2013 Apr 2013 2013-04-01             4    1.625000
## 191       April/2013 Apr 2013 2013-04-01             4    2.873199
## 192       April/2013 Apr 2013 2013-04-01             4    2.697987
## 193       April/2013 Apr 2013 2013-04-01             4    1.801262
## 194       April/2013 Apr 2013 2013-04-01             4    1.974729
## 195       April/2013 Apr 2013 2013-04-01             4    2.530899
## 196       April/2013 Apr 2013 2013-04-01             4    2.798780
## 197       April/2013 Apr 2013 2013-04-01             4    2.729730
## 198       April/2013 Apr 2013 2013-04-01             4    2.597633
## 199       April/2013 Apr 2013 2013-04-01             4    2.653439
## 200       April/2013 Apr 2013 2013-04-01             4    2.580645
## 201       April/2013 Apr 2013 2013-04-01             4    2.559486
## 202       April/2013 Apr 2013 2013-04-01             4    2.422481
## 203       April/2013 Apr 2013 2013-04-01             4    2.635783
## 204       April/2013 Apr 2013 2013-04-01             4    2.964744
## 205       April/2013 Apr 2013 2013-04-01             4    2.826568
## 206       April/2013 Apr 2013 2013-04-01             4    2.827309
## 207       April/2013 Apr 2013 2013-04-01             4    2.722388
## 208       April/2013 Apr 2013 2013-04-01             4    2.989130
## 209       April/2013 Apr 2013 2013-04-01             4    2.482072
## 210       April/2013 Apr 2013 2013-04-01             4    2.532680
## 211       April/2013 Apr 2013 2013-04-01             4    2.796562
## 212       April/2013 Apr 2013 2013-04-01             4    2.596429
## 213       April/2013 Apr 2013 2013-04-01             4    2.521875
## 214       April/2013 Apr 2013 2013-04-01             4    1.885932
## 215       April/2013 Apr 2013 2013-04-01             4    2.396104
## 216       April/2013 Apr 2013 2013-04-01             4    1.970213
## 217       April/2013 Apr 2013 2013-04-01             4    2.670103
## 218       April/2013 Apr 2013 2013-04-01             4    1.905797
## 219       April/2013 Apr 2013 2013-04-01             4    2.744275
## 220       April/2013 Apr 2013 2013-04-01             4    2.655914
## 221       April/2013 Apr 2013 2013-04-01             4    2.602410
## 222       April/2013 Apr 2013 2013-04-01             4    2.738255
## 223       April/2013 Apr 2013 2013-04-01             4    2.858657
## 224       April/2013 Apr 2013 2013-04-01             4    2.649007
## 225       April/2013 Apr 2013 2013-04-01             4    1.935223
## 226       April/2013 Apr 2013 2013-04-01             4    2.738170
## 227       April/2013 Apr 2013 2013-04-01             4    2.608280
## 228       April/2013 Apr 2013 2013-04-01             4    2.647651
## 229       April/2013 Apr 2013 2013-04-01             4    1.664234
## 230       April/2013 Apr 2013 2013-04-01             4    2.780769
## 231       April/2013 Apr 2013 2013-04-01             4    2.727273
## 232       April/2013 Apr 2013 2013-04-01             4    2.725552
## 233       April/2013 Apr 2013 2013-04-01             4    2.807339
## 234       April/2013 Apr 2013 2013-04-01             4    2.855596
## 235       April/2013 Apr 2013 2013-04-01             4    2.809028
## 236       April/2013 Apr 2013 2013-04-01             4    2.622159
## 237       April/2013 Apr 2013 2013-04-01             4    2.730303
## 238       April/2013 Apr 2013 2013-04-01             4    2.948718
## 239       April/2013 Apr 2013 2013-04-01             4    2.762069
## 240       April/2013 Apr 2013 2013-04-01             4    2.812500
## 241       April/2013 Apr 2013 2013-04-01             4    2.623134
## 242       April/2013 Apr 2013 2013-04-01             4    1.725191
## 243       April/2013 Apr 2013 2013-04-01             4    2.569801
## 244       April/2013 Apr 2013 2013-04-01             4    2.675159
## 245       April/2013 Apr 2013 2013-04-01             4    2.951368
## 246       April/2013 Apr 2013 2013-04-01             4    2.984848
## 247       April/2013 Apr 2013 2013-04-01             4    2.969283
## 248       April/2013 Apr 2013 2013-04-01             4    2.708609
## 249       April/2013 Apr 2013 2013-04-01             4    2.734375
## 250       April/2013 Apr 2013 2013-04-01             4    2.789474
## 251       April/2013 Apr 2013 2013-04-01             4    2.703947
## 252       April/2013 Apr 2013 2013-04-01             4    2.661710
## 253       April/2013 Apr 2013 2013-04-01             4    2.707237
## 254       April/2013 Apr 2013 2013-04-01             4    2.643411
## 255       April/2013 Apr 2013 2013-04-01             4    2.935484
## 256       April/2013 Apr 2013 2013-04-01             4    2.840304
## 257       April/2013 Apr 2013 2013-04-01             4    2.849858
## 258       April/2013 Apr 2013 2013-04-01             4    2.041985
## 259       April/2013 Apr 2013 2013-04-01             4    2.670270
## 260       April/2013 Apr 2013 2013-04-01             4    2.976744
## 261       April/2013 Apr 2013 2013-04-01             4    2.085938
## 262       April/2013 Apr 2013 2013-04-01             4    1.930502
## 263       April/2013 Apr 2013 2013-04-01             4    2.455263
## 264       April/2013 Apr 2013 2013-04-01             4    1.753788
## 265       April/2013 Apr 2013 2013-04-01             4    2.424242
## 266       April/2013 Apr 2013 2013-04-01             4    1.918182
## 267       April/2013 Apr 2013 2013-04-01             4    2.739777
## 268       April/2013 Apr 2013 2013-04-01             4    2.688312
## 269       April/2013 Apr 2013 2013-04-01             4    2.894737
## 270       April/2013 Apr 2013 2013-04-01             4    3.046099
## 271       April/2013 Apr 2013 2013-04-01             4    2.666667
## 272       April/2013 Apr 2013 2013-04-01             4    2.932660
## 273       April/2013 Apr 2013 2013-04-01             4    2.615854
## 274       April/2013 Apr 2013 2013-04-01             4    1.918149
## 275       April/2013 Apr 2013 2013-04-01             4    2.904959
## 276       April/2013 Apr 2013 2013-04-01             4    2.707831
## 277       April/2013 Apr 2013 2013-04-01             4    2.668966
## 278       April/2013 Apr 2013 2013-04-01             4    2.821549
## 279       April/2013 Apr 2013 2013-04-01             4    2.678571
## 280       April/2013 Apr 2013 2013-04-01             4    2.654206
## 281       April/2013 Apr 2013 2013-04-01             4    1.783439
## 282       April/2013 Apr 2013 2013-04-01             4    2.623824
## 283       April/2013 Apr 2013 2013-04-01             4    2.597668
## 284       April/2013 Apr 2013 2013-04-01             4    1.884477
## 285       April/2013 Apr 2013 2013-04-01             4    2.514706
## 286       April/2013 Apr 2013 2013-04-01             4    2.715655
## 287       April/2013 Apr 2013 2013-04-01             4    1.722045
## 288       April/2013 Apr 2013 2013-04-01             4    2.854839
## 289       April/2013 Apr 2013 2013-04-01             4    2.806452
## 290       April/2013 Apr 2013 2013-04-01             4    2.819048
## 291       April/2013 Apr 2013 2013-04-01             4    2.856688
## 292       April/2013 Apr 2013 2013-04-01             4    2.882550
## 293       April/2013 Apr 2013 2013-04-01             4    1.761538
## 294       April/2013 Apr 2013 2013-04-01             4    2.684211
## 295       April/2013 Apr 2013 2013-04-01             4    2.100977
## 296       April/2013 Apr 2013 2013-04-01             4    1.572438
## 297       April/2013 Apr 2013 2013-04-01             4    1.623077
## 298       April/2013 Apr 2013 2013-04-01             4    2.472119
## 299       April/2013 Apr 2013 2013-04-01             4    1.725753
## 300       April/2013 Apr 2013 2013-04-01             4    2.743827
## 301       April/2013 Apr 2013 2013-04-01             4    2.655556
## 302       April/2013 Apr 2013 2013-04-01             4    2.469965
## 303       April/2013 Apr 2013 2013-04-01             4    2.585034
## 304       April/2013 Apr 2013 2013-04-01             4    1.952381
## 305       April/2013 Apr 2013 2013-04-01             4    2.688172
## 306       April/2013 Apr 2013 2013-04-01             4    2.648208
## 307       April/2013 Apr 2013 2013-04-01             4    1.830450
## 308       April/2013 Apr 2013 2013-04-01             4    1.616279
## 309       April/2013 Apr 2013 2013-04-01             4    2.622356
## 310       April/2013 Apr 2013 2013-04-01             4    1.969605
## 311       April/2013 Apr 2013 2013-04-01             4    2.091255
## 312       April/2013 Apr 2013 2013-04-01             4    1.965625
## 313       April/2013 Apr 2013 2013-04-01             4    2.522807
## 314       April/2013 Apr 2013 2013-04-01             4    2.665635
## 315       April/2013 Apr 2013 2013-04-01             4    2.495327
## 316       April/2013 Apr 2013 2013-04-01             4    2.528902
## 317       April/2013 Apr 2013 2013-04-01             4    1.969789
## 318       April/2013 Apr 2013 2013-04-01             4    1.954984
## 319       April/2013 Apr 2013 2013-04-01             4    2.781145
## 320       April/2013 Apr 2013 2013-04-01             4    1.632836
## 321       April/2013 Apr 2013 2013-04-01             4    2.650685
## 322  December/2013.6 Dec 2013 2013-12-01            12    2.510703
## 323  December/2013.6 Dec 2013 2013-12-01            12    2.753247
## 324  December/2013.6 Dec 2013 2013-12-01            12    2.493639
## 325  December/2013.6 Dec 2013 2013-12-01            12    2.603774
## 326  December/2013.6 Dec 2013 2013-12-01            12    2.720109
## 327  December/2013.6 Dec 2013 2013-12-01            12    2.598746
## 328  December/2013.6 Dec 2013 2013-12-01            12    2.538667
## 329  December/2013.6 Dec 2013 2013-12-01            12    2.671196
## 330  December/2013.6 Dec 2013 2013-12-01            12    2.706806
## 331  December/2013.6 Dec 2013 2013-12-01            12    2.700906
## 332  December/2013.6 Dec 2013 2013-12-01            12    2.787356
## 333  December/2013.6 Dec 2013 2013-12-01            12    1.811558
## 334  December/2013.6 Dec 2013 2013-12-01            12    2.609687
## 335  December/2013.6 Dec 2013 2013-12-01            12    2.732759
## 336  December/2013.6 Dec 2013 2013-12-01            12    2.704735
## 337  December/2013.6 Dec 2013 2013-12-01            12    2.729231
## 338  December/2013.6 Dec 2013 2013-12-01            12    2.571429
## 339  December/2013.6 Dec 2013 2013-12-01            12    2.661891
## 340  December/2013.6 Dec 2013 2013-12-01            12    2.505102
## 341  December/2013.6 Dec 2013 2013-12-01            12    2.670213
## 342  December/2013.6 Dec 2013 2013-12-01            12    2.582210
## 343  December/2013.6 Dec 2013 2013-12-01            12    2.735294
## 344  December/2013.6 Dec 2013 2013-12-01            12    2.396594
## 345  December/2013.6 Dec 2013 2013-12-01            12    2.836565
## 346  December/2013.6 Dec 2013 2013-12-01            12    2.897611
## 347  December/2013.6 Dec 2013 2013-12-01            12    2.495726
## 348  December/2013.6 Dec 2013 2013-12-01            12    2.561453
## 349  December/2013.6 Dec 2013 2013-12-01            12    2.753463
## 350  December/2013.6 Dec 2013 2013-12-01            12    2.702918
## 351  December/2013.6 Dec 2013 2013-12-01            12    2.883853
## 352  December/2013.6 Dec 2013 2013-12-01            12    2.684971
## 353  December/2013.6 Dec 2013 2013-12-01            12    2.751429
## 354  December/2013.6 Dec 2013 2013-12-01            12    2.693767
## 355  December/2013.6 Dec 2013 2013-12-01            12    2.548052
## 356  December/2013.6 Dec 2013 2013-12-01            12    2.747604
## 357  December/2013.6 Dec 2013 2013-12-01            12    2.740634
## 358  December/2013.6 Dec 2013 2013-12-01            12    2.822742
## 359  December/2013.6 Dec 2013 2013-12-01            12    2.586592
## 360  December/2013.6 Dec 2013 2013-12-01            12    2.916667
## 361  December/2013.6 Dec 2013 2013-12-01            12    2.602210
## 362  December/2013.6 Dec 2013 2013-12-01            12    2.646113
## 363  December/2013.6 Dec 2013 2013-12-01            12    2.829545
## 364  December/2013.6 Dec 2013 2013-12-01            12    2.676630
## 365  December/2013.6 Dec 2013 2013-12-01            12    2.655440
## 366  December/2013.6 Dec 2013 2013-12-01            12    2.722930
## 367  December/2013.6 Dec 2013 2013-12-01            12    2.640306
## 368  December/2013.6 Dec 2013 2013-12-01            12    2.865320
## 369  December/2013.6 Dec 2013 2013-12-01            12    2.679558
## 370  December/2013.6 Dec 2013 2013-12-01            12    2.893617
## 371  December/2013.6 Dec 2013 2013-12-01            12    2.948980
## 372  December/2013.6 Dec 2013 2013-12-01            12    2.696049
## 373  December/2013.6 Dec 2013 2013-12-01            12    2.842254
## 374  December/2013.6 Dec 2013 2013-12-01            12    2.660057
## 375  December/2013.6 Dec 2013 2013-12-01            12    2.675900
## 376  December/2013.6 Dec 2013 2013-12-01            12    2.771875
## 377  December/2013.6 Dec 2013 2013-12-01            12    2.739837
## 378  December/2013.6 Dec 2013 2013-12-01            12    2.900826
## 379  December/2013.6 Dec 2013 2013-12-01            12    2.706704
## 380  December/2013.6 Dec 2013 2013-12-01            12    2.662420
## 381  December/2013.6 Dec 2013 2013-12-01            12    2.765957
## 382  December/2013.6 Dec 2013 2013-12-01            12    2.684211
## 383  December/2013.6 Dec 2013 2013-12-01            12    2.831956
## 384  December/2013.6 Dec 2013 2013-12-01            12    2.638243
## 385  December/2013.6 Dec 2013 2013-12-01            12    2.857558
## 386  December/2013.6 Dec 2013 2013-12-01            12    2.653951
## 387  December/2013.6 Dec 2013 2013-12-01            12    2.689373
## 388  December/2013.6 Dec 2013 2013-12-01            12    2.813869
## 389  December/2013.6 Dec 2013 2013-12-01            12    2.660256
## 390  December/2013.6 Dec 2013 2013-12-01            12    2.803763
## 391  December/2013.6 Dec 2013 2013-12-01            12    2.721311
## 392  December/2013.6 Dec 2013 2013-12-01            12    2.628895
## 393  December/2013.6 Dec 2013 2013-12-01            12    2.664042
## 394  December/2013.6 Dec 2013 2013-12-01            12    2.690476
## 395  December/2013.6 Dec 2013 2013-12-01            12    2.923077
## 396  December/2013.6 Dec 2013 2013-12-01            12    2.552000
## 397  December/2013.6 Dec 2013 2013-12-01            12    2.727869
## 398  December/2013.6 Dec 2013 2013-12-01            12    2.729814
## 399  December/2013.6 Dec 2013 2013-12-01            12    2.724234
## 400  December/2013.6 Dec 2013 2013-12-01            12    2.600000
## 401  December/2013.6 Dec 2013 2013-12-01            12    2.777027
## 402  December/2013.6 Dec 2013 2013-12-01            12    2.660256
## 403  December/2013.6 Dec 2013 2013-12-01            12    2.568182
## 404  December/2013.6 Dec 2013 2013-12-01            12    2.739927
## 405  December/2013.6 Dec 2013 2013-12-01            12    2.622581
## 406  December/2013.6 Dec 2013 2013-12-01            12    2.794702
## 407  December/2013.6 Dec 2013 2013-12-01            12    2.704348
## 408  December/2013.6 Dec 2013 2013-12-01            12    2.918919
## 409  December/2013.6 Dec 2013 2013-12-01            12    2.654971
## 410  December/2013.6 Dec 2013 2013-12-01            12    2.701183
## 411  December/2013.6 Dec 2013 2013-12-01            12    1.822823
## 412  December/2013.6 Dec 2013 2013-12-01            12    1.829412
## 413  December/2013.6 Dec 2013 2013-12-01            12    2.416000
## 414  December/2013.6 Dec 2013 2013-12-01            12    2.454545
## 415  December/2013.6 Dec 2013 2013-12-01            12    1.985915
## 416  December/2013.6 Dec 2013 2013-12-01            12    1.782609
## 417  December/2013.6 Dec 2013 2013-12-01            12    2.858025
## 418  December/2013.6 Dec 2013 2013-12-01            12    2.542700
## 419  December/2013.6 Dec 2013 2013-12-01            12    1.645833
## 420  December/2013.6 Dec 2013 2013-12-01            12    2.489583
## 421  December/2013.6 Dec 2013 2013-12-01            12    2.140110
## 422  December/2013.6 Dec 2013 2013-12-01            12    2.424149
## 423  December/2013.6 Dec 2013 2013-12-01            12    1.964179
## 424  December/2013.6 Dec 2013 2013-12-01            12    1.629518
## 425  December/2013.6 Dec 2013 2013-12-01            12    2.785047
## 426  December/2013.6 Dec 2013 2013-12-01            12    2.610028
## 427  December/2013.6 Dec 2013 2013-12-01            12    1.736994
## 428  December/2013.6 Dec 2013 2013-12-01            12    1.700704
## 429  December/2013.6 Dec 2013 2013-12-01            12    1.787356
## 430  December/2013.6 Dec 2013 2013-12-01            12    2.526154
## 431  December/2013.6 Dec 2013 2013-12-01            12    2.691803
## 432  December/2013.6 Dec 2013 2013-12-01            12    2.765886
## 433  December/2013.6 Dec 2013 2013-12-01            12    2.457071
## 434  December/2013.6 Dec 2013 2013-12-01            12    2.409556
## 435  December/2013.6 Dec 2013 2013-12-01            12    1.696429
## 436  December/2013.6 Dec 2013 2013-12-01            12    2.634483
## 437  December/2013.6 Dec 2013 2013-12-01            12    2.096096
## 438  December/2013.6 Dec 2013 2013-12-01            12    2.011494
## 439  December/2013.6 Dec 2013 2013-12-01            12    2.825397
## 440  December/2013.6 Dec 2013 2013-12-01            12    2.438692
## 441  December/2013.6 Dec 2013 2013-12-01            12    2.522013
## 442  December/2013.6 Dec 2013 2013-12-01            12    2.576923
## 443  December/2013.6 Dec 2013 2013-12-01            12    2.450617
## 444  December/2013.6 Dec 2013 2013-12-01            12    1.962500
## 445  December/2013.6 Dec 2013 2013-12-01            12    2.650131
## 446  December/2013.6 Dec 2013 2013-12-01            12    2.710448
## 447  December/2013.6 Dec 2013 2013-12-01            12    2.649351
## 448  December/2013.6 Dec 2013 2013-12-01            12    1.911864
## 449  December/2013.6 Dec 2013 2013-12-01            12    2.022222
## 450  December/2013.6 Dec 2013 2013-12-01            12    2.777090
## 451  December/2013.6 Dec 2013 2013-12-01            12    1.783699
## 452  December/2013.6 Dec 2013 2013-12-01            12    2.027397
## 453  December/2013.6 Dec 2013 2013-12-01            12    2.808176
## 454  December/2013.6 Dec 2013 2013-12-01            12    2.557545
## 455  December/2013.6 Dec 2013 2013-12-01            12    2.177419
## 456  December/2013.6 Dec 2013 2013-12-01            12    2.489933
## 457  December/2013.6 Dec 2013 2013-12-01            12    2.529255
## 458  December/2013.6 Dec 2013 2013-12-01            12    1.708709
## 459  December/2013.6 Dec 2013 2013-12-01            12    2.654639
## 460  December/2013.6 Dec 2013 2013-12-01            12    2.790634
## 461  December/2013.6 Dec 2013 2013-12-01            12    2.622024
## 462  December/2013.6 Dec 2013 2013-12-01            12    2.716088
## 463  December/2013.6 Dec 2013 2013-12-01            12    2.671010
## 464  December/2013.6 Dec 2013 2013-12-01            12    2.608466
## 465  December/2013.6 Dec 2013 2013-12-01            12    1.575000
## 466  December/2013.6 Dec 2013 2013-12-01            12    2.710714
## 467  December/2013.6 Dec 2013 2013-12-01            12    2.583333
## 468  December/2013.6 Dec 2013 2013-12-01            12    2.558642
## 469  December/2013.6 Dec 2013 2013-12-01            12    2.760000
## 470  December/2013.6 Dec 2013 2013-12-01            12    1.746479
## 471  December/2013.6 Dec 2013 2013-12-01            12    2.574413
## 472  December/2013.6 Dec 2013 2013-12-01            12    1.714286
## 473  December/2013.6 Dec 2013 2013-12-01            12    2.646865
## 474  December/2013.6 Dec 2013 2013-12-01            12    2.641711
## 475  December/2013.6 Dec 2013 2013-12-01            12    2.414474
## 476  December/2013.6 Dec 2013 2013-12-01            12    2.624585
## 477  December/2013.6 Dec 2013 2013-12-01            12    2.622222
## 478  December/2013.6 Dec 2013 2013-12-01            12    1.688525
## 479  December/2013.6 Dec 2013 2013-12-01            12    1.893238
## 480  December/2013.6 Dec 2013 2013-12-01            12    2.507042
## 481  December/2013.6 Dec 2013 2013-12-01            12    2.457944
## 482  December/2013.6 Dec 2013 2013-12-01            12    2.570997
## 483  December/2013.6 Dec 2013 2013-12-01            12    2.701538
## 484  December/2013.6 Dec 2013 2013-12-01            12    2.712375
## 485  December/2013.6 Dec 2013 2013-12-01            12    2.592262
## 486  December/2013.6 Dec 2013 2013-12-01            12    2.626140
## 487  December/2013.6 Dec 2013 2013-12-01            12    2.651282
## 488  December/2013.6 Dec 2013 2013-12-01            12    2.749311
## 489  December/2013.6 Dec 2013 2013-12-01            12    2.799410
## 490  December/2013.6 Dec 2013 2013-12-01            12    2.856230
## 491  December/2013.6 Dec 2013 2013-12-01            12    2.536193
## 492  December/2013.6 Dec 2013 2013-12-01            12    2.622419
## 493  December/2013.6 Dec 2013 2013-12-01            12    1.634058
## 494  December/2013.6 Dec 2013 2013-12-01            12    2.597884
## 495  December/2013.6 Dec 2013 2013-12-01            12    2.793651
## 496  December/2013.6 Dec 2013 2013-12-01            12    2.880137
## 497  December/2013.6 Dec 2013 2013-12-01            12    2.778816
## 498  December/2013.6 Dec 2013 2013-12-01            12    2.718182
## 499  December/2013.6 Dec 2013 2013-12-01            12    2.565460
## 500  December/2013.6 Dec 2013 2013-12-01            12    2.733108
## 501  December/2013.6 Dec 2013 2013-12-01            12    2.826705
## 502  December/2013.6 Dec 2013 2013-12-01            12    2.625418
## 503  December/2013.6 Dec 2013 2013-12-01            12    2.652174
## 504  December/2013.6 Dec 2013 2013-12-01            12    2.607345
## 505  December/2013.6 Dec 2013 2013-12-01            12    2.562092
## 506  December/2013.6 Dec 2013 2013-12-01            12    2.741538
## 507  December/2013.6 Dec 2013 2013-12-01            12    2.705329
## 508  December/2013.6 Dec 2013 2013-12-01            12    2.906433
## 509  December/2013.6 Dec 2013 2013-12-01            12    2.959410
## 510  December/2013.6 Dec 2013 2013-12-01            12    2.558360
## 511  December/2013.6 Dec 2013 2013-12-01            12    2.585443
## 512  December/2013.6 Dec 2013 2013-12-01            12    2.664835
## 513  December/2013.6 Dec 2013 2013-12-01            12    2.821918
## 514  December/2013.6 Dec 2013 2013-12-01            12    2.758842
## 515  December/2013.6 Dec 2013 2013-12-01            12    2.895470
## 516  December/2013.6 Dec 2013 2013-12-01            12    2.917808
## 517  December/2013.6 Dec 2013 2013-12-01            12    2.733696
## 518  December/2013.6 Dec 2013 2013-12-01            12    2.746356
## 519  December/2013.6 Dec 2013 2013-12-01            12    2.657051
## 520  December/2013.6 Dec 2013 2013-12-01            12    2.579125
## 521  December/2013.6 Dec 2013 2013-12-01            12    2.870748
## 522  December/2013.6 Dec 2013 2013-12-01            12    2.771987
## 523  December/2013.6 Dec 2013 2013-12-01            12    2.579288
## 524  December/2013.6 Dec 2013 2013-12-01            12    2.697674
## 525  December/2013.6 Dec 2013 2013-12-01            12    2.735294
## 526  December/2013.6 Dec 2013 2013-12-01            12    2.915441
## 527  December/2013.6 Dec 2013 2013-12-01            12    2.663934
## 528  December/2013.6 Dec 2013 2013-12-01            12    2.774648
## 529  December/2013.6 Dec 2013 2013-12-01            12    2.919732
## 530  December/2013.6 Dec 2013 2013-12-01            12    2.902027
## 531  December/2013.6 Dec 2013 2013-12-01            12    2.752613
## 532  December/2013.6 Dec 2013 2013-12-01            12    2.730263
## 533  December/2013.6 Dec 2013 2013-12-01            12    2.735119
## 534  December/2013.6 Dec 2013 2013-12-01            12    2.835766
## 535  December/2013.6 Dec 2013 2013-12-01            12    2.655977
## 536  December/2013.6 Dec 2013 2013-12-01            12    2.722222
## 537  December/2013.6 Dec 2013 2013-12-01            12    2.563218
## 538  December/2013.6 Dec 2013 2013-12-01            12    2.688623
## 539  December/2013.6 Dec 2013 2013-12-01            12    2.537313
## 540  December/2013.6 Dec 2013 2013-12-01            12    2.607143
## 541  December/2013.6 Dec 2013 2013-12-01            12    2.542484
## 542  December/2013.6 Dec 2013 2013-12-01            12    2.408602
## 543  December/2013.6 Dec 2013 2013-12-01            12    2.768025
## 544  December/2013.6 Dec 2013 2013-12-01            12    2.843206
## 545  December/2013.6 Dec 2013 2013-12-01            12    2.672783
## 546  December/2013.6 Dec 2013 2013-12-01            12    2.763636
## 547  December/2013.6 Dec 2013 2013-12-01            12    3.316456
## 548  December/2013.6 Dec 2013 2013-12-01            12    2.403955
## 549  December/2013.6 Dec 2013 2013-12-01            12    2.426702
## 550  December/2013.6 Dec 2013 2013-12-01            12    2.558219
## 551  December/2013.6 Dec 2013 2013-12-01            12    2.488599
## 552  December/2013.6 Dec 2013 2013-12-01            12    2.584270
## 553  December/2013.6 Dec 2013 2013-12-01            12    2.828571
## 554  December/2013.6 Dec 2013 2013-12-01            12    2.731959
## 555  December/2013.6 Dec 2013 2013-12-01            12    2.642202
## 556  December/2013.6 Dec 2013 2013-12-01            12    2.916667
## 557  December/2013.6 Dec 2013 2013-12-01            12    2.373832
## 558  December/2013.6 Dec 2013 2013-12-01            12    2.532258
## 559  December/2013.6 Dec 2013 2013-12-01            12    2.768519
## 560  December/2013.6 Dec 2013 2013-12-01            12    2.548476
## 561  December/2013.6 Dec 2013 2013-12-01            12    2.847518
## 562  December/2013.6 Dec 2013 2013-12-01            12    2.665574
## 563  December/2013.6 Dec 2013 2013-12-01            12    2.397626
## 564  December/2013.6 Dec 2013 2013-12-01            12    2.632867
## 565  December/2013.6 Dec 2013 2013-12-01            12    2.568807
## 566  December/2013.6 Dec 2013 2013-12-01            12    2.691589
## 567  December/2013.6 Dec 2013 2013-12-01            12    2.494737
## 568  December/2013.6 Dec 2013 2013-12-01            12    2.887755
## 569  December/2013.6 Dec 2013 2013-12-01            12    2.564356
## 570  December/2013.6 Dec 2013 2013-12-01            12    2.479224
## 571  December/2013.6 Dec 2013 2013-12-01            12    2.697509
## 572  December/2013.6 Dec 2013 2013-12-01            12    2.479310
## 573  December/2013.6 Dec 2013 2013-12-01            12    2.797101
## 574  December/2013.6 Dec 2013 2013-12-01            12    2.774603
## 575  December/2013.6 Dec 2013 2013-12-01            12    2.542373
## 576  December/2013.6 Dec 2013 2013-12-01            12    2.430199
## 577  December/2013.6 Dec 2013 2013-12-01            12    2.636364
## 578  December/2013.6 Dec 2013 2013-12-01            12    2.605442
## 579  December/2013.6 Dec 2013 2013-12-01            12    2.511696
## 580  December/2013.6 Dec 2013 2013-12-01            12    2.445355
## 581  December/2013.6 Dec 2013 2013-12-01            12    2.395349
## 582  December/2013.6 Dec 2013 2013-12-01            12    2.549296
## 583  December/2013.6 Dec 2013 2013-12-01            12    2.762058
## 584  December/2013.6 Dec 2013 2013-12-01            12    2.639731
## 585  December/2013.6 Dec 2013 2013-12-01            12    2.550955
## 586  December/2013.6 Dec 2013 2013-12-01            12    2.431694
## 587  December/2013.6 Dec 2013 2013-12-01            12    2.675497
## 588  December/2013.6 Dec 2013 2013-12-01            12    2.405488
## 589  December/2013.6 Dec 2013 2013-12-01            12    2.584527
## 590  December/2013.6 Dec 2013 2013-12-01            12    2.446108
## 591  December/2013.6 Dec 2013 2013-12-01            12    2.848138
## 592  December/2013.6 Dec 2013 2013-12-01            12    2.761194
## 593  December/2013.6 Dec 2013 2013-12-01            12    2.662651
## 594  December/2013.6 Dec 2013 2013-12-01            12    3.078947
## 595  December/2013.6 Dec 2013 2013-12-01            12    2.394203
## 596  December/2013.6 Dec 2013 2013-12-01            12    2.916667
## 597  December/2013.6 Dec 2013 2013-12-01            12    2.670330
## 598  December/2013.6 Dec 2013 2013-12-01            12    2.385075
## 599  December/2013.6 Dec 2013 2013-12-01            12    2.546392
## 600  December/2013.6 Dec 2013 2013-12-01            12    2.377465
## 601  December/2013.6 Dec 2013 2013-12-01            12    3.013559
## 602  December/2013.6 Dec 2013 2013-12-01            12    2.425414
## 603  December/2013.6 Dec 2013 2013-12-01            12    2.474576
## 604  December/2013.6 Dec 2013 2013-12-01            12    2.539432
## 605  December/2013.6 Dec 2013 2013-12-01            12    2.562701
## 606  December/2013.6 Dec 2013 2013-12-01            12    2.539735
## 607  December/2013.6 Dec 2013 2013-12-01            12    2.805732
## 608  December/2013.6 Dec 2013 2013-12-01            12    2.627451
## 609  December/2013.6 Dec 2013 2013-12-01            12    2.473520
## 610  December/2013.6 Dec 2013 2013-12-01            12    2.743506
## 611  December/2013.6 Dec 2013 2013-12-01            12    2.660969
## 612  December/2013.6 Dec 2013 2013-12-01            12    2.431884
## 613  December/2013.6 Dec 2013 2013-12-01            12    2.926174
## 614  December/2013.6 Dec 2013 2013-12-01            12    2.829132
## 615  December/2013.6 Dec 2013 2013-12-01            12    2.386819
## 616  December/2013.6 Dec 2013 2013-12-01            12    2.647059
## 617  December/2013.6 Dec 2013 2013-12-01            12    2.748227
## 618  December/2013.6 Dec 2013 2013-12-01            12    2.543253
## 619  December/2013.6 Dec 2013 2013-12-01            12    2.583090
## 620  December/2013.6 Dec 2013 2013-12-01            12    2.917431
## 621  December/2013.6 Dec 2013 2013-12-01            12    2.629758
## 622  December/2013.6 Dec 2013 2013-12-01            12    2.870000
## 623  December/2013.6 Dec 2013 2013-12-01            12    2.430723
## 624  December/2013.6 Dec 2013 2013-12-01            12    2.581994
## 625  December/2013.6 Dec 2013 2013-12-01            12    2.480836
## 626  December/2013.6 Dec 2013 2013-12-01            12    2.895105
## 627  December/2013.6 Dec 2013 2013-12-01            12    2.137931
## 628  December/2013.6 Dec 2013 2013-12-01            12    2.476190
## 629  December/2013.6 Dec 2013 2013-12-01            12    2.504587
## 630  December/2013.6 Dec 2013 2013-12-01            12    2.580838
## 631  December/2013.6 Dec 2013 2013-12-01            12    3.034364
## 632  December/2013.6 Dec 2013 2013-12-01            12    2.512968
## 633  December/2013.6 Dec 2013 2013-12-01            12    2.810811
## 634  December/2013.6 Dec 2013 2013-12-01            12    2.639344
## 635  December/2013.6 Dec 2013 2013-12-01            12    2.750751
## 636  December/2013.6 Dec 2013 2013-12-01            12    2.728707
## 637  December/2013.6 Dec 2013 2013-12-01            12    2.597403
## 638  December/2013.6 Dec 2013 2013-12-01            12    2.679868
## 639  December/2013.6 Dec 2013 2013-12-01            12    2.869159
## 640  December/2013.6 Dec 2013 2013-12-01            12    2.663194
## 641  December/2013.6 Dec 2013 2013-12-01            12    2.508242
## 642  December/2013.6 Dec 2013 2013-12-01            12    2.792388
## 643  December/2013.6 Dec 2013 2013-12-01            12    2.523490
## 644  December/2013.6 Dec 2013 2013-12-01            12    2.663082
## 645  December/2013.6 Dec 2013 2013-12-01            12    2.589404
## 646  December/2013.6 Dec 2013 2013-12-01            12    2.906040
## 647  December/2013.6 Dec 2013 2013-12-01            12    2.719298
## 648  December/2013.6 Dec 2013 2013-12-01            12    2.548495
## 649  December/2013.6 Dec 2013 2013-12-01            12    2.702797
## 650  December/2013.6 Dec 2013 2013-12-01            12    2.480114
## 651  December/2013.6 Dec 2013 2013-12-01            12    2.369697
## 652  December/2013.6 Dec 2013 2013-12-01            12    2.908012
## 653  December/2013.6 Dec 2013 2013-12-01            12    2.654237
## 654  December/2013.6 Dec 2013 2013-12-01            12    2.466238
## 655  December/2013.6 Dec 2013 2013-12-01            12    2.473684
## 656  December/2013.6 Dec 2013 2013-12-01            12    2.676768
## 657  December/2013.6 Dec 2013 2013-12-01            12    2.836879
## 658  December/2013.6 Dec 2013 2013-12-01            12    2.611650
## 659  December/2013.6 Dec 2013 2013-12-01            12    2.640569
## 660  December/2013.6 Dec 2013 2013-12-01            12    2.841509
## 661  December/2013.6 Dec 2013 2013-12-01            12    2.817891
## 662  December/2013.6 Dec 2013 2013-12-01            12    2.400000
## 663  December/2013.6 Dec 2013 2013-12-01            12    2.577844
## 664  December/2013.6 Dec 2013 2013-12-01            12    2.642458
## 665  December/2013.6 Dec 2013 2013-12-01            12    1.961538
## 666  December/2013.6 Dec 2013 2013-12-01            12    2.551237
## 667  December/2013.6 Dec 2013 2013-12-01            12    2.514667
## 668  December/2013.6 Dec 2013 2013-12-01            12    2.722045
## 669  December/2013.6 Dec 2013 2013-12-01            12    2.642105
## 670  December/2013.6 Dec 2013 2013-12-01            12    2.566563
## 671  December/2013.6 Dec 2013 2013-12-01            12    2.679012
## 672  December/2013.6 Dec 2013 2013-12-01            12    2.711974
## 673  December/2013.6 Dec 2013 2013-12-01            12    2.741259
## 674  December/2013.6 Dec 2013 2013-12-01            12    2.877551
## 675  December/2013.6 Dec 2013 2013-12-01            12    2.534884
## 676  December/2013.6 Dec 2013 2013-12-01            12    2.693069
## 677  December/2013.6 Dec 2013 2013-12-01            12    2.828986
## 678  December/2013.6 Dec 2013 2013-12-01            12    2.618234
## 679  December/2013.6 Dec 2013 2013-12-01            12    2.018519
## 680  December/2013.6 Dec 2013 2013-12-01            12    2.714754
## 681  December/2013.6 Dec 2013 2013-12-01            12    2.648094
## 682  December/2013.6 Dec 2013 2013-12-01            12    2.627976
## 683  December/2013.6 Dec 2013 2013-12-01            12    2.985765
## 684  December/2013.6 Dec 2013 2013-12-01            12    2.855634
## 685  December/2013.6 Dec 2013 2013-12-01            12    2.703072
## 686  December/2013.6 Dec 2013 2013-12-01            12    2.661850
## 687  December/2013.6 Dec 2013 2013-12-01            12    2.672269
## 688  December/2013.6 Dec 2013 2013-12-01            12    2.769634
## 689  December/2013.6 Dec 2013 2013-12-01            12    2.633690
## 690  December/2013.6 Dec 2013 2013-12-01            12    2.744417
## 691  December/2013.6 Dec 2013 2013-12-01            12    2.787546
## 692  December/2013.6 Dec 2013 2013-12-01            12    2.653125
## 693  December/2013.6 Dec 2013 2013-12-01            12    2.911565
## 694  December/2013.6 Dec 2013 2013-12-01            12    2.729814
## 695  December/2013.6 Dec 2013 2013-12-01            12    2.647436
## 696  December/2013.6 Dec 2013 2013-12-01            12    1.680934
## 697  December/2013.6 Dec 2013 2013-12-01            12    2.759777
## 698  December/2013.6 Dec 2013 2013-12-01            12    3.163043
## 699  December/2013.6 Dec 2013 2013-12-01            12    2.751656
## 700  December/2013.6 Dec 2013 2013-12-01            12    2.649231
## 701  December/2013.6 Dec 2013 2013-12-01            12    1.982639
## 702  December/2013.6 Dec 2013 2013-12-01            12    2.955172
## 703  December/2013.6 Dec 2013 2013-12-01            12    1.860759
## 704  December/2013.6 Dec 2013 2013-12-01            12    3.005865
## 705       April/2014 Apr 2014 2014-04-01             4    2.594118
## 706       April/2014 Apr 2014 2014-04-01             4    2.665468
## 707       April/2014 Apr 2014 2014-04-01             4    2.680921
## 708       April/2014 Apr 2014 2014-04-01             4    2.652459
## 709       April/2014 Apr 2014 2014-04-01             4    2.796296
## 710       April/2014 Apr 2014 2014-04-01             4    2.606557
## 711       April/2014 Apr 2014 2014-04-01             4    2.780980
## 712       April/2014 Apr 2014 2014-04-01             4    2.599448
## 713       April/2014 Apr 2014 2014-04-01             4    2.944056
## 714       April/2014 Apr 2014 2014-04-01             4    2.833846
## 715       April/2014 Apr 2014 2014-04-01             4    2.729167
## 716       April/2014 Apr 2014 2014-04-01             4    2.754545
## 717       April/2014 Apr 2014 2014-04-01             4    2.664516
## 718       April/2014 Apr 2014 2014-04-01             4    2.508361
## 719       April/2014 Apr 2014 2014-04-01             4    2.699405
## 720       April/2014 Apr 2014 2014-04-01             4    2.802083
## 721       April/2014 Apr 2014 2014-04-01             4    2.643564
## 722       April/2014 Apr 2014 2014-04-01             4    2.564784
## 723       April/2014 Apr 2014 2014-04-01             4    2.638365
## 724       April/2014 Apr 2014 2014-04-01             4    2.603399
## 725       April/2014 Apr 2014 2014-04-01             4    2.672794
## 726       April/2014 Apr 2014 2014-04-01             4    1.830040
## 727       April/2014 Apr 2014 2014-04-01             4    2.611940
## 728       April/2014 Apr 2014 2014-04-01             4    2.521866
## 729       April/2014 Apr 2014 2014-04-01             4    2.795918
## 730       April/2014 Apr 2014 2014-04-01             4    2.707006
## 731       April/2014 Apr 2014 2014-04-01             4    2.663842
## 732       April/2014 Apr 2014 2014-04-01             4    1.806647
## 733       April/2014 Apr 2014 2014-04-01             4    2.570175
## 734       April/2014 Apr 2014 2014-04-01             4    2.947735
## 735       April/2014 Apr 2014 2014-04-01             4    2.636888
## 736       April/2014 Apr 2014 2014-04-01             4    2.766467
## 737       April/2014 Apr 2014 2014-04-01             4    2.800000
## 738       April/2014 Apr 2014 2014-04-01             4    2.694737
## 739       April/2014 Apr 2014 2014-04-01             4    2.693548
## 740       April/2014 Apr 2014 2014-04-01             4    2.771605
## 741       April/2014 Apr 2014 2014-04-01             4    2.713805
## 742       April/2014 Apr 2014 2014-04-01             4    2.699324
## 743       April/2014 Apr 2014 2014-04-01             4    2.639053
## 744       April/2014 Apr 2014 2014-04-01             4    2.870175
## 745       April/2014 Apr 2014 2014-04-01             4    2.581315
## 746       April/2014 Apr 2014 2014-04-01             4    2.699405
## 747       April/2014 Apr 2014 2014-04-01             4    2.720395
## 748       April/2014 Apr 2014 2014-04-01             4    2.754045
## 749       April/2014 Apr 2014 2014-04-01             4    2.631034
## 750       April/2014 Apr 2014 2014-04-01             4    2.589443
## 751       April/2014 Apr 2014 2014-04-01             4    2.595318
## 752       April/2014 Apr 2014 2014-04-01             4    2.795367
## 753       April/2014 Apr 2014 2014-04-01             4    2.808874
## 754       April/2014 Apr 2014 2014-04-01             4    2.534535
## 755       April/2014 Apr 2014 2014-04-01             4    2.686335
## 756       April/2014 Apr 2014 2014-04-01             4    2.531088
## 757       April/2014 Apr 2014 2014-04-01             4    2.923567
## 758       April/2014 Apr 2014 2014-04-01             4    1.727545
## 759       April/2014 Apr 2014 2014-04-01             4    1.753968
## 760       April/2014 Apr 2014 2014-04-01             4    1.610738
## 761       April/2014 Apr 2014 2014-04-01             4    2.043353
## 762       April/2014 Apr 2014 2014-04-01             4    1.653430
## 763       April/2014 Apr 2014 2014-04-01             4    1.525547
## 764       April/2014 Apr 2014 2014-04-01             4    1.933908
## 765       April/2014 Apr 2014 2014-04-01             4    2.655518
## 766       April/2014 Apr 2014 2014-04-01             4    2.629412
## 767       April/2014 Apr 2014 2014-04-01             4    2.793814
## 768       April/2014 Apr 2014 2014-04-01             4    2.572755
## 769       April/2014 Apr 2014 2014-04-01             4    1.541958
## 770       April/2014 Apr 2014 2014-04-01             4    1.623269
## 771       April/2014 Apr 2014 2014-04-01             4    1.598513
## 772       April/2014 Apr 2014 2014-04-01             4    1.771930
## 773       April/2014 Apr 2014 2014-04-01             4    2.501348
## 774       April/2014 Apr 2014 2014-04-01             4    1.566092
## 775       April/2014 Apr 2014 2014-04-01             4    1.685619
## 776       April/2014 Apr 2014 2014-04-01             4    2.454006
## 777       April/2014 Apr 2014 2014-04-01             4    1.887417
## 778       April/2014 Apr 2014 2014-04-01             4    2.501348
## 779       April/2014 Apr 2014 2014-04-01             4    1.635135
## 780       April/2014 Apr 2014 2014-04-01             4    1.429054
## 781       April/2014 Apr 2014 2014-04-01             4    2.442822
## 782       April/2014 Apr 2014 2014-04-01             4    1.525000
## 783       April/2014 Apr 2014 2014-04-01             4    2.478142
## 784       April/2014 Apr 2014 2014-04-01             4    2.473988
## 785       April/2014 Apr 2014 2014-04-01             4    1.542857
## 786       April/2014 Apr 2014 2014-04-01             4    1.498233
## 787       April/2014 Apr 2014 2014-04-01             4    1.421053
## 788       April/2014 Apr 2014 2014-04-01             4    2.552941
## 789       April/2014 Apr 2014 2014-04-01             4    2.597938
## 790       April/2014 Apr 2014 2014-04-01             4    1.709459
## 791       April/2014 Apr 2014 2014-04-01             4    2.494505
## 792       April/2014 Apr 2014 2014-04-01             4    2.622807
## 793       April/2014 Apr 2014 2014-04-01             4    1.561514
## 794       April/2014 Apr 2014 2014-04-01             4    2.086053
## 795       April/2014 Apr 2014 2014-04-01             4    1.520446
## 796       April/2014 Apr 2014 2014-04-01             4    2.393782
## 797       April/2014 Apr 2014 2014-04-01             4    1.479624
## 798       April/2014 Apr 2014 2014-04-01             4    2.359649
## 799       April/2014 Apr 2014 2014-04-01             4    1.779935
## 800       April/2014 Apr 2014 2014-04-01             4    1.724739
## 801       April/2014 Apr 2014 2014-04-01             4    2.667722
## 802       April/2014 Apr 2014 2014-04-01             4    1.567766
## 803       April/2014 Apr 2014 2014-04-01             4    2.680272
## 804       April/2014 Apr 2014 2014-04-01             4    2.629820
## 805       April/2014 Apr 2014 2014-04-01             4    2.749319
## 806       April/2014 Apr 2014 2014-04-01             4    1.714286
## 807       April/2014 Apr 2014 2014-04-01             4    1.667845
## 808       April/2014 Apr 2014 2014-04-01             4    2.785965
## 809       April/2014 Apr 2014 2014-04-01             4    2.619565
## 810       April/2014 Apr 2014 2014-04-01             4    1.842975
## 811       April/2014 Apr 2014 2014-04-01             4    2.782090
## 812       April/2014 Apr 2014 2014-04-01             4    2.674740
## 813       April/2014 Apr 2014 2014-04-01             4    2.824138
## 814       April/2014 Apr 2014 2014-04-01             4    2.693498
## 815       April/2014 Apr 2014 2014-04-01             4    2.726727
## 816       April/2014 Apr 2014 2014-04-01             4    2.648387
## 817       April/2014 Apr 2014 2014-04-01             4    2.686649
## 818       April/2014 Apr 2014 2014-04-01             4    2.555215
## 819       April/2014 Apr 2014 2014-04-01             4    2.706667
## 820       April/2014 Apr 2014 2014-04-01             4    2.840391
## 821       April/2014 Apr 2014 2014-04-01             4    2.637771
## 822       April/2014 Apr 2014 2014-04-01             4    2.525641
## 823       April/2014 Apr 2014 2014-04-01             4    2.730887
## 824       April/2014 Apr 2014 2014-04-01             4    2.863481
## 825       April/2014 Apr 2014 2014-04-01             4    2.827839
## 826       April/2014 Apr 2014 2014-04-01             4    2.711246
## 827       April/2014 Apr 2014 2014-04-01             4    1.743056
## 828       April/2014 Apr 2014 2014-04-01             4    2.621993
## 829       April/2014 Apr 2014 2014-04-01             4    2.598160
## 830       April/2014 Apr 2014 2014-04-01             4    2.752475
## 831       April/2014 Apr 2014 2014-04-01             4    2.630682
## 832       April/2014 Apr 2014 2014-04-01             4    1.840000
## 833       April/2014 Apr 2014 2014-04-01             4    2.665653
## 834       April/2014 Apr 2014 2014-04-01             4    2.934211
## 835       April/2014 Apr 2014 2014-04-01             4    2.456338
## 836       April/2014 Apr 2014 2014-04-01             4    2.722071
## 837       April/2014 Apr 2014 2014-04-01             4    2.523810
## 838       April/2014 Apr 2014 2014-04-01             4    2.747720
## 839       April/2014 Apr 2014 2014-04-01             4    1.581940
## 840       April/2014 Apr 2014 2014-04-01             4    2.727586
## 841       April/2014 Apr 2014 2014-04-01             4    2.772109
## 842       April/2014 Apr 2014 2014-04-01             4    2.756579
## 843       April/2014 Apr 2014 2014-04-01             4    2.770227
## 844       April/2014 Apr 2014 2014-04-01             4    2.803175
## 845       April/2014 Apr 2014 2014-04-01             4    2.472789
## 846       April/2014 Apr 2014 2014-04-01             4    2.428571
## 847       April/2014 Apr 2014 2014-04-01             4    2.598662
## 848       April/2014 Apr 2014 2014-04-01             4    1.750000
## 849       April/2014 Apr 2014 2014-04-01             4    2.727829
## 850       April/2014 Apr 2014 2014-04-01             4    2.944444
## 851       April/2014 Apr 2014 2014-04-01             4    2.727575
## 852       April/2014 Apr 2014 2014-04-01             4    2.723810
## 853       April/2014 Apr 2014 2014-04-01             4    2.631250
## 854       April/2014 Apr 2014 2014-04-01             4    2.806916
## 855       April/2014 Apr 2014 2014-04-01             4    2.870629
## 856       April/2014 Apr 2014 2014-04-01             4    2.648387
## 857       April/2014 Apr 2014 2014-04-01             4    2.727829
## 858       April/2014 Apr 2014 2014-04-01             4    2.785467
## 859       April/2014 Apr 2014 2014-04-01             4    2.642623
## 860       April/2014 Apr 2014 2014-04-01             4    2.725948
## 861       April/2014 Apr 2014 2014-04-01             4    2.710914
## 862       April/2014 Apr 2014 2014-04-01             4    2.913495
## 863       April/2014 Apr 2014 2014-04-01             4    2.830000
## 864       April/2014 Apr 2014 2014-04-01             4    2.640669
## 865       April/2014 Apr 2014 2014-04-01             4    2.741742
## 866       April/2014 Apr 2014 2014-04-01             4    2.567308
## 867       April/2014 Apr 2014 2014-04-01             4    2.916667
## 868       April/2014 Apr 2014 2014-04-01             4    2.788690
## 869       April/2014 Apr 2014 2014-04-01             4    1.882812
## 870       April/2014 Apr 2014 2014-04-01             4    2.729167
## 871       April/2014 Apr 2014 2014-04-01             4    1.947195
## 872       April/2014 Apr 2014 2014-04-01             4    2.046610
## 873       April/2014 Apr 2014 2014-04-01             4    1.876000
## 874       April/2014 Apr 2014 2014-04-01             4    2.696594
## 875       April/2014 Apr 2014 2014-04-01             4    2.608414
## 876       April/2014 Apr 2014 2014-04-01             4    1.840989
## 877       April/2014 Apr 2014 2014-04-01             4    2.116279
## 878       April/2014 Apr 2014 2014-04-01             4    2.826667
## 879       April/2014 Apr 2014 2014-04-01             4    2.182143
## 880       April/2014 Apr 2014 2014-04-01             4    2.625749
## 881       April/2014 Apr 2014 2014-04-01             4    2.792388
## 882       April/2014 Apr 2014 2014-04-01             4    1.651341
## 883       April/2014 Apr 2014 2014-04-01             4    2.712375
## 884       April/2014 Apr 2014 2014-04-01             4    2.620787
## 885       April/2014 Apr 2014 2014-04-01             4    1.678112
## 886       April/2014 Apr 2014 2014-04-01             4    2.870307
## 887       April/2014 Apr 2014 2014-04-01             4    2.766234
## 888       April/2014 Apr 2014 2014-04-01             4    2.041199
## 889       April/2014 Apr 2014 2014-04-01             4    2.518293
## 890       April/2014 Apr 2014 2014-04-01             4    2.674121
## 891       April/2014 Apr 2014 2014-04-01             4    2.492260
## 892       April/2014 Apr 2014 2014-04-01             4    2.778157
## 893       April/2014 Apr 2014 2014-04-01             4    1.585284
## 894       April/2014 Apr 2014 2014-04-01             4    2.617329
## 895       April/2014 Apr 2014 2014-04-01             4    1.838346
## 896       April/2014 Apr 2014 2014-04-01             4    2.735395
## 897       April/2014 Apr 2014 2014-04-01             4    2.584665
## 898       April/2014 Apr 2014 2014-04-01             4    2.174074
## 899       April/2014 Apr 2014 2014-04-01             4    1.769759
## 900       April/2014 Apr 2014 2014-04-01             4    1.680162
## 901       April/2014 Apr 2014 2014-04-01             4    1.900709
## 902       April/2014 Apr 2014 2014-04-01             4    1.608553
## 903       April/2014 Apr 2014 2014-04-01             4    2.631250
## 904       April/2014 Apr 2014 2014-04-01             4    2.763473
## 905       April/2014 Apr 2014 2014-04-01             4    1.742537
## 906       April/2014 Apr 2014 2014-04-01             4    2.671480
## 907       April/2014 Apr 2014 2014-04-01             4    2.649718
## 908       April/2014 Apr 2014 2014-04-01             4    2.603604
## 909       April/2014 Apr 2014 2014-04-01             4    1.599174
## 910       April/2014 Apr 2014 2014-04-01             4    2.679365
## 911       April/2014 Apr 2014 2014-04-01             4    2.439560
## 912       April/2015 Apr 2015 2015-04-01             4    1.553191
## 913       April/2015 Apr 2015 2015-04-01             4    1.794574
## 914       April/2015 Apr 2015 2015-04-01             4    1.683398
## 915       April/2015 Apr 2015 2015-04-01             4    2.583554
## 916       April/2015 Apr 2015 2015-04-01             4    1.864151
## 917       April/2015 Apr 2015 2015-04-01             4    1.619377
## 918       April/2015 Apr 2015 2015-04-01             4    2.812903
## 919       April/2015 Apr 2015 2015-04-01             4    2.130597
## 920       April/2015 Apr 2015 2015-04-01             4    1.698690
## 921       April/2015 Apr 2015 2015-04-01             4    1.692790
## 922       April/2015 Apr 2015 2015-04-01             4    1.761404
## 923       April/2015 Apr 2015 2015-04-01             4    1.712166
## 924       April/2015 Apr 2015 2015-04-01             4    1.775701
## 925       April/2015 Apr 2015 2015-04-01             4    1.655844
## 926       April/2015 Apr 2015 2015-04-01             4    2.705502
## 927       April/2015 Apr 2015 2015-04-01             4    1.735593
## 928       April/2015 Apr 2015 2015-04-01             4    1.697211
## 929       April/2015 Apr 2015 2015-04-01             4    1.606272
## 930       April/2015 Apr 2015 2015-04-01             4    2.675585
## 931       April/2015 Apr 2015 2015-04-01             4    1.841270
## 932       April/2015 Apr 2015 2015-04-01             4    1.714801
## 933       April/2015 Apr 2015 2015-04-01             4    2.615917
## 934       April/2015 Apr 2015 2015-04-01             4    1.547368
## 935       April/2015 Apr 2015 2015-04-01             4    2.511628
## 936       April/2015 Apr 2015 2015-04-01             4    2.575221
## 937       April/2015 Apr 2015 2015-04-01             4    2.644295
## 938       April/2015 Apr 2015 2015-04-01             4    1.711111
## 939       April/2015 Apr 2015 2015-04-01             4    1.730612
## 940       April/2015 Apr 2015 2015-04-01             4    1.858209
## 941       April/2015 Apr 2015 2015-04-01             4    2.596774
## 942       April/2015 Apr 2015 2015-04-01             4    1.678233
## 943       April/2015 Apr 2015 2015-04-01             4    1.764259
## 944       April/2015 Apr 2015 2015-04-01             4    1.819923
## 945       April/2015 Apr 2015 2015-04-01             4    1.733333
## 946       April/2015 Apr 2015 2015-04-01             4    1.646865
## 947       April/2015 Apr 2015 2015-04-01             4    1.707317
## 948       April/2015 Apr 2015 2015-04-01             4    1.809524
## 949       April/2015 Apr 2015 2015-04-01             4    1.809129
## 950       April/2015 Apr 2015 2015-04-01             4    1.630705
## 951       April/2015 Apr 2015 2015-04-01             4    1.800000
## 952       April/2015 Apr 2015 2015-04-01             4    2.653595
## 953       April/2015 Apr 2015 2015-04-01             4    1.898551
## 954       April/2015 Apr 2015 2015-04-01             4    2.561562
## 955       April/2015 Apr 2015 2015-04-01             4    1.871795
## 956       April/2015 Apr 2015 2015-04-01             4    1.603077
## 957       April/2015 Apr 2015 2015-04-01             4    2.721854
## 958       April/2015 Apr 2015 2015-04-01             4    2.614379
## 959       April/2015 Apr 2015 2015-04-01             4    1.778195
## 960       April/2015 Apr 2015 2015-04-01             4    1.829365
## 961       April/2015 Apr 2015 2015-04-01             4    1.767025
## 962       April/2015 Apr 2015 2015-04-01             4    1.811502
## 963       April/2015 Apr 2015 2015-04-01             4    2.663551
## 964       April/2015 Apr 2015 2015-04-01             4    2.703583
## 965       April/2015 Apr 2015 2015-04-01             4    2.881720
## 966       April/2015 Apr 2015 2015-04-01             4    2.731392
## 967       April/2015 Apr 2015 2015-04-01             4    2.571429
## 968       April/2015 Apr 2015 2015-04-01             4    2.547401
## 969       April/2015 Apr 2015 2015-04-01             4    2.674051
## 970       April/2015 Apr 2015 2015-04-01             4    2.574307
## 971       April/2015 Apr 2015 2015-04-01             4    2.690554
## 972       April/2015 Apr 2015 2015-04-01             4    2.636628
## 973       April/2015 Apr 2015 2015-04-01             4    2.550152
## 974       April/2015 Apr 2015 2015-04-01             4    2.934708
## 975       April/2015 Apr 2015 2015-04-01             4    2.639394
## 976       April/2015 Apr 2015 2015-04-01             4    2.433584
## 977       April/2015 Apr 2015 2015-04-01             4    2.636667
## 978       April/2015 Apr 2015 2015-04-01             4    2.668449
## 979       April/2015 Apr 2015 2015-04-01             4    2.737430
## 980       April/2015 Apr 2015 2015-04-01             4    2.689944
## 981       April/2015 Apr 2015 2015-04-01             4    2.467456
## 982       April/2015 Apr 2015 2015-04-01             4    2.681063
## 983       April/2015 Apr 2015 2015-04-01             4    2.571429
## 984       April/2015 Apr 2015 2015-04-01             4    2.573427
## 985       April/2015 Apr 2015 2015-04-01             4    2.620130
## 986       April/2015 Apr 2015 2015-04-01             4    2.705015
## 987       April/2015 Apr 2015 2015-04-01             4    2.755556
## 988       April/2015 Apr 2015 2015-04-01             4    2.946023
## 989       April/2015 Apr 2015 2015-04-01             4    2.664634
## 990       April/2015 Apr 2015 2015-04-01             4    2.616438
## 991       April/2015 Apr 2015 2015-04-01             4    2.704762
## 992       April/2015 Apr 2015 2015-04-01             4    2.731629
## 993       April/2015 Apr 2015 2015-04-01             4    2.731861
## 994       April/2015 Apr 2015 2015-04-01             4    2.667732
## 995       April/2015 Apr 2015 2015-04-01             4    2.604222
## 996       April/2015 Apr 2015 2015-04-01             4    2.664894
## 997       April/2015 Apr 2015 2015-04-01             4    2.693151
## 998       April/2015 Apr 2015 2015-04-01             4    2.656338
## 999       April/2015 Apr 2015 2015-04-01             4    2.656250
## 1000      April/2015 Apr 2015 2015-04-01             4    2.666667
## 1001      April/2015 Apr 2015 2015-04-01             4    2.552910
## 1002      April/2015 Apr 2015 2015-04-01             4    2.661442
## 1003      April/2015 Apr 2015 2015-04-01             4    2.659375
## 1004      April/2015 Apr 2015 2015-04-01             4    2.736842
## 1005      April/2015 Apr 2015 2015-04-01             4    2.638418
## 1006      April/2015 Apr 2015 2015-04-01             4    2.717105
## 1007      April/2015 Apr 2015 2015-04-01             4    2.645604
## 1008      April/2015 Apr 2015 2015-04-01             4    2.788690
## 1009      April/2015 Apr 2015 2015-04-01             4    2.541796
## 1010      April/2015 Apr 2015 2015-04-01             4    2.605333
## 1011      April/2015 Apr 2015 2015-04-01             4    2.746835
## 1012      April/2015 Apr 2015 2015-04-01             4    2.661376
## 1013      April/2015 Apr 2015 2015-04-01             4    2.730061
## 1014      April/2015 Apr 2015 2015-04-01             4    2.753247
## 1015      April/2015 Apr 2015 2015-04-01             4    2.887052
## 1016      April/2015 Apr 2015 2015-04-01             4    2.516575
## 1017      April/2015 Apr 2015 2015-04-01             4    2.796825
## 1018      April/2015 Apr 2015 2015-04-01             4    2.737003
## 1019      April/2015 Apr 2015 2015-04-01             4    2.763231
## 1020      April/2015 Apr 2015 2015-04-01             4    3.021148
## 1021      April/2015 Apr 2015 2015-04-01             4    2.567657
## 1022      April/2015 Apr 2015 2015-04-01             4    2.728395
## 1023      April/2015 Apr 2015 2015-04-01             4    2.841935
## 1024      April/2015 Apr 2015 2015-04-01             4    2.926421
## 1025      April/2015 Apr 2015 2015-04-01             4    2.556410
## 1026      April/2015 Apr 2015 2015-04-01             4    1.821538
## 1027      April/2015 Apr 2015 2015-04-01             4    2.914089
## 1028      April/2015 Apr 2015 2015-04-01             4    2.798658
## 1029      April/2015 Apr 2015 2015-04-01             4    2.813725
## 1030      April/2015 Apr 2015 2015-04-01             4    2.693182
## 1031      April/2015 Apr 2015 2015-04-01             4    2.874214
## 1032      April/2015 Apr 2015 2015-04-01             4    2.828070
## 1033      April/2015 Apr 2015 2015-04-01             4    2.755486
## 1034      April/2015 Apr 2015 2015-04-01             4    2.764120
## 1035      April/2015 Apr 2015 2015-04-01             4    2.563187
## 1036      April/2015 Apr 2015 2015-04-01             4    2.581921
## 1037      April/2015 Apr 2015 2015-04-01             4    2.813253
## 1038      April/2015 Apr 2015 2015-04-01             4    2.781538
## 1039      April/2015 Apr 2015 2015-04-01             4    2.651297
## 1040      April/2015 Apr 2015 2015-04-01             4    2.723776
## 1041      April/2015 Apr 2015 2015-04-01             4    2.027778
## 1042      April/2015 Apr 2015 2015-04-01             4    2.736232
## 1043      April/2015 Apr 2015 2015-04-01             4    2.581267
## 1044      April/2015 Apr 2015 2015-04-01             4    2.250689
## 1045      April/2015 Apr 2015 2015-04-01             4    2.750000
## 1046      April/2015 Apr 2015 2015-04-01             4    2.660714
## 1047      April/2015 Apr 2015 2015-04-01             4    2.818815
## 1048      April/2015 Apr 2015 2015-04-01             4    1.715328
## 1049      April/2015 Apr 2015 2015-04-01             4    3.048544
## 1050      April/2015 Apr 2015 2015-04-01             4    2.744262
## 1051      April/2015 Apr 2015 2015-04-01             4    2.594771
## 1052      April/2015 Apr 2015 2015-04-01             4    1.689320
## 1053      April/2015 Apr 2015 2015-04-01             4    2.682635
## 1054      April/2015 Apr 2015 2015-04-01             4    1.601974
## 1055      April/2015 Apr 2015 2015-04-01             4    1.732143
## 1056      April/2015 Apr 2015 2015-04-01             4    2.544262
## 1057      April/2015 Apr 2015 2015-04-01             4    2.509485
## 1058      April/2015 Apr 2015 2015-04-01             4    2.679894
## 1059      April/2015 Apr 2015 2015-04-01             4    1.631769
## 1060      April/2015 Apr 2015 2015-04-01             4    2.600575
## 1061      April/2015 Apr 2015 2015-04-01             4    2.591592
## 1062      April/2015 Apr 2015 2015-04-01             4    1.474048
## 1063      April/2015 Apr 2015 2015-04-01             4    2.589888
## 1064   December/2016 Dec 2016 2016-12-01            12    2.564417
## 1065   December/2016 Dec 2016 2016-12-01            12    2.743516
## 1066   December/2016 Dec 2016 2016-12-01            12    3.006472
## 1067   December/2016 Dec 2016 2016-12-01            12    2.691030
## 1068   December/2016 Dec 2016 2016-12-01            12    2.844444
## 1069   December/2016 Dec 2016 2016-12-01            12    2.539846
## 1070   December/2016 Dec 2016 2016-12-01            12    2.575198
## 1071   December/2016 Dec 2016 2016-12-01            12    2.654494
## 1072   December/2016 Dec 2016 2016-12-01            12    2.626741
## 1073   December/2016 Dec 2016 2016-12-01            12    2.635097
## 1074   December/2016 Dec 2016 2016-12-01            12    2.662207
## 1075   December/2016 Dec 2016 2016-12-01            12    2.742297
## 1076   December/2016 Dec 2016 2016-12-01            12    2.728395
## 1077   December/2016 Dec 2016 2016-12-01            12    2.710692
## 1078   December/2016 Dec 2016 2016-12-01            12    2.726994
## 1079   December/2016 Dec 2016 2016-12-01            12    2.808451
## 1080   December/2016 Dec 2016 2016-12-01            12    2.672535
## 1081   December/2016 Dec 2016 2016-12-01            12    2.609290
## 1082   December/2016 Dec 2016 2016-12-01            12    2.587432
## 1083   December/2016 Dec 2016 2016-12-01            12    2.699659
## 1084   December/2016 Dec 2016 2016-12-01            12    2.756545
## 1085   December/2016 Dec 2016 2016-12-01            12    2.749296
## 1086   December/2016 Dec 2016 2016-12-01            12    2.716463
## 1087   December/2016 Dec 2016 2016-12-01            12    2.673653
## 1088   December/2016 Dec 2016 2016-12-01            12    2.604502
## 1089   December/2016 Dec 2016 2016-12-01            12    2.528024
## 1090   December/2016 Dec 2016 2016-12-01            12    2.694006
## 1091   December/2016 Dec 2016 2016-12-01            12    2.722380
## 1092   December/2016 Dec 2016 2016-12-01            12    2.584615
## 1093   December/2016 Dec 2016 2016-12-01            12    2.687117
## 1094   December/2016 Dec 2016 2016-12-01            12    2.648936
## 1095   December/2016 Dec 2016 2016-12-01            12    2.677419
## 1096   December/2016 Dec 2016 2016-12-01            12    2.487261
## 1097   December/2016 Dec 2016 2016-12-01            12    2.639205
## 1098   December/2016 Dec 2016 2016-12-01            12    2.108911
## 1099   December/2016 Dec 2016 2016-12-01            12    2.600000
## 1100   December/2016 Dec 2016 2016-12-01            12    2.657343
## 1101   December/2016 Dec 2016 2016-12-01            12    2.632708
## 1102   December/2016 Dec 2016 2016-12-01            12    2.811502
## 1103   December/2016 Dec 2016 2016-12-01            12    2.605714
## 1104   December/2016 Dec 2016 2016-12-01            12    2.786408
## 1105   December/2016 Dec 2016 2016-12-01            12    2.640483
## 1106   December/2016 Dec 2016 2016-12-01            12    2.669697
## 1107   December/2016 Dec 2016 2016-12-01            12    1.603279
## 1108   December/2016 Dec 2016 2016-12-01            12    2.785340
## 1109   December/2016 Dec 2016 2016-12-01            12    2.794872
## 1110   December/2016 Dec 2016 2016-12-01            12    2.299611
## 1111   December/2016 Dec 2016 2016-12-01            12    2.700326
## 1112   December/2016 Dec 2016 2016-12-01            12    2.719444
## 1113   December/2016 Dec 2016 2016-12-01            12    2.573099
## 1114   December/2016 Dec 2016 2016-12-01            12    2.530405
## 1115   December/2016 Dec 2016 2016-12-01            12    3.076412
## 1116   December/2016 Dec 2016 2016-12-01            12    2.856688
## 1117   December/2016 Dec 2016 2016-12-01            12    2.886667
## 1118   December/2016 Dec 2016 2016-12-01            12    2.721739
## 1119   December/2016 Dec 2016 2016-12-01            12    2.726496
## 1120   December/2016 Dec 2016 2016-12-01            12    2.743056
## 1121   December/2016 Dec 2016 2016-12-01            12    2.800000
## 1122   December/2016 Dec 2016 2016-12-01            12    1.616725
## 1123   December/2016 Dec 2016 2016-12-01            12    1.702422
## 1124   December/2016 Dec 2016 2016-12-01            12    2.661585
## 1125   December/2016 Dec 2016 2016-12-01            12    2.750760
## 1126   December/2016 Dec 2016 2016-12-01            12    1.666667
## 1127   December/2016 Dec 2016 2016-12-01            12    2.789617
## 1128   December/2016 Dec 2016 2016-12-01            12    2.752542
## 1129   December/2016 Dec 2016 2016-12-01            12    1.663158
## 1130   December/2016 Dec 2016 2016-12-01            12    2.729299
## 1131   December/2016 Dec 2016 2016-12-01            12    2.889241
## 1132   December/2016 Dec 2016 2016-12-01            12    2.818750
## 1133   December/2016 Dec 2016 2016-12-01            12    2.733746
## 1134   December/2016 Dec 2016 2016-12-01            12    2.641096
## 1135   December/2016 Dec 2016 2016-12-01            12    2.601719
## 1136   December/2016 Dec 2016 2016-12-01            12    2.660969
## 1137   December/2016 Dec 2016 2016-12-01            12    1.731884
## 1138   December/2016 Dec 2016 2016-12-01            12    2.787162
## 1139   December/2016 Dec 2016 2016-12-01            12    1.850000
## 1140   December/2016 Dec 2016 2016-12-01            12    2.780405
## 1141   December/2016 Dec 2016 2016-12-01            12    2.550409
## 1142   December/2016 Dec 2016 2016-12-01            12    2.721264
## 1143   December/2016 Dec 2016 2016-12-01            12    2.410494
## 1144   December/2016 Dec 2016 2016-12-01            12    2.571066
## 1145   December/2016 Dec 2016 2016-12-01            12    1.847973
## 1146   December/2016 Dec 2016 2016-12-01            12    2.262774
## 1147   December/2016 Dec 2016 2016-12-01            12    2.814286
## 1148   December/2016 Dec 2016 2016-12-01            12    2.527950
## 1149   December/2016 Dec 2016 2016-12-01            12    2.610778
## 1150   December/2016 Dec 2016 2016-12-01            12    2.713826
## 1151   December/2016 Dec 2016 2016-12-01            12    2.580000
## 1152   December/2016 Dec 2016 2016-12-01            12    2.662921
## 1153   December/2016 Dec 2016 2016-12-01            12    2.539735
## 1154   December/2016 Dec 2016 2016-12-01            12    2.716511
## 1155   December/2016 Dec 2016 2016-12-01            12    1.653846
## 1156   December/2016 Dec 2016 2016-12-01            12    2.370370
## 1157   December/2016 Dec 2016 2016-12-01            12    1.694006
## 1158   December/2016 Dec 2016 2016-12-01            12    2.665706
## 1159   December/2016 Dec 2016 2016-12-01            12    2.014286
## 1160   December/2016 Dec 2016 2016-12-01            12    2.473545
## 1161   December/2016 Dec 2016 2016-12-01            12    2.557065
## 1162   December/2016 Dec 2016 2016-12-01            12    2.678808
## 1163   December/2016 Dec 2016 2016-12-01            12    2.638889
## 1164   December/2016 Dec 2016 2016-12-01            12    2.495601
## 1165   December/2016 Dec 2016 2016-12-01            12    2.510511
## 1166   December/2016 Dec 2016 2016-12-01            12    2.539326
## 1167   December/2016 Dec 2016 2016-12-01            12    2.652778
## 1168   December/2016 Dec 2016 2016-12-01            12    1.706320
## 1169   December/2016 Dec 2016 2016-12-01            12    2.787781
## 1170   December/2016 Dec 2016 2016-12-01            12    1.702422
## 1171   December/2016 Dec 2016 2016-12-01            12    2.232558
## 1172   December/2016 Dec 2016 2016-12-01            12    1.682692
## 1173   December/2016 Dec 2016 2016-12-01            12    2.584098
## 1174   December/2016 Dec 2016 2016-12-01            12    2.593315
## 1175   December/2016 Dec 2016 2016-12-01            12    2.187879
## 1176   December/2016 Dec 2016 2016-12-01            12    2.638806
## 1177   December/2016 Dec 2016 2016-12-01            12    2.484419
## 1178   December/2016 Dec 2016 2016-12-01            12    2.652308
## 1179   December/2016 Dec 2016 2016-12-01            12    1.693662
## 1180   December/2016 Dec 2016 2016-12-01            12    2.790123
## 1181   December/2016 Dec 2016 2016-12-01            12    2.195122
## 1182   December/2016 Dec 2016 2016-12-01            12    2.481928
## 1183   December/2016 Dec 2016 2016-12-01            12    2.688581
## 1184   December/2016 Dec 2016 2016-12-01            12    2.665595
## 1185   December/2016 Dec 2016 2016-12-01            12    2.703571
## 1186   December/2016 Dec 2016 2016-12-01            12    2.607717
## 1187   December/2016 Dec 2016 2016-12-01            12    2.368564
## 1188   December/2016 Dec 2016 2016-12-01            12    2.776271
## 1189   December/2016 Dec 2016 2016-12-01            12    2.613333
## 1190   December/2016 Dec 2016 2016-12-01            12    2.036424
## 1191   December/2016 Dec 2016 2016-12-01            12    2.460568
## 1192   December/2016 Dec 2016 2016-12-01            12    2.615836
## 1193   December/2016 Dec 2016 2016-12-01            12    2.161376
## 1194   December/2016 Dec 2016 2016-12-01            12    2.660870
## 1195   December/2016 Dec 2016 2016-12-01            12    2.140541
## 1196   December/2016 Dec 2016 2016-12-01            12    2.545455
## 1197   December/2016 Dec 2016 2016-12-01            12    2.682243
## 1198   December/2016 Dec 2016 2016-12-01            12    2.718182
## 1199   December/2016 Dec 2016 2016-12-01            12    2.581818
## 1200   December/2016 Dec 2016 2016-12-01            12    2.777385
## 1201   December/2016 Dec 2016 2016-12-01            12    2.850932
## 1202   December/2016 Dec 2016 2016-12-01            12    2.882143
## 1203   December/2016 Dec 2016 2016-12-01            12    2.688103
## 1204   December/2016 Dec 2016 2016-12-01            12    2.742029
## 1205   December/2016 Dec 2016 2016-12-01            12    1.873199
## 1206   December/2016 Dec 2016 2016-12-01            12    2.744479
## 1207   December/2016 Dec 2016 2016-12-01            12    2.833333
## 1208   December/2016 Dec 2016 2016-12-01            12    2.651376
## 1209   December/2016 Dec 2016 2016-12-01            12    2.786232
## 1210   December/2016 Dec 2016 2016-12-01            12    2.807309
## 1211   December/2016 Dec 2016 2016-12-01            12    2.821053
## 1212   December/2016 Dec 2016 2016-12-01            12    2.755172
## 1213   December/2016 Dec 2016 2016-12-01            12    2.761610
## 1214   December/2016 Dec 2016 2016-12-01            12    2.893175
## 1215   December/2016 Dec 2016 2016-12-01            12    2.675676
## 1216   December/2016 Dec 2016 2016-12-01            12    2.914894
## 1217   December/2016 Dec 2016 2016-12-01            12    2.766272
## 1218   December/2016 Dec 2016 2016-12-01            12    2.790698
## 1219   December/2016 Dec 2016 2016-12-01            12    3.007407
## 1220   December/2016 Dec 2016 2016-12-01            12    2.840116
## 1221   December/2016 Dec 2016 2016-12-01            12    2.909408
## 1222   December/2016 Dec 2016 2016-12-01            12    2.959707
## 1223   December/2016 Dec 2016 2016-12-01            12    2.837748
## 1224   December/2016 Dec 2016 2016-12-01            12    2.809689
## 1225   December/2016 Dec 2016 2016-12-01            12    2.833333
## 1226   December/2016 Dec 2016 2016-12-01            12    3.000000
## 1227   December/2016 Dec 2016 2016-12-01            12    2.919614
## 1228   December/2016 Dec 2016 2016-12-01            12    3.127907
## 1229   December/2016 Dec 2016 2016-12-01            12    2.866450
## 1230   December/2016 Dec 2016 2016-12-01            12    2.710843
## 1231   December/2016 Dec 2016 2016-12-01            12    2.729373
## 1232   December/2016 Dec 2016 2016-12-01            12    3.000000
## 1233   December/2016 Dec 2016 2016-12-01            12    2.466667
## 1234   December/2016 Dec 2016 2016-12-01            12    2.776836
## 1235   December/2016 Dec 2016 2016-12-01            12    2.611594
## 1236   December/2016 Dec 2016 2016-12-01            12    2.530055
## 1237   December/2016 Dec 2016 2016-12-01            12    2.603352
## 1238   December/2016 Dec 2016 2016-12-01            12    2.797101
## 1239   December/2016 Dec 2016 2016-12-01            12    2.744792
## 1240   December/2016 Dec 2016 2016-12-01            12    2.895082
## 1241   December/2016 Dec 2016 2016-12-01            12    2.718841
## 1242   December/2016 Dec 2016 2016-12-01            12    2.845455
## 1243   December/2016 Dec 2016 2016-12-01            12    2.702941
## 1244   December/2016 Dec 2016 2016-12-01            12    1.792049
## 1245   December/2016 Dec 2016 2016-12-01            12    2.533537
## 1246   December/2016 Dec 2016 2016-12-01            12    2.832168
## 1247   December/2016 Dec 2016 2016-12-01            12    2.760736
## 1248   December/2016 Dec 2016 2016-12-01            12    2.766892
## 1249   December/2016 Dec 2016 2016-12-01            12    2.558065
## 1250   December/2016 Dec 2016 2016-12-01            12    2.672414
## 1251   December/2016 Dec 2016 2016-12-01            12    2.674931
## 1252   December/2016 Dec 2016 2016-12-01            12    2.974843
## 1253   December/2016 Dec 2016 2016-12-01            12          NA
## 1254   December/2016 Dec 2016 2016-12-01            12    2.501538
## 1255   December/2016 Dec 2016 2016-12-01            12    2.822485
## 1256   December/2016 Dec 2016 2016-12-01            12    2.656642
## 1257   December/2016 Dec 2016 2016-12-01            12    2.693662
## 1258   December/2016 Dec 2016 2016-12-01            12    2.518519
## 1259   December/2016 Dec 2016 2016-12-01            12    2.678161
## 1260   December/2016 Dec 2016 2016-12-01            12    2.821326
## 1261   December/2016 Dec 2016 2016-12-01            12    2.629179
## 1262   December/2016 Dec 2016 2016-12-01            12    2.535897
## 1263   December/2016 Dec 2016 2016-12-01            12    2.595679
## 1264   December/2016 Dec 2016 2016-12-01            12    2.737542
## 1265   December/2016 Dec 2016 2016-12-01            12    2.739255
## 1266   December/2016 Dec 2016 2016-12-01            12    2.729032
## 1267   December/2016 Dec 2016 2016-12-01            12    2.686007
## 1268   December/2016 Dec 2016 2016-12-01            12    2.738889
## 1269   December/2016 Dec 2016 2016-12-01            12    2.632312
## 1270   December/2016 Dec 2016 2016-12-01            12    2.779264
## 1271   December/2016 Dec 2016 2016-12-01            12    2.689024
## 1272   December/2016 Dec 2016 2016-12-01            12    2.678808
## 1273   December/2016 Dec 2016 2016-12-01            12    2.781350
## 1274   December/2016 Dec 2016 2016-12-01            12    2.888179
## 1275   December/2016 Dec 2016 2016-12-01            12    2.642405
## 1276   December/2016 Dec 2016 2016-12-01            12    2.731629
## 1277   December/2016 Dec 2016 2016-12-01            12    2.710963
## 1278   December/2016 Dec 2016 2016-12-01            12    2.027778
## 1279   December/2016 Dec 2016 2016-12-01            12    2.716612
## 1280   December/2016 Dec 2016 2016-12-01            12    2.931271
## 1281   December/2016 Dec 2016 2016-12-01            12    1.671587
## 1282   December/2016 Dec 2016 2016-12-01            12    2.699422
## 1283   December/2016 Dec 2016 2016-12-01            12    2.739550
## 1284   December/2016 Dec 2016 2016-12-01            12    1.798635
## 1285   December/2016 Dec 2016 2016-12-01            12    2.790036
## 1286   December/2016 Dec 2016 2016-12-01            12    2.607843
## 1287   December/2016 Dec 2016 2016-12-01            12    1.745704
## 1288   December/2016 Dec 2016 2016-12-01            12    2.733974
## 1289   December/2016 Dec 2016 2016-12-01            12    1.828947
## 1290   December/2016 Dec 2016 2016-12-01            12    1.579505
## 1291   December/2016 Dec 2016 2016-12-01            12    1.807692
## 1292   December/2016 Dec 2016 2016-12-01            12    1.827476
## 1293   December/2016 Dec 2016 2016-12-01            12    2.663580
## 1294   December/2016 Dec 2016 2016-12-01            12    2.389439
## 1295   December/2016 Dec 2016 2016-12-01            12    2.694215
## 1296   December/2016 Dec 2016 2016-12-01            12    2.922360
## 1297   December/2016 Dec 2016 2016-12-01            12    2.792244
## 1298   December/2016 Dec 2016 2016-12-01            12    1.532915
## 1299   December/2016 Dec 2016 2016-12-01            12    1.740614
## 1300   December/2016 Dec 2016 2016-12-01            12    2.900709
## 1301   December/2016 Dec 2016 2016-12-01            12    2.184375
## 1302   December/2016 Dec 2016 2016-12-01            12    1.716912
## 1303   December/2016 Dec 2016 2016-12-01            12    2.728302
## 1304   December/2016 Dec 2016 2016-12-01            12    2.580858
## 1305   December/2016 Dec 2016 2016-12-01            12    2.071429
## 1306   December/2016 Dec 2016 2016-12-01            12    2.678788
## 1307   December/2016 Dec 2016 2016-12-01            12    2.635452
## 1308   December/2016 Dec 2016 2016-12-01            12    2.605797
## 1309   December/2016 Dec 2016 2016-12-01            12    2.613383
## 1310   December/2016 Dec 2016 2016-12-01            12    2.722222
## 1311   December/2016 Dec 2016 2016-12-01            12    2.646465
## 1312   December/2016 Dec 2016 2016-12-01            12    1.655022
## 1313   December/2016 Dec 2016 2016-12-01            12    1.635762
## 1314   December/2016 Dec 2016 2016-12-01            12    2.619377
## 1315     August/2017 Aug 2017 2017-08-01             8    2.769481
## 1316     August/2017 Aug 2017 2017-08-01             8    2.755034
## 1317     August/2017 Aug 2017 2017-08-01             8    2.607843
## 1318     August/2017 Aug 2017 2017-08-01             8    2.299663
## 1319     August/2017 Aug 2017 2017-08-01             8    2.816129
## 1320     August/2017 Aug 2017 2017-08-01             8    2.779026
## 1321     August/2017 Aug 2017 2017-08-01             8    2.225806
## 1322     August/2017 Aug 2017 2017-08-01             8    2.645963
## 1323     August/2017 Aug 2017 2017-08-01             8    2.675900
## 1324     August/2017 Aug 2017 2017-08-01             8    2.757862
## 1325     August/2017 Aug 2017 2017-08-01             8    2.685246
## 1326     August/2017 Aug 2017 2017-08-01             8    2.732143
## 1327     August/2017 Aug 2017 2017-08-01             8    2.609610
## 1328     August/2017 Aug 2017 2017-08-01             8    2.663818
## 1329     August/2017 Aug 2017 2017-08-01             8    2.857143
## 1330     August/2017 Aug 2017 2017-08-01             8    2.672297
## 1331     August/2017 Aug 2017 2017-08-01             8    2.090301
## 1332     August/2017 Aug 2017 2017-08-01             8    2.578348
## 1333     August/2017 Aug 2017 2017-08-01             8    2.525373
## 1334     August/2017 Aug 2017 2017-08-01             8    2.721519
## 1335     August/2017 Aug 2017 2017-08-01             8    2.815789
## 1336     August/2017 Aug 2017 2017-08-01             8    2.631737
## 1337     August/2017 Aug 2017 2017-08-01             8    2.807829
## 1338     August/2017 Aug 2017 2017-08-01             8    2.674658
## 1339     August/2017 Aug 2017 2017-08-01             8    2.728188
## 1340     August/2017 Aug 2017 2017-08-01             8    2.144876
## 1341     August/2017 Aug 2017 2017-08-01             8    2.702312
## 1342     August/2017 Aug 2017 2017-08-01             8    2.443425
## 1343     August/2017 Aug 2017 2017-08-01             8    2.713805
## 1344     August/2017 Aug 2017 2017-08-01             8    2.680251
## 1345     August/2017 Aug 2017 2017-08-01             8    2.681818
## 1346     August/2017 Aug 2017 2017-08-01             8    2.574648
## 1347     August/2017 Aug 2017 2017-08-01             8    2.548896
## 1348     August/2017 Aug 2017 2017-08-01             8    2.789474
## 1349     August/2017 Aug 2017 2017-08-01             8    2.737003
## 1350     August/2017 Aug 2017 2017-08-01             8    2.700000
## 1351     August/2017 Aug 2017 2017-08-01             8    2.740223
## 1352     August/2017 Aug 2017 2017-08-01             8    2.730435
## 1353     August/2017 Aug 2017 2017-08-01             8    2.762376
## 1354     August/2017 Aug 2017 2017-08-01             8    2.676976
## 1355     August/2017 Aug 2017 2017-08-01             8    2.726761
## 1356     August/2017 Aug 2017 2017-08-01             8    2.712991
## 1357     August/2017 Aug 2017 2017-08-01             8    2.725989
## 1358     August/2017 Aug 2017 2017-08-01             8    1.697183
## 1359     August/2017 Aug 2017 2017-08-01             8    2.785479
## 1360     August/2017 Aug 2017 2017-08-01             8    2.752778
## 1361     August/2017 Aug 2017 2017-08-01             8    2.818182
## 1362     August/2017 Aug 2017 2017-08-01             8    2.791809
## 1363     August/2017 Aug 2017 2017-08-01             8    2.657658
## 1364     August/2017 Aug 2017 2017-08-01             8    2.517483
## 1365     August/2017 Aug 2017 2017-08-01             8    2.735669
## 1366     August/2017 Aug 2017 2017-08-01             8    2.808023
## 1367     August/2017 Aug 2017 2017-08-01             8    2.730519
## 1368     August/2017 Aug 2017 2017-08-01             8    2.740845
## 1369     August/2017 Aug 2017 2017-08-01             8    2.601744
## 1370     August/2017 Aug 2017 2017-08-01             8    2.728223
## 1371     August/2017 Aug 2017 2017-08-01             8    2.616959
## 1372     August/2017 Aug 2017 2017-08-01             8    2.649573
## 1373     August/2017 Aug 2017 2017-08-01             8    2.873134
## 1374     August/2017 Aug 2017 2017-08-01             8    2.223881
## 1375     August/2017 Aug 2017 2017-08-01             8    2.635514
## 1376     August/2017 Aug 2017 2017-08-01             8    2.072368
## 1377     August/2017 Aug 2017 2017-08-01             8    2.627168
## 1378     August/2017 Aug 2017 2017-08-01             8    2.638889
## 1379     August/2017 Aug 2017 2017-08-01             8    1.665541
## 1380     August/2017 Aug 2017 2017-08-01             8    2.696793
## 1381     August/2017 Aug 2017 2017-08-01             8    2.561538
## 1382     August/2017 Aug 2017 2017-08-01             8    2.511173
## 1383     August/2017 Aug 2017 2017-08-01             8    2.693333
## 1384     August/2017 Aug 2017 2017-08-01             8    2.860215
## 1385     August/2017 Aug 2017 2017-08-01             8    2.749164
## 1386     August/2017 Aug 2017 2017-08-01             8    2.695187
## 1387     August/2017 Aug 2017 2017-08-01             8    2.572327
## 1388     August/2017 Aug 2017 2017-08-01             8    2.601156
## 1389     August/2017 Aug 2017 2017-08-01             8    2.543478
## 1390     August/2017 Aug 2017 2017-08-01             8    2.710191
## 1391     August/2017 Aug 2017 2017-08-01             8    2.552817
## 1392     August/2017 Aug 2017 2017-08-01             8    2.701695
## 1393     August/2017 Aug 2017 2017-08-01             8    1.756757
## 1394     August/2017 Aug 2017 2017-08-01             8    2.590625
## 1395     August/2017 Aug 2017 2017-08-01             8    2.722054
## 1396     August/2017 Aug 2017 2017-08-01             8    2.722930
## 1397     August/2017 Aug 2017 2017-08-01             8    2.646341
## 1398     August/2017 Aug 2017 2017-08-01             8    2.714286
## 1399     August/2017 Aug 2017 2017-08-01             8    2.621469
## 1400     August/2017 Aug 2017 2017-08-01             8    2.583815
## 1401     August/2017 Aug 2017 2017-08-01             8    2.581662
## 1402     August/2017 Aug 2017 2017-08-01             8    2.554839
## 1403     August/2017 Aug 2017 2017-08-01             8    1.708487
## 1404     August/2017 Aug 2017 2017-08-01             8    2.820755
## 1405     August/2017 Aug 2017 2017-08-01             8    2.787356
## 1406     August/2017 Aug 2017 2017-08-01             8    2.397059
## 1407     August/2017 Aug 2017 2017-08-01             8    2.369863
## 1408     August/2017 Aug 2017 2017-08-01             8    2.098540
## 1409     August/2017 Aug 2017 2017-08-01             8    2.681347
## 1410     August/2017 Aug 2017 2017-08-01             8    2.680233
## 1411     August/2017 Aug 2017 2017-08-01             8    2.674912
## 1412     August/2017 Aug 2017 2017-08-01             8    2.758410
## 1413     August/2017 Aug 2017 2017-08-01             8    2.631902
## 1414     August/2017 Aug 2017 2017-08-01             8    2.679083
## 1415     August/2017 Aug 2017 2017-08-01             8    2.692042
## 1416     August/2017 Aug 2017 2017-08-01             8    2.600515
## 1417     August/2017 Aug 2017 2017-08-01             8    2.465054
## 1418     August/2017 Aug 2017 2017-08-01             8    1.588652
## 1419     August/2017 Aug 2017 2017-08-01             8    2.725979
## 1420     August/2017 Aug 2017 2017-08-01             8    2.790909
## 1421     August/2017 Aug 2017 2017-08-01             8    2.628169
## 1422     August/2017 Aug 2017 2017-08-01             8    2.549488
## 1423     August/2017 Aug 2017 2017-08-01             8    2.748588
## 1424     August/2017 Aug 2017 2017-08-01             8    2.686275
## 1425     August/2017 Aug 2017 2017-08-01             8    2.757764
## 1426     August/2017 Aug 2017 2017-08-01             8    2.837758
## 1427     August/2017 Aug 2017 2017-08-01             8    2.706070
## 1428     August/2017 Aug 2017 2017-08-01             8    2.661808
## 1429     August/2017 Aug 2017 2017-08-01             8    2.648101
## 1430     August/2017 Aug 2017 2017-08-01             8    2.549575
## 1431     August/2017 Aug 2017 2017-08-01             8    2.707831
## 1432     August/2017 Aug 2017 2017-08-01             8    2.766026
## 1433     August/2017 Aug 2017 2017-08-01             8    2.784264
## 1434     August/2017 Aug 2017 2017-08-01             8    2.602041
## 1435     August/2017 Aug 2017 2017-08-01             8    2.713924
## 1436     August/2017 Aug 2017 2017-08-01             8    2.750000
## 1437     August/2017 Aug 2017 2017-08-01             8    2.649852
## 1438     August/2017 Aug 2017 2017-08-01             8    2.621891
## 1439     August/2017 Aug 2017 2017-08-01             8    2.754839
## 1440     August/2017 Aug 2017 2017-08-01             8    2.742331
## 1441     August/2017 Aug 2017 2017-08-01             8    2.763077
## 1442     August/2017 Aug 2017 2017-08-01             8    2.598784
## 1443     August/2017 Aug 2017 2017-08-01             8    2.825243
## 1444     August/2017 Aug 2017 2017-08-01             8    2.762058
## 1445     August/2017 Aug 2017 2017-08-01             8    2.544794
## 1446     August/2017 Aug 2017 2017-08-01             8    2.745407
## 1447     August/2017 Aug 2017 2017-08-01             8    2.617162
## 1448     August/2017 Aug 2017 2017-08-01             8    2.763407
## 1449     August/2017 Aug 2017 2017-08-01             8    2.693671
## 1450     August/2017 Aug 2017 2017-08-01             8    2.757009
## 1451     August/2017 Aug 2017 2017-08-01             8    2.932394
## 1452     August/2017 Aug 2017 2017-08-01             8    2.712121
## 1453     August/2017 Aug 2017 2017-08-01             8    2.659459
## 1454     August/2017 Aug 2017 2017-08-01             8    2.857143
## 1455     August/2017 Aug 2017 2017-08-01             8    2.651376
## 1456     August/2017 Aug 2017 2017-08-01             8    2.739247
## 1457     August/2017 Aug 2017 2017-08-01             8    2.671779
## 1458     August/2017 Aug 2017 2017-08-01             8    2.694268
## 1459     August/2017 Aug 2017 2017-08-01             8    2.559113
## 1460     August/2017 Aug 2017 2017-08-01             8    2.729050
## 1461     August/2017 Aug 2017 2017-08-01             8    2.698361
## 1462     August/2017 Aug 2017 2017-08-01             8    2.688347
## 1463     August/2017 Aug 2017 2017-08-01             8    2.707602
## 1464     August/2017 Aug 2017 2017-08-01             8    2.666667
## 1465     August/2017 Aug 2017 2017-08-01             8    2.652893
## 1466     August/2017 Aug 2017 2017-08-01             8    2.711688
## 1467     August/2017 Aug 2017 2017-08-01             8    2.814404
## 1468     August/2017 Aug 2017 2017-08-01             8    2.704969
## 1469     August/2017 Aug 2017 2017-08-01             8    2.692090
## 1470     August/2017 Aug 2017 2017-08-01             8    2.803175
## 1471     August/2017 Aug 2017 2017-08-01             8    2.820144
## 1472     August/2017 Aug 2017 2017-08-01             8    2.753846
## 1473     August/2017 Aug 2017 2017-08-01             8    2.506112
## 1474     August/2017 Aug 2017 2017-08-01             8    2.653333
## 1475     August/2017 Aug 2017 2017-08-01             8    2.577259
## 1476     August/2017 Aug 2017 2017-08-01             8    2.669492
## 1477     August/2017 Aug 2017 2017-08-01             8    2.672872
## 1478     August/2017 Aug 2017 2017-08-01             8    2.582210
## 1479     August/2017 Aug 2017 2017-08-01             8    2.622283
## 1480     August/2017 Aug 2017 2017-08-01             8    2.615183
## 1481     August/2017 Aug 2017 2017-08-01             8    2.645963
## 1482     August/2017 Aug 2017 2017-08-01             8    2.663317
## 1483     August/2017 Aug 2017 2017-08-01             8    2.597884
## 1484     August/2017 Aug 2017 2017-08-01             8    2.806548
## 1485     August/2017 Aug 2017 2017-08-01             8    2.721180
## 1486     August/2017 Aug 2017 2017-08-01             8    2.664935
## 1487     August/2017 Aug 2017 2017-08-01             8    2.784247
## 1488     August/2017 Aug 2017 2017-08-01             8    2.752294
## 1489     August/2017 Aug 2017 2017-08-01             8    2.761610
## 1490     August/2017 Aug 2017 2017-08-01             8    2.768730
## 1491     August/2017 Aug 2017 2017-08-01             8    2.691131
## 1492     August/2017 Aug 2017 2017-08-01             8    2.711656
## 1493     August/2017 Aug 2017 2017-08-01             8    2.726519
## 1494     August/2017 Aug 2017 2017-08-01             8    2.698413
## 1495     August/2017 Aug 2017 2017-08-01             8    2.815013
## 1496     August/2017 Aug 2017 2017-08-01             8    2.835484
## 1497     August/2017 Aug 2017 2017-08-01             8    2.726727
## 1498     August/2017 Aug 2017 2017-08-01             8    2.624339
## 1499     August/2017 Aug 2017 2017-08-01             8    2.728435
## 1500     August/2017 Aug 2017 2017-08-01             8    2.803681
## 1501     August/2017 Aug 2017 2017-08-01             8    2.969697
## 1502     August/2017 Aug 2017 2017-08-01             8    2.580110
## 1503     August/2017 Aug 2017 2017-08-01             8    2.757475
## 1504     August/2017 Aug 2017 2017-08-01             8    2.882759
## 1505     August/2017 Aug 2017 2017-08-01             8    1.789474
## 1506     August/2017 Aug 2017 2017-08-01             8    2.769231
## 1507     August/2017 Aug 2017 2017-08-01             8    2.600000
## 1508     August/2017 Aug 2017 2017-08-01             8    2.748175
## 1509     August/2017 Aug 2017 2017-08-01             8    2.687273
## 1510     August/2017 Aug 2017 2017-08-01             8    2.691643
## 1511     August/2017 Aug 2017 2017-08-01             8    2.598639
## 1512     August/2017 Aug 2017 2017-08-01             8    2.754491
## 1513     August/2017 Aug 2017 2017-08-01             8    1.756458
## 1514     August/2017 Aug 2017 2017-08-01             8    2.651466
## 1515     August/2017 Aug 2017 2017-08-01             8    2.596721
## 1516     August/2017 Aug 2017 2017-08-01             8    2.813149
## 1517     August/2017 Aug 2017 2017-08-01             8    2.481928
## 1518     August/2017 Aug 2017 2017-08-01             8    2.577419
## 1519     August/2017 Aug 2017 2017-08-01             8    2.785714
## 1520     August/2017 Aug 2017 2017-08-01             8    2.630814
## 1521     August/2017 Aug 2017 2017-08-01             8    2.540541
## 1522     August/2017 Aug 2017 2017-08-01             8    2.618076
## 1523     August/2017 Aug 2017 2017-08-01             8    2.593923
## 1524     August/2017 Aug 2017 2017-08-01             8    1.810811
## 1525     August/2017 Aug 2017 2017-08-01             8    1.785714
## 1526     August/2017 Aug 2017 2017-08-01             8    2.894737
## 1527     August/2017 Aug 2017 2017-08-01             8    2.768392
## 1528     August/2017 Aug 2017 2017-08-01             8    2.588785
## 1529     August/2017 Aug 2017 2017-08-01             8    2.581749
## 1530     August/2017 Aug 2017 2017-08-01             8    2.713896
## 1531     August/2017 Aug 2017 2017-08-01             8    2.697740
## 1532     August/2017 Aug 2017 2017-08-01             8    2.631068
## 1533     August/2017 Aug 2017 2017-08-01             8    2.695971
## 1534     August/2017 Aug 2017 2017-08-01             8    2.741135
## 1535     August/2017 Aug 2017 2017-08-01             8    1.948718
## 1536     August/2017 Aug 2017 2017-08-01             8    2.743056
## 1537     August/2017 Aug 2017 2017-08-01             8    2.700000
## 1538     August/2017 Aug 2017 2017-08-01             8    2.614943
## 1539     August/2017 Aug 2017 2017-08-01             8    2.646865
## 1540     August/2017 Aug 2017 2017-08-01             8    2.642651
## 1541     August/2017 Aug 2017 2017-08-01             8    1.815094
## 1542     August/2017 Aug 2017 2017-08-01             8    2.751534
## 1543     August/2017 Aug 2017 2017-08-01             8    2.698413
## 1544     August/2017 Aug 2017 2017-08-01             8    2.678344
## 1545     August/2017 Aug 2017 2017-08-01             8    1.745520
## 1546     August/2017 Aug 2017 2017-08-01             8    1.693103
## 1547     August/2017 Aug 2017 2017-08-01             8    2.492401
## 1548     August/2017 Aug 2017 2017-08-01             8    2.663793
## 1549     August/2017 Aug 2017 2017-08-01             8    1.734982
## 1550     August/2017 Aug 2017 2017-08-01             8    2.792763
## 1551     August/2017 Aug 2017 2017-08-01             8    1.893701
## 1552     August/2017 Aug 2017 2017-08-01             8    1.894737
## 1553     August/2017 Aug 2017 2017-08-01             8    2.673973
## 1554     August/2017 Aug 2017 2017-08-01             8    2.924342
## 1555     August/2017 Aug 2017 2017-08-01             8    1.699659
## 1556     August/2017 Aug 2017 2017-08-01             8    2.622074
## 1557     August/2017 Aug 2017 2017-08-01             8    2.720430
## 1558     August/2017 Aug 2017 2017-08-01             8    2.588972
## 1559     August/2017 Aug 2017 2017-08-01             8    2.796667
## 1560     August/2017 Aug 2017 2017-08-01             8    1.757679
## 1561     August/2017 Aug 2017 2017-08-01             8    2.766871
## 1562     August/2017 Aug 2017 2017-08-01             8    1.866412
## 1563     August/2017 Aug 2017 2017-08-01             8    1.715517
## 1564     August/2017 Aug 2017 2017-08-01             8    1.858369
## 1565     August/2017 Aug 2017 2017-08-01             8    1.750000
## 1566     August/2017 Aug 2017 2017-08-01             8    1.690196
## 1567     August/2017 Aug 2017 2017-08-01             8    1.937888
## 1568     August/2017 Aug 2017 2017-08-01             8    2.814394
## 1569     August/2017 Aug 2017 2017-08-01             8    1.704380
## 1570     August/2017 Aug 2017 2017-08-01             8    2.749129
## 1571     August/2017 Aug 2017 2017-08-01             8    2.271605
## 1572     August/2017 Aug 2017 2017-08-01             8    1.824561
## 1573     August/2017 Aug 2017 2017-08-01             8    2.737542
## 1574     August/2017 Aug 2017 2017-08-01             8    2.444744
## 1575     August/2017 Aug 2017 2017-08-01             8    2.763736
## 1576     August/2017 Aug 2017 2017-08-01             8    2.674699
## 1577     August/2017 Aug 2017 2017-08-01             8    2.968858
## 1578     August/2017 Aug 2017 2017-08-01             8    2.748485
## 1579     August/2017 Aug 2017 2017-08-01             8    2.770308
## 1580     August/2017 Aug 2017 2017-08-01             8    2.707006
## 1581     August/2017 Aug 2017 2017-08-01             8    2.649547
## 1582     August/2017 Aug 2017 2017-08-01             8    2.541219
## 1583     August/2017 Aug 2017 2017-08-01             8    2.776536
## 1584     August/2017 Aug 2017 2017-08-01             8    3.048860
## 1585     August/2017 Aug 2017 2017-08-01             8    2.679310
## 1586     August/2017 Aug 2017 2017-08-01             8    1.787149
## 1587     August/2017 Aug 2017 2017-08-01             8    2.806584
## 1588     August/2017 Aug 2017 2017-08-01             8    1.778656
## 1589     August/2017 Aug 2017 2017-08-01             8    2.601852
## 1590     August/2017 Aug 2017 2017-08-01             8    2.741818
## 1591     August/2017 Aug 2017 2017-08-01             8    2.839879
## 1592     August/2017 Aug 2017 2017-08-01             8    2.660000
## 1593     August/2017 Aug 2017 2017-08-01             8    1.854839
## 1594     August/2017 Aug 2017 2017-08-01             8    2.831715
## 1595     August/2017 Aug 2017 2017-08-01             8    2.596306
## 1596     August/2017 Aug 2017 2017-08-01             8    2.702703
## 1597     August/2017 Aug 2017 2017-08-01             8    2.647841
## 1598     August/2017 Aug 2017 2017-08-01             8    2.663690
## 1599     August/2017 Aug 2017 2017-08-01             8    2.664516
## 1600     August/2017 Aug 2017 2017-08-01             8    2.779070
## 1601     August/2017 Aug 2017 2017-08-01             8    2.696078
## 1602     August/2017 Aug 2017 2017-08-01             8    2.650273
## 1603     August/2017 Aug 2017 2017-08-01             8    2.850365
## 1604     August/2017 Aug 2017 2017-08-01             8    2.766551
## 1605     August/2017 Aug 2017 2017-08-01             8    2.779605
## 1606     August/2017 Aug 2017 2017-08-01             8    2.678571
## 1607     August/2017 Aug 2017 2017-08-01             8    2.660057
## 1608     August/2017 Aug 2017 2017-08-01             8    2.612069
## 1609     August/2017 Aug 2017 2017-08-01             8    1.834586
## 1610     August/2017 Aug 2017 2017-08-01             8    2.644699
## 1611     August/2017 Aug 2017 2017-08-01             8    1.775801
## 1612     August/2017 Aug 2017 2017-08-01             8    2.546980
## 1613     August/2017 Aug 2017 2017-08-01             8    2.731988
## 1614     August/2017 Aug 2017 2017-08-01             8    2.645963
## 1615     August/2017 Aug 2017 2017-08-01             8    2.630573
## 1616     August/2017 Aug 2017 2017-08-01             8    2.724359
## 1617     August/2017 Aug 2017 2017-08-01             8    2.553719
## 1618     August/2017 Aug 2017 2017-08-01             8    2.604294
## 1619     August/2017 Aug 2017 2017-08-01             8    2.179577
## 1620     August/2017 Aug 2017 2017-08-01             8    2.603878
## 1621     August/2017 Aug 2017 2017-08-01             8    2.711806
## 1622     August/2017 Aug 2017 2017-08-01             8    2.567485
## 1623     August/2017 Aug 2017 2017-08-01             8    2.787986
## 1624     August/2017 Aug 2017 2017-08-01             8    2.737160
## 1625     August/2017 Aug 2017 2017-08-01             8    2.675758
## 1626     August/2017 Aug 2017 2017-08-01             8    2.716216
## 1627     August/2017 Aug 2017 2017-08-01             8    2.728188
## 1628     August/2017 Aug 2017 2017-08-01             8    2.126761
## 1629     August/2017 Aug 2017 2017-08-01             8    2.223301
## 1630     August/2017 Aug 2017 2017-08-01             8    2.813291
## 1631     August/2017 Aug 2017 2017-08-01             8    2.584046
## 1632     August/2017 Aug 2017 2017-08-01             8          NA
## 1633     August/2017 Aug 2017 2017-08-01             8    2.030189
## 1634     August/2017 Aug 2017 2017-08-01             8    1.725275
## 1635     August/2017 Aug 2017 2017-08-01             8    2.812500
## 1636     August/2017 Aug 2017 2017-08-01             8    2.676101
## 1637     August/2017 Aug 2017 2017-08-01             8    2.027875
## 1638     August/2017 Aug 2017 2017-08-01             8    1.934483
## 1639     August/2017 Aug 2017 2017-08-01             8    2.828383
## 1640     August/2017 Aug 2017 2017-08-01             8    1.892000
## 1641     August/2017 Aug 2017 2017-08-01             8    2.119691
## 1642     August/2017 Aug 2017 2017-08-01             8    2.715762
## 1643     August/2017 Aug 2017 2017-08-01             8    2.151125
## 1644     August/2017 Aug 2017 2017-08-01             8    2.755700
## 1645     August/2017 Aug 2017 2017-08-01             8    1.939623
## 1646     August/2017 Aug 2017 2017-08-01             8    2.582418
## 1647     August/2017 Aug 2017 2017-08-01             8    2.879870
## 1648     August/2017 Aug 2017 2017-08-01             8    2.114907
## 1649     August/2017 Aug 2017 2017-08-01             8    2.841317
## 1650     August/2017 Aug 2017 2017-08-01             8    2.755486
## 1651     August/2017 Aug 2017 2017-08-01             8    1.880952
## 1652     August/2017 Aug 2017 2017-08-01             8    2.879880
## 1653     August/2017 Aug 2017 2017-08-01             8    2.413174
## 1654     August/2017 Aug 2017 2017-08-01             8    1.814961
## 1655     August/2017 Aug 2017 2017-08-01             8    2.527132
## 1656     August/2017 Aug 2017 2017-08-01             8    2.091667
## 1657     August/2017 Aug 2017 2017-08-01             8    1.727915
## 1658     August/2017 Aug 2017 2017-08-01             8    1.966667
## 1659     August/2017 Aug 2017 2017-08-01             8    2.144231
## 1660     August/2017 Aug 2017 2017-08-01             8    2.694915
## 1661     August/2017 Aug 2017 2017-08-01             8    2.198758
## 1662     August/2017 Aug 2017 2017-08-01             8    2.854305
## 1663     August/2017 Aug 2017 2017-08-01             8    2.735294
## 1664     August/2017 Aug 2017 2017-08-01             8    2.624138
## 1665     August/2017 Aug 2017 2017-08-01             8    2.714286
## 1666     August/2017 Aug 2017 2017-08-01             8    2.714744
## 1667     August/2017 Aug 2017 2017-08-01             8    1.986301
## 1668     August/2017 Aug 2017 2017-08-01             8    1.816327
## 1669     August/2017 Aug 2017 2017-08-01             8    2.668675
## 1670     August/2017 Aug 2017 2017-08-01             8    1.956989
## 1671     August/2017 Aug 2017 2017-08-01             8    1.694737
## 1672     August/2017 Aug 2017 2017-08-01             8    1.793358
## 1673     August/2017 Aug 2017 2017-08-01             8          NA
## 1674     August/2017 Aug 2017 2017-08-01             8    1.826389
## 1675     August/2017 Aug 2017 2017-08-01             8    2.684015
## 1676     August/2017 Aug 2017 2017-08-01             8    1.978571
## 1677     August/2017 Aug 2017 2017-08-01             8    2.307971
## 1678     August/2017 Aug 2017 2017-08-01             8    2.292776
## 1679     August/2017 Aug 2017 2017-08-01             8    1.937269
## 1680     August/2017 Aug 2017 2017-08-01             8    2.603960
## 1681     August/2017 Aug 2017 2017-08-01             8    1.795380
## 1682     August/2017 Aug 2017 2017-08-01             8    2.811912
## 1683     August/2017 Aug 2017 2017-08-01             8    2.429134
## 1684     August/2017 Aug 2017 2017-08-01             8    2.193277
## 1685     August/2017 Aug 2017 2017-08-01             8    2.868852
## 1686     August/2017 Aug 2017 2017-08-01             8    2.750760
## 1687     August/2017 Aug 2017 2017-08-01             8    1.785256
## 1688     August/2017 Aug 2017 2017-08-01             8    1.754098
## 1689     August/2017 Aug 2017 2017-08-01             8    1.721190
## 1690     August/2017 Aug 2017 2017-08-01             8    2.641104
## 1691     August/2017 Aug 2017 2017-08-01             8    2.853125
## 1692     August/2017 Aug 2017 2017-08-01             8    2.853147
## 1693     August/2017 Aug 2017 2017-08-01             8    2.730104
## 1694     August/2017 Aug 2017 2017-08-01             8    1.843373
## 1695     August/2017 Aug 2017 2017-08-01             8    2.753571
## 1696     August/2017 Aug 2017 2017-08-01             8    2.675393
## 1697     August/2017 Aug 2017 2017-08-01             8    2.685792
## 1698     August/2017 Aug 2017 2017-08-01             8    2.799242
## 1699     August/2017 Aug 2017 2017-08-01             8    1.964539
## 1700     August/2017 Aug 2017 2017-08-01             8    2.189474
## 1701     August/2017 Aug 2017 2017-08-01             8    2.787356
## 1702     August/2017 Aug 2017 2017-08-01             8    1.916350
## 1703     August/2017 Aug 2017 2017-08-01             8    2.643243
## 1704     August/2017 Aug 2017 2017-08-01             8    2.837838
## 1705     August/2017 Aug 2017 2017-08-01             8    2.726667
## 1706     August/2017 Aug 2017 2017-08-01             8    2.729537
## 1707     August/2017 Aug 2017 2017-08-01             8    2.738971
## 1708     August/2017 Aug 2017 2017-08-01             8    2.173516
## 1709     August/2017 Aug 2017 2017-08-01             8    2.854545
## 1710     August/2017 Aug 2017 2017-08-01             8    2.732938
## 1711     August/2017 Aug 2017 2017-08-01             8    1.903346
## 1712     August/2017 Aug 2017 2017-08-01             8    2.957295
## 1713     August/2017 Aug 2017 2017-08-01             8    2.704762
## 1714     August/2017 Aug 2017 2017-08-01             8    2.777027
## 1715     August/2017 Aug 2017 2017-08-01             8    2.733333
## 1716     August/2017 Aug 2017 2017-08-01             8    2.690544
## 1717     August/2017 Aug 2017 2017-08-01             8    2.778502
## 1718     August/2017 Aug 2017 2017-08-01             8    1.966667
## 1719     August/2017 Aug 2017 2017-08-01             8    2.126712
## 1720     August/2017 Aug 2017 2017-08-01             8    2.886792
## 1721     August/2017 Aug 2017 2017-08-01             8    2.815331
## 1722     August/2017 Aug 2017 2017-08-01             8    2.015873
## 1723     August/2017 Aug 2017 2017-08-01             8    2.612676
## 1724     August/2017 Aug 2017 2017-08-01             8    2.824926
## 1725     August/2017 Aug 2017 2017-08-01             8    2.118577
## 1726     August/2017 Aug 2017 2017-08-01             8    2.850174
## 1727     August/2017 Aug 2017 2017-08-01             8    2.775510
## 1728     August/2017 Aug 2017 2017-08-01             8    2.720497
## 1729     August/2017 Aug 2017 2017-08-01             8    1.761905
## 1730     August/2017 Aug 2017 2017-08-01             8    1.649123
## 1731     August/2017 Aug 2017 2017-08-01             8    2.883212
## 1732     August/2017 Aug 2017 2017-08-01             8    2.764479
## 1733     August/2017 Aug 2017 2017-08-01             8    2.559871
## 1734     August/2017 Aug 2017 2017-08-01             8    2.209125
## 1735     August/2017 Aug 2017 2017-08-01             8    1.820225
## 1736     August/2017 Aug 2017 2017-08-01             8    1.824427
## 1737     August/2017 Aug 2017 2017-08-01             8    2.317647
## 1738     August/2017 Aug 2017 2017-08-01             8    1.792157
## 1739     August/2017 Aug 2017 2017-08-01             8    1.811715
## 1740     August/2017 Aug 2017 2017-08-01             8    1.832685
## 1741     August/2017 Aug 2017 2017-08-01             8    2.708197
## 1742     August/2017 Aug 2017 2017-08-01             8    1.680556
## 1743  September/2018 Sep 2018 2018-09-01             9    2.779783
## 1744  September/2018 Sep 2018 2018-09-01             9    2.916955
## 1745  September/2018 Sep 2018 2018-09-01             9    2.907285
## 1746  September/2018 Sep 2018 2018-09-01             9    2.664935
## 1747  September/2018 Sep 2018 2018-09-01             9    2.666667
## 1748  September/2018 Sep 2018 2018-09-01             9    2.770677
## 1749  September/2018 Sep 2018 2018-09-01             9    2.859873
## 1750  September/2018 Sep 2018 2018-09-01             9    2.760606
## 1751  September/2018 Sep 2018 2018-09-01             9    2.747059
## 1752  September/2018 Sep 2018 2018-09-01             9    2.849315
## 1753  September/2018 Sep 2018 2018-09-01             9    2.735385
## 1754  September/2018 Sep 2018 2018-09-01             9    2.740845
## 1755  September/2018 Sep 2018 2018-09-01             9    2.857143
## 1756  September/2018 Sep 2018 2018-09-01             9    2.813754
## 1757  September/2018 Sep 2018 2018-09-01             9    2.894410
## 1758  September/2018 Sep 2018 2018-09-01             9    2.691429
## 1759  September/2018 Sep 2018 2018-09-01             9    1.728571
## 1760  September/2018 Sep 2018 2018-09-01             9    2.874150
## 1761  September/2018 Sep 2018 2018-09-01             9    2.828947
## 1762  September/2018 Sep 2018 2018-09-01             9    2.911864
## 1763  September/2018 Sep 2018 2018-09-01             9    2.758503
## 1764  September/2018 Sep 2018 2018-09-01             9    2.622150
## 1765  September/2018 Sep 2018 2018-09-01             9    2.650307
## 1766  September/2018 Sep 2018 2018-09-01             9    2.881533
## 1767  September/2018 Sep 2018 2018-09-01             9    2.668588
## 1768  September/2018 Sep 2018 2018-09-01             9    2.717868
## 1769  September/2018 Sep 2018 2018-09-01             9    2.892593
## 1770  September/2018 Sep 2018 2018-09-01             9    2.855219
## 1771  September/2018 Sep 2018 2018-09-01             9    2.723183
## 1772  September/2018 Sep 2018 2018-09-01             9    2.594595
## 1773  September/2018 Sep 2018 2018-09-01             9    2.846386
## 1774  September/2018 Sep 2018 2018-09-01             9    2.630058
## 1775  September/2018 Sep 2018 2018-09-01             9    2.596257
## 1776  September/2018 Sep 2018 2018-09-01             9    2.989247
## 1777  September/2018 Sep 2018 2018-09-01             9    2.694444
## 1778  September/2018 Sep 2018 2018-09-01             9    2.841424
## 1779  September/2018 Sep 2018 2018-09-01             9    2.790769
## 1780  September/2018 Sep 2018 2018-09-01             9    2.822581
## 1781  September/2018 Sep 2018 2018-09-01             9    2.677054
## 1782  September/2018 Sep 2018 2018-09-01             9    2.785978
## 1783  September/2018 Sep 2018 2018-09-01             9    2.743590
## 1784  September/2018 Sep 2018 2018-09-01             9    2.725543
## 1785  September/2018 Sep 2018 2018-09-01             9    2.766129
## 1786  September/2018 Sep 2018 2018-09-01             9    2.905797
## 1787  September/2018 Sep 2018 2018-09-01             9    2.741611
## 1788  September/2018 Sep 2018 2018-09-01             9    2.778098
## 1789  September/2018 Sep 2018 2018-09-01             9    2.849462
## 1790  September/2018 Sep 2018 2018-09-01             9    2.698305
## 1791  September/2018 Sep 2018 2018-09-01             9    2.767442
## 1792  September/2018 Sep 2018 2018-09-01             9    2.797059
## 1793  September/2018 Sep 2018 2018-09-01             9    2.921136
## 1794  September/2018 Sep 2018 2018-09-01             9    2.928144
## 1795  September/2018 Sep 2018 2018-09-01             9    2.825083
## 1796  September/2018 Sep 2018 2018-09-01             9    2.761194
## 1797  September/2018 Sep 2018 2018-09-01             9    2.678063
## 1798  September/2018 Sep 2018 2018-09-01             9    1.760456
## 1799  September/2018 Sep 2018 2018-09-01             9    2.649390
## 1800  September/2018 Sep 2018 2018-09-01             9    2.679412
## 1801  September/2018 Sep 2018 2018-09-01             9    2.782918
## 1802  September/2018 Sep 2018 2018-09-01             9    2.910299
## 1803  September/2018 Sep 2018 2018-09-01             9    1.719844
## 1804  September/2018 Sep 2018 2018-09-01             9    2.739726
## 1805  September/2018 Sep 2018 2018-09-01             9    2.593220
## 1806  September/2018 Sep 2018 2018-09-01             9    2.867797
## 1807  September/2018 Sep 2018 2018-09-01             9    2.796774
## 1808  September/2018 Sep 2018 2018-09-01             9    2.655172
## 1809  September/2018 Sep 2018 2018-09-01             9    2.822695
## 1810  September/2018 Sep 2018 2018-09-01             9    2.598007
## 1811  September/2018 Sep 2018 2018-09-01             9    1.747573
## 1812  September/2018 Sep 2018 2018-09-01             9    1.921642
## 1813  September/2018 Sep 2018 2018-09-01             9    2.041176
## 1814  September/2018 Sep 2018 2018-09-01             9    2.102167
## 1815  September/2018 Sep 2018 2018-09-01             9    2.576316
## 1816  September/2018 Sep 2018 2018-09-01             9    1.747036
## 1817  September/2018 Sep 2018 2018-09-01             9    1.773810
## 1818  September/2018 Sep 2018 2018-09-01             9    2.754448
## 1819  September/2018 Sep 2018 2018-09-01             9    1.672662
## 1820  September/2018 Sep 2018 2018-09-01             9    1.589286
## 1821  September/2018 Sep 2018 2018-09-01             9    2.717857
## 1822  September/2018 Sep 2018 2018-09-01             9    1.875969
## 1823  September/2018 Sep 2018 2018-09-01             9    2.715100
## 1824  September/2018 Sep 2018 2018-09-01             9    2.065476
## 1825  September/2018 Sep 2018 2018-09-01             9    2.449367
## 1826  September/2018 Sep 2018 2018-09-01             9    2.730159
## 1827  September/2018 Sep 2018 2018-09-01             9    2.785016
## 1828  September/2018 Sep 2018 2018-09-01             9    1.644269
## 1829  September/2018 Sep 2018 2018-09-01             9    1.783439
## 1830  September/2018 Sep 2018 2018-09-01             9    2.601719
## 1831  September/2018 Sep 2018 2018-09-01             9    1.863158
## 1832  September/2018 Sep 2018 2018-09-01             9    2.711111
## 1833  September/2018 Sep 2018 2018-09-01             9    2.677019
## 1834  September/2018 Sep 2018 2018-09-01             9    1.661654
## 1835  September/2018 Sep 2018 2018-09-01             9    1.753799
## 1836  September/2018 Sep 2018 2018-09-01             9    2.007380
## 1837  September/2018 Sep 2018 2018-09-01             9    2.816901
## 1838  September/2018 Sep 2018 2018-09-01             9    1.690554
## 1839  September/2018 Sep 2018 2018-09-01             9    2.732852
## 1840  September/2018 Sep 2018 2018-09-01             9    2.520408
## 1841  September/2018 Sep 2018 2018-09-01             9    2.493197
## 1842  September/2018 Sep 2018 2018-09-01             9    1.682848
## 1843  September/2018 Sep 2018 2018-09-01             9    1.722846
## 1844  September/2018 Sep 2018 2018-09-01             9    1.900901
## 1845  September/2018 Sep 2018 2018-09-01             9    1.710801
## 1846  September/2018 Sep 2018 2018-09-01             9    1.686508
## 1847  September/2018 Sep 2018 2018-09-01             9    2.661972
## 1848  September/2018 Sep 2018 2018-09-01             9    1.649254
## 1849  September/2018 Sep 2018 2018-09-01             9    2.641566
## 1850  September/2018 Sep 2018 2018-09-01             9    2.650794
## 1851  September/2018 Sep 2018 2018-09-01             9    2.543956
## 1852  September/2018 Sep 2018 2018-09-01             9    1.915663
## 1853  September/2018 Sep 2018 2018-09-01             9    2.758730
## 1854  September/2018 Sep 2018 2018-09-01             9    2.750000
## 1855  September/2018 Sep 2018 2018-09-01             9    2.735202
## 1856  September/2018 Sep 2018 2018-09-01             9    2.850610
## 1857  September/2018 Sep 2018 2018-09-01             9    1.585106
## 1858  September/2018 Sep 2018 2018-09-01             9    1.985294
## 1859  September/2018 Sep 2018 2018-09-01             9    2.567901
## 1860  September/2018 Sep 2018 2018-09-01             9    2.152263
## 1861  September/2018 Sep 2018 2018-09-01             9    1.755776
## 1862  September/2018 Sep 2018 2018-09-01             9    2.828897
## 1863  September/2018 Sep 2018 2018-09-01             9    2.675362
## 1864  September/2018 Sep 2018 2018-09-01             9    1.859873
## 1865  September/2018 Sep 2018 2018-09-01             9    2.968652
## 1866  September/2018 Sep 2018 2018-09-01             9    1.879479
## 1867  September/2018 Sep 2018 2018-09-01             9    2.858182
## 1868  September/2018 Sep 2018 2018-09-01             9    1.841060
## 1869  September/2018 Sep 2018 2018-09-01             9    2.633028
## 1870  September/2018 Sep 2018 2018-09-01             9    1.886364
## 1871  September/2018 Sep 2018 2018-09-01             9    2.903780
## 1872  September/2018 Sep 2018 2018-09-01             9    1.859107
## 1873  September/2018 Sep 2018 2018-09-01             9    1.850394
## 1874  September/2018 Sep 2018 2018-09-01             9    1.746939
## 1875  September/2018 Sep 2018 2018-09-01             9    2.778116
## 1876  September/2018 Sep 2018 2018-09-01             9    2.696486
## 1877  September/2018 Sep 2018 2018-09-01             9    2.684058
## 1878  September/2018 Sep 2018 2018-09-01             9    2.698361
## 1879  September/2018 Sep 2018 2018-09-01             9    2.884758
## 1880  September/2018 Sep 2018 2018-09-01             9    2.874598
## 1881  September/2018 Sep 2018 2018-09-01             9    2.907348
## 1882  September/2018 Sep 2018 2018-09-01             9    1.890295
## 1883  September/2018 Sep 2018 2018-09-01             9    2.705502
## 1884  September/2018 Sep 2018 2018-09-01             9    2.693333
## 1885  September/2018 Sep 2018 2018-09-01             9    3.016026
## 1886  September/2018 Sep 2018 2018-09-01             9    2.985380
## 1887  September/2018 Sep 2018 2018-09-01             9    2.779935
## 1888  September/2018 Sep 2018 2018-09-01             9    2.720548
## 1889  September/2018 Sep 2018 2018-09-01             9    2.795918
## 1890  September/2018 Sep 2018 2018-09-01             9    2.861963
## 1891  September/2018 Sep 2018 2018-09-01             9    2.677914
## 1892  September/2018 Sep 2018 2018-09-01             9    2.827362
## 1893  September/2018 Sep 2018 2018-09-01             9    2.766484
## 1894  September/2018 Sep 2018 2018-09-01             9    2.846369
## 1895  September/2018 Sep 2018 2018-09-01             9    2.733333
## 1896  September/2018 Sep 2018 2018-09-01             9    2.852830
## 1897  September/2018 Sep 2018 2018-09-01             9    2.661538
## 1898  September/2018 Sep 2018 2018-09-01             9    2.642857
## 1899  September/2018 Sep 2018 2018-09-01             9    2.758741
## 1900  September/2018 Sep 2018 2018-09-01             9    1.818462
## 1901  September/2018 Sep 2018 2018-09-01             9    2.856631
## 1902  September/2018 Sep 2018 2018-09-01             9    2.774603
## 1903  September/2018 Sep 2018 2018-09-01             9    1.914062
## 1904  September/2018 Sep 2018 2018-09-01             9    2.704787
## 1905  September/2018 Sep 2018 2018-09-01             9    2.769231
## 1906  September/2018 Sep 2018 2018-09-01             9    2.662857
## 1907  September/2018 Sep 2018 2018-09-01             9    2.834320
## 1908  September/2018 Sep 2018 2018-09-01             9    2.691667
## 1909  September/2018 Sep 2018 2018-09-01             9    2.771014
## 1910  September/2018 Sep 2018 2018-09-01             9    2.854489
## 1911  September/2018 Sep 2018 2018-09-01             9    2.696721
## 1912  September/2018 Sep 2018 2018-09-01             9    2.709677
## 1913  September/2018 Sep 2018 2018-09-01             9    2.638298
## 1914  September/2018 Sep 2018 2018-09-01             9    2.763636
## 1915  September/2018 Sep 2018 2018-09-01             9    2.724832
## 1916        May/2019 May 2019 2019-05-01             5    2.651163
## 1917        May/2019 May 2019 2019-05-01             5    2.776536
## 1918        May/2019 May 2019 2019-05-01             5    2.855513
## 1919        May/2019 May 2019 2019-05-01             5    2.715818
## 1920        May/2019 May 2019 2019-05-01             5    2.667674
## 1921        May/2019 May 2019 2019-05-01             5    1.815436
## 1922        May/2019 May 2019 2019-05-01             5    2.648000
## 1923        May/2019 May 2019 2019-05-01             5    2.600733
## 1924        May/2019 May 2019 2019-05-01             5    2.835664
## 1925        May/2019 May 2019 2019-05-01             5    2.448101
## 1926        May/2019 May 2019 2019-05-01             5    2.486111
## 1927        May/2019 May 2019 2019-05-01             5    2.750000
## 1928        May/2019 May 2019 2019-05-01             5    2.619597
## 1929        May/2019 May 2019 2019-05-01             5    2.553371
## 1930        May/2019 May 2019 2019-05-01             5    2.822535
## 1931        May/2019 May 2019 2019-05-01             5    2.493606
## 1932        May/2019 May 2019 2019-05-01             5    2.629944
## 1933        May/2019 May 2019 2019-05-01             5    2.685976
## 1934        May/2019 May 2019 2019-05-01             5    2.584856
## 1935        May/2019 May 2019 2019-05-01             5    1.845361
## 1936        May/2019 May 2019 2019-05-01             5    2.604730
## 1937        May/2019 May 2019 2019-05-01             5    2.997101
## 1938        May/2019 May 2019 2019-05-01             5    2.657895
## 1939        May/2019 May 2019 2019-05-01             5    2.464198
## 1940        May/2019 May 2019 2019-05-01             5    3.057047
## 1941        May/2019 May 2019 2019-05-01             5    2.906137
## 1942        May/2019 May 2019 2019-05-01             5    2.917582
## 1943        May/2019 May 2019 2019-05-01             5    2.486553
## 1944        May/2019 May 2019 2019-05-01             5    2.647230
## 1945        May/2019 May 2019 2019-05-01             5    2.901818
## 1946        May/2019 May 2019 2019-05-01             5    2.794788
## 1947        May/2019 May 2019 2019-05-01             5    2.752412
## 1948        May/2019 May 2019 2019-05-01             5    2.820652
## 1949        May/2019 May 2019 2019-05-01             5    2.730871
## 1950        May/2019 May 2019 2019-05-01             5    2.448276
## 1951        May/2019 May 2019 2019-05-01             5    2.723183
## 1952        May/2019 May 2019 2019-05-01             5    2.790378
## 1953        May/2019 May 2019 2019-05-01             5    2.735294
## 1954        May/2019 May 2019 2019-05-01             5    2.842444
## 1955        May/2019 May 2019 2019-05-01             5    2.645902
## 1956        May/2019 May 2019 2019-05-01             5    2.604592
## 1957        May/2019 May 2019 2019-05-01             5    2.622356
## 1958        May/2019 May 2019 2019-05-01             5    2.835866
## 1959        May/2019 May 2019 2019-05-01             5    2.671470
## 1960        May/2019 May 2019 2019-05-01             5    2.533923
## 1961        May/2019 May 2019 2019-05-01             5    2.844595
## 1962        May/2019 May 2019 2019-05-01             5    3.067449
## 1963        May/2019 May 2019 2019-05-01             5    2.792507
## 1964        May/2019 May 2019 2019-05-01             5    2.540625
## 1965        May/2019 May 2019 2019-05-01             5    1.652720
## 1966        May/2019 May 2019 2019-05-01             5    2.652459
## 1967        May/2019 May 2019 2019-05-01             5    1.830040
## 1968        May/2019 May 2019 2019-05-01             5    2.468750
## 1969        May/2019 May 2019 2019-05-01             5    2.720149
## 1970        May/2019 May 2019 2019-05-01             5    2.775920
## 1971        May/2019 May 2019 2019-05-01             5    1.655870
## 1972        May/2019 May 2019 2019-05-01             5    1.907336
## 1973        May/2019 May 2019 2019-05-01             5    2.022222
## 1974        May/2019 May 2019 2019-05-01             5    2.031008
## 1975        May/2019 May 2019 2019-05-01             5    1.539855
## 1976        May/2019 May 2019 2019-05-01             5    1.745833
## 1977        May/2019 May 2019 2019-05-01             5    2.562500
## 1978        May/2019 May 2019 2019-05-01             5    1.739669
## 1979        May/2019 May 2019 2019-05-01             5    1.658730
## 1980        May/2019 May 2019 2019-05-01             5    2.694158
## 1981        May/2019 May 2019 2019-05-01             5    2.215152
## 1982        May/2019 May 2019 2019-05-01             5    1.619377
## 1983        May/2019 May 2019 2019-05-01             5    1.746094
## 1984        May/2019 May 2019 2019-05-01             5    2.084942
## 1985        May/2019 May 2019 2019-05-01             5    1.837302
## 1986        May/2019 May 2019 2019-05-01             5    2.416357
## 1987        May/2019 May 2019 2019-05-01             5    2.556757
## 1988        May/2019 May 2019 2019-05-01             5    2.714777
## 1989        May/2019 May 2019 2019-05-01             5    2.670330
## 1990        May/2019 May 2019 2019-05-01             5    1.764516
## 1991        May/2019 May 2019 2019-05-01             5    1.993691
## 1992        May/2019 May 2019 2019-05-01             5    2.227119
## 1993        May/2019 May 2019 2019-05-01             5    1.652582
## 1994        May/2019 May 2019 2019-05-01             5    1.768061
## 1995        May/2019 May 2019 2019-05-01             5    1.947692
## 1996        May/2019 May 2019 2019-05-01             5    2.569182
## 1997        May/2019 May 2019 2019-05-01             5    1.842105
## 1998        May/2019 May 2019 2019-05-01             5    1.766187
## 1999        May/2019 May 2019 2019-05-01             5    1.767361
## 2000        May/2019 May 2019 2019-05-01             5    2.696697
## 2001        May/2019 May 2019 2019-05-01             5    2.734694
## 2002        May/2019 May 2019 2019-05-01             5    2.510714
## 2003        May/2019 May 2019 2019-05-01             5    2.616487
## 2004        May/2019 May 2019 2019-05-01             5    1.770751
## 2005        May/2019 May 2019 2019-05-01             5    2.589342
## 2006        May/2019 May 2019 2019-05-01             5    2.817276
## 2007        May/2019 May 2019 2019-05-01             5    1.817544
## 2008        May/2019 May 2019 2019-05-01             5    2.625352
## 2009        May/2019 May 2019 2019-05-01             5    1.575251
## 2010        May/2019 May 2019 2019-05-01             5    1.775100
## 2011        May/2019 May 2019 2019-05-01             5    2.123404
## 2012        May/2019 May 2019 2019-05-01             5    2.258865
## 2013        May/2019 May 2019 2019-05-01             5    2.733564
## 2014        May/2019 May 2019 2019-05-01             5    1.729452
## 2015        May/2019 May 2019 2019-05-01             5    2.664577
## 2016        May/2019 May 2019 2019-05-01             5    1.719368
## 2017        May/2019 May 2019 2019-05-01             5    1.897233
## 2018        May/2019 May 2019 2019-05-01             5    1.836134
## 2019        May/2019 May 2019 2019-05-01             5    2.539216
## 2020        May/2019 May 2019 2019-05-01             5    1.704918
## 2021        May/2019 May 2019 2019-05-01             5    1.786164
## 2022        May/2019 May 2019 2019-05-01             5    1.743056
## 2023        May/2019 May 2019 2019-05-01             5    1.734694
## 2024        May/2019 May 2019 2019-05-01             5    2.700348
## 2025        May/2019 May 2019 2019-05-01             5    1.843284
## 2026        May/2019 May 2019 2019-05-01             5    1.691729
## 2027        May/2019 May 2019 2019-05-01             5    1.908088
## 2028        May/2019 May 2019 2019-05-01             5    1.959839
## 2029        May/2019 May 2019 2019-05-01             5    2.346570
## 2030        May/2019 May 2019 2019-05-01             5    2.617647
## 2031        May/2019 May 2019 2019-05-01             5    2.721014
## 2032        May/2019 May 2019 2019-05-01             5    1.539062
## 2033        May/2019 May 2019 2019-05-01             5    1.657588
## 2034        May/2019 May 2019 2019-05-01             5    2.725753
## 2035        May/2019 May 2019 2019-05-01             5    1.800699
## 2036        May/2019 May 2019 2019-05-01             5    2.695238
## 2037        May/2019 May 2019 2019-05-01             5    2.003831
## 2038        May/2019 May 2019 2019-05-01             5    2.534722
## 2039        May/2019 May 2019 2019-05-01             5    1.702786
## 2040        May/2019 May 2019 2019-05-01             5    1.717842
## 2041        May/2019 May 2019 2019-05-01             5    1.825658
## 2042        May/2019 May 2019 2019-05-01             5    2.661342
## 2043        May/2019 May 2019 2019-05-01             5    1.602076
## 2044        May/2019 May 2019 2019-05-01             5    2.080000
## 2045        May/2019 May 2019 2019-05-01             5    1.861224
## 2046        May/2019 May 2019 2019-05-01             5    1.776000
## 2047        May/2019 May 2019 2019-05-01             5    1.602151
## 2048        May/2019 May 2019 2019-05-01             5    1.952569
## 2049        May/2019 May 2019 2019-05-01             5    1.690083
## 2050        May/2019 May 2019 2019-05-01             5    2.688000
## 2051        May/2019 May 2019 2019-05-01             5    1.800738
## 2052        May/2019 May 2019 2019-05-01             5    1.723549
## 2053        May/2019 May 2019 2019-05-01             5    2.762987
## 2054        May/2019 May 2019 2019-05-01             5    1.674074
## 2055        May/2019 May 2019 2019-05-01             5    1.728571
## 2056        May/2019 May 2019 2019-05-01             5    2.684411
## 2057        May/2019 May 2019 2019-05-01             5    1.852941
## 2058        May/2019 May 2019 2019-05-01             5    2.029091
## 2059        May/2019 May 2019 2019-05-01             5    2.619048
## 2060        May/2019 May 2019 2019-05-01             5    2.799308
## 2061        May/2019 May 2019 2019-05-01             5    2.571429
## 2062        May/2019 May 2019 2019-05-01             5    3.061889
## 2063        May/2019 May 2019 2019-05-01             5    2.714286
## 2064        May/2019 May 2019 2019-05-01             5    2.833333
## 2065        May/2019 May 2019 2019-05-01             5    2.656168
## 2066        May/2019 May 2019 2019-05-01             5    2.799331
## 2067        May/2019 May 2019 2019-05-01             5    1.897436
## 2068        May/2019 May 2019 2019-05-01             5    2.376623
## 2069        May/2019 May 2019 2019-05-01             5    1.976190
## 2070        May/2019 May 2019 2019-05-01             5    2.592593
## 2071        May/2019 May 2019 2019-05-01             5    2.791086
## 2072        May/2019 May 2019 2019-05-01             5    2.908046
## 2073        May/2019 May 2019 2019-05-01             5    2.927393
## 2074        May/2019 May 2019 2019-05-01             5    2.545455
## 2075        May/2019 May 2019 2019-05-01             5    2.944853
## 2076        May/2019 May 2019 2019-05-01             5    1.835206
## 2077        May/2019 May 2019 2019-05-01             5    2.533333
## 2078        May/2019 May 2019 2019-05-01             5    1.719697
## 2079        May/2019 May 2019 2019-05-01             5    2.664537
## 2080        May/2019 May 2019 2019-05-01             5    2.755556
## 2081        May/2019 May 2019 2019-05-01             5    2.643454
## 2082        May/2019 May 2019 2019-05-01             5    2.781609
## 2083        May/2019 May 2019 2019-05-01             5    2.900344
## 2084        May/2019 May 2019 2019-05-01             5    2.674772
## 2085        May/2019 May 2019 2019-05-01             5    2.905488
## 2086        May/2019 May 2019 2019-05-01             5    2.278873
## 2087        May/2019 May 2019 2019-05-01             5    2.715625
## 2088        May/2019 May 2019 2019-05-01             5    2.248815
## 2089        May/2019 May 2019 2019-05-01             5    2.785507
## 2090        May/2019 May 2019 2019-05-01             5    1.987437
## 2091        May/2019 May 2019 2019-05-01             5    2.808081
## 2092        May/2019 May 2019 2019-05-01             5    3.023166
## 2093        May/2019 May 2019 2019-05-01             5    2.386792
## 2094        May/2019 May 2019 2019-05-01             5    2.503704
## 2095        May/2019 May 2019 2019-05-01             5    2.725857
## 2096        May/2019 May 2019 2019-05-01             5    2.223022
## 2097        May/2019 May 2019 2019-05-01             5    2.910112
## 2098        May/2019 May 2019 2019-05-01             5    2.667702
## 2099        May/2019 May 2019 2019-05-01             5    2.669841
## 2100        May/2019 May 2019 2019-05-01             5    2.733333
## 2101        May/2019 May 2019 2019-05-01             5    2.583562
## 2102        May/2019 May 2019 2019-05-01             5    2.717391
## 2103        May/2019 May 2019 2019-05-01             5    1.977273
## 2104        May/2019 May 2019 2019-05-01             5    2.701863
## 2105        May/2019 May 2019 2019-05-01             5    2.862974
## 2106        May/2019 May 2019 2019-05-01             5    1.875000
## 2107        May/2019 May 2019 2019-05-01             5    2.804487
## 2108        May/2019 May 2019 2019-05-01             5    1.749117
## 2109        May/2019 May 2019 2019-05-01             5    2.770227
## 2110        May/2019 May 2019 2019-05-01             5    2.650704
## 2111        May/2019 May 2019 2019-05-01             5    2.725000
## 2112        May/2019 May 2019 2019-05-01             5    2.619048
## 2113        May/2019 May 2019 2019-05-01             5    2.578073
## 2114        May/2019 May 2019 2019-05-01             5    3.015385
## 2115        May/2019 May 2019 2019-05-01             5    2.693291
## 2116        May/2019 May 2019 2019-05-01             5    2.781250
## 2117        May/2019 May 2019 2019-05-01             5    2.544872
## 2118        May/2019 May 2019 2019-05-01             5    2.750000
## 2119        May/2019 May 2019 2019-05-01             5    2.568862
## 2120        May/2019 May 2019 2019-05-01             5    2.623418
## 2121        May/2019 May 2019 2019-05-01             5    2.560224
## 2122        May/2019 May 2019 2019-05-01             5    2.763158
## 2123        May/2019 May 2019 2019-05-01             5    2.762963
## 2124        May/2019 May 2019 2019-05-01             5    2.692308
## 2125        May/2019 May 2019 2019-05-01             5    1.972973
## 2126        May/2019 May 2019 2019-05-01             5    2.726727
## 2127        May/2019 May 2019 2019-05-01             5    2.024390
## 2128        May/2019 May 2019 2019-05-01             5    2.621359
## 2129        May/2019 May 2019 2019-05-01             5    2.830084
## 2130        May/2019 May 2019 2019-05-01             5    2.709459
## 2131        May/2019 May 2019 2019-05-01             5    1.749104
## 2132        May/2019 May 2019 2019-05-01             5    2.859779
## 2133        May/2019 May 2019 2019-05-01             5    2.693548
## 2134        May/2019 May 2019 2019-05-01             5    2.812261
## 2135        May/2019 May 2019 2019-05-01             5    2.683636
## 2136        May/2019 May 2019 2019-05-01             5    1.850000
## 2137        May/2019 May 2019 2019-05-01             5    2.809365
## 2138        May/2019 May 2019 2019-05-01             5    2.688645
## 2139        May/2019 May 2019 2019-05-01             5    2.680782
## 2140        May/2019 May 2019 2019-05-01             5    2.667683
## 2141        May/2019 May 2019 2019-05-01             5    2.685065
## 2142        May/2019 May 2019 2019-05-01             5    1.682493
## 2143        May/2019 May 2019 2019-05-01             5    2.760383
## 2144        May/2019 May 2019 2019-05-01             5    1.617530
## 2145        May/2019 May 2019 2019-05-01             5    1.652997
## 2146        May/2019 May 2019 2019-05-01             5    2.683673
## 2147        May/2019 May 2019 2019-05-01             5    1.797619
## 2148        May/2019 May 2019 2019-05-01             5    2.525568
## 2149        May/2019 May 2019 2019-05-01             5    1.940520
## 2150        May/2019 May 2019 2019-05-01             5    2.604096
## 2151        May/2019 May 2019 2019-05-01             5    1.676190
## 2152        May/2019 May 2019 2019-05-01             5    1.631970
## 2153        May/2019 May 2019 2019-05-01             5    2.660131
## 2154        May/2019 May 2019 2019-05-01             5    2.772727
## 2155        May/2019 May 2019 2019-05-01             5    2.709343
## 2156        May/2019 May 2019 2019-05-01             5    2.651163
## 2157        May/2019 May 2019 2019-05-01             5    2.659701
## 2158        May/2019 May 2019 2019-05-01             5    2.667722
## 2159        May/2019 May 2019 2019-05-01             5    2.649518
## 2160        May/2019 May 2019 2019-05-01             5    1.599349
## 2161        May/2019 May 2019 2019-05-01             5    2.657738
## 2162        May/2019 May 2019 2019-05-01             5    2.720149
## 2163        May/2019 May 2019 2019-05-01             5    1.507937
## 2164        May/2019 May 2019 2019-05-01             5    1.642105
## 2165        May/2019 May 2019 2019-05-01             5    2.482650
## 2166        May/2019 May 2019 2019-05-01             5    2.671975
## 2167        May/2019 May 2019 2019-05-01             5    2.539773
## 2168        May/2019 May 2019 2019-05-01             5    2.757143
## 2169        May/2019 May 2019 2019-05-01             5    1.723735
## 2170        May/2019 May 2019 2019-05-01             5    2.692308
## 2171        May/2019 May 2019 2019-05-01             5    2.796935
## 2172        May/2019 May 2019 2019-05-01             5    1.743119
## 2173        May/2019 May 2019 2019-05-01             5    2.891386
## 2174        May/2019 May 2019 2019-05-01             5    1.800000
## 2175        May/2019 May 2019 2019-05-01             5    2.603675
## 2176        May/2019 May 2019 2019-05-01             5    2.703833
## 2177        May/2019 May 2019 2019-05-01             5    2.573883
## 2178        May/2019 May 2019 2019-05-01             5    1.720280
## 2179        May/2019 May 2019 2019-05-01             5    1.673913
## 2180        May/2019 May 2019 2019-05-01             5    1.918605
## 2181        May/2019 May 2019 2019-05-01             5    2.068841
## 2182        May/2019 May 2019 2019-05-01             5    1.646048
## 2183        May/2019 May 2019 2019-05-01             5    1.692884
## 2184        May/2019 May 2019 2019-05-01             5    2.536517
## 2185        May/2019 May 2019 2019-05-01             5    2.663082
## 2186        May/2019 May 2019 2019-05-01             5    2.060510
## 2187        May/2019 May 2019 2019-05-01             5    2.691358
## 2188        May/2019 May 2019 2019-05-01             5    2.639037
## 2189        May/2019 May 2019 2019-05-01             5    2.652406
## 2190        May/2019 May 2019 2019-05-01             5    2.496753
## 2191        May/2019 May 2019 2019-05-01             5    1.736364
## 2192        May/2019 May 2019 2019-05-01             5    2.668874
## 2193        May/2019 May 2019 2019-05-01             5    1.678030
## 2194        May/2019 May 2019 2019-05-01             5    1.658824
## 2195        May/2019 May 2019 2019-05-01             5    2.816547
## 2196        May/2019 May 2019 2019-05-01             5    2.616000
## 2197        May/2019 May 2019 2019-05-01             5    1.695489
## 2198        May/2019 May 2019 2019-05-01             5    2.637584
## 2199        May/2019 May 2019 2019-05-01             5    2.727273
## 2200        May/2019 May 2019 2019-05-01             5    1.776515
## 2201        May/2019 May 2019 2019-05-01             5    2.769231
## 2202        May/2019 May 2019 2019-05-01             5    1.554054
## 2203        May/2019 May 2019 2019-05-01             5    2.760656
## 2204        May/2019 May 2019 2019-05-01             5    1.776119
## 2205        May/2019 May 2019 2019-05-01             5    1.720000
## 2206        May/2019 May 2019 2019-05-01             5    2.766187
## 2207        May/2019 May 2019 2019-05-01             5    2.787072
## 2208        May/2019 May 2019 2019-05-01             5    2.728814
## 2209        May/2019 May 2019 2019-05-01             5    1.686869
## 2210        May/2019 May 2019 2019-05-01             5    1.826087
## 2211        May/2019 May 2019 2019-05-01             5    2.391489
## 2212        May/2019 May 2019 2019-05-01             5    1.627907
## 2213        May/2019 May 2019 2019-05-01             5    1.774590
## 2214        May/2019 May 2019 2019-05-01             5    2.784553
## 2215        May/2019 May 2019 2019-05-01             5    1.712644
## 2216        May/2019 May 2019 2019-05-01             5    1.676113
## 2217        May/2019 May 2019 2019-05-01             5    2.069231
## 2218        May/2019 May 2019 2019-05-01             5    1.809339
## 2219        May/2019 May 2019 2019-05-01             5    2.693380
## 2220        May/2019 May 2019 2019-05-01             5    1.652015
## 2221        May/2019 May 2019 2019-05-01             5    1.720930
## 2222        May/2019 May 2019 2019-05-01             5    1.480392
## 2223        May/2019 May 2019 2019-05-01             5    2.639665
## 2224        May/2019 May 2019 2019-05-01             5    2.670175
## 2225        May/2019 May 2019 2019-05-01             5    1.741279
## 2226        May/2019 May 2019 2019-05-01             5    2.661972
## 2227        May/2019 May 2019 2019-05-01             5    1.709677
## 2228        May/2019 May 2019 2019-05-01             5    1.719472
## 2229        May/2019 May 2019 2019-05-01             5    1.676282
## 2230        May/2019 May 2019 2019-05-01             5    1.822581
## 2231        May/2019 May 2019 2019-05-01             5    1.719424
## 2232        May/2019 May 2019 2019-05-01             5    1.864111
## 2233        May/2019 May 2019 2019-05-01             5    2.601744
## 2234        May/2019 May 2019 2019-05-01             5    2.156934
## 2235        May/2019 May 2019 2019-05-01             5    1.771331
## 2236        May/2019 May 2019 2019-05-01             5    2.652047
## 2237        May/2019 May 2019 2019-05-01             5    2.562092
## 2238        May/2019 May 2019 2019-05-01             5    1.970464
## 2239        May/2019 May 2019 2019-05-01             5    2.671795
## 2240        May/2019 May 2019 2019-05-01             5    2.716012
## 2241        May/2019 May 2019 2019-05-01             5    1.524917
## 2242        May/2019 May 2019 2019-05-01             5    1.916409
## 2243        May/2019 May 2019 2019-05-01             5    2.573099
## 2244        May/2019 May 2019 2019-05-01             5    2.709571
## 2245        May/2019 May 2019 2019-05-01             5    2.654434
## 2246        May/2019 May 2019 2019-05-01             5    2.549598
## 2247        May/2019 May 2019 2019-05-01             5    2.764075
## 2248        May/2019 May 2019 2019-05-01             5    1.703822
## 2249        May/2019 May 2019 2019-05-01             5    2.607717
## 2250        May/2019 May 2019 2019-05-01             5    1.802817
## 2251        May/2019 May 2019 2019-05-01             5    2.524540
## 2252        May/2019 May 2019 2019-05-01             5    1.921384
## 2253        May/2019 May 2019 2019-05-01             5    1.847909
## 2254        May/2019 May 2019 2019-05-01             5    2.342183
## 2255        May/2019 May 2019 2019-05-01             5    1.719231
## 2256        May/2019 May 2019 2019-05-01             5    1.690909
## 2257        May/2019 May 2019 2019-05-01             5    1.556338
## 2258        May/2019 May 2019 2019-05-01             5    1.621908
## 2259        May/2019 May 2019 2019-05-01             5    1.736111
## 2260        May/2019 May 2019 2019-05-01             5    1.926357
## 2261        May/2019 May 2019 2019-05-01             5    1.897010
## 2262        May/2019 May 2019 2019-05-01             5    1.717857
## 2263        May/2019 May 2019 2019-05-01             5    2.636066
## 2264        May/2019 May 2019 2019-05-01             5    2.684385
## 2265        May/2019 May 2019 2019-05-01             5    2.548571
## 2266        May/2019 May 2019 2019-05-01             5    2.443590
## 2267        May/2019 May 2019 2019-05-01             5    1.741573
## 2268        May/2019 May 2019 2019-05-01             5    2.623656
## 2269        May/2019 May 2019 2019-05-01             5    2.587131
## 2270        May/2019 May 2019 2019-05-01             5    2.501377
## 2271        May/2019 May 2019 2019-05-01             5    2.841379
## 2272        May/2019 May 2019 2019-05-01             5    2.833333
## 2273        May/2019 May 2019 2019-05-01             5    1.817121
## 2274        May/2019 May 2019 2019-05-01             5    2.608187
## 2275        May/2019 May 2019 2019-05-01             5    1.716312
## 2276        May/2019 May 2019 2019-05-01             5    1.673203
## 2277        May/2019 May 2019 2019-05-01             5    2.648649
## 2278        May/2019 May 2019 2019-05-01             5    1.674497
## 2279        May/2019 May 2019 2019-05-01             5    2.754098
## 2280        May/2019 May 2019 2019-05-01             5    1.744604
## 2281        May/2019 May 2019 2019-05-01             5    2.743590
## 2282        May/2019 May 2019 2019-05-01             5    1.830189
## 2283        May/2019 May 2019 2019-05-01             5    1.825581
## 2284        May/2019 May 2019 2019-05-01             5    1.858209
## 2285        May/2019 May 2019 2019-05-01             5    2.666667
## 2286        May/2019 May 2019 2019-05-01             5    2.688889
## 2287        May/2019 May 2019 2019-05-01             5    1.728395
## 2288        May/2019 May 2019 2019-05-01             5    2.719178
## 2289        May/2019 May 2019 2019-05-01             5    1.617241
## 2290        May/2019 May 2019 2019-05-01             5    2.671010
## 2291        May/2019 May 2019 2019-05-01             5    2.567901
## 2292        May/2019 May 2019 2019-05-01             5    2.569892
## 2293        May/2019 May 2019 2019-05-01             5    2.549724
## 2294        May/2019 May 2019 2019-05-01             5    2.509383
## 2295        May/2019 May 2019 2019-05-01             5    1.686508
## 2296        May/2019 May 2019 2019-05-01             5    1.529940
## 2297        May/2019 May 2019 2019-05-01             5    2.715625
## 2298        May/2019 May 2019 2019-05-01             5    1.738806
## 2299        May/2019 May 2019 2019-05-01             5    1.682836
## 2300        May/2019 May 2019 2019-05-01             5    1.687307
## 2301        May/2019 May 2019 2019-05-01             5    1.765343
## 2302        May/2019 May 2019 2019-05-01             5    2.538874
## 2303        May/2019 May 2019 2019-05-01             5    1.900709
## 2304        May/2019 May 2019 2019-05-01             5    2.509589
## 2305        May/2019 May 2019 2019-05-01             5    1.821293
## 2306        May/2019 May 2019 2019-05-01             5    1.623239
## 2307        May/2019 May 2019 2019-05-01             5    1.854406
## 2308        May/2019 May 2019 2019-05-01             5    2.838488
## 2309        May/2019 May 2019 2019-05-01             5    1.669456
## 2310        May/2019 May 2019 2019-05-01             5    2.896552
## 2311        May/2019 May 2019 2019-05-01             5    2.722034
## 2312        May/2019 May 2019 2019-05-01             5    2.545775
## 2313        May/2019 May 2019 2019-05-01             5    2.641096
## 2314        May/2019 May 2019 2019-05-01             5    1.988806
## 2315        May/2019 May 2019 2019-05-01             5    1.572881
## 2316        May/2019 May 2019 2019-05-01             5    2.612676
## 2317        May/2019 May 2019 2019-05-01             5    1.690566
## 2318        May/2019 May 2019 2019-05-01             5    1.893204
## 2319        May/2019 May 2019 2019-05-01             5    2.055556
## 2320        May/2019 May 2019 2019-05-01             5    1.841699
## 2321        May/2019 May 2019 2019-05-01             5    2.690625
## 2322        May/2019 May 2019 2019-05-01             5    1.673152
## 2323        May/2019 May 2019 2019-05-01             5    1.669091
## 2324        May/2019 May 2019 2019-05-01             5    1.619772
## 2325        May/2019 May 2019 2019-05-01             5    1.665272
## 2326        May/2019 May 2019 2019-05-01             5    1.745536
## 2327        May/2019 May 2019 2019-05-01             5    1.729614
## 2328        May/2019 May 2019 2019-05-01             5    2.705479
## 2329        May/2019 May 2019 2019-05-01             5    1.727273
## 2330        May/2019 May 2019 2019-05-01             5    1.790441
## 2331        May/2019 May 2019 2019-05-01             5    1.560606
## 2332        May/2019 May 2019 2019-05-01             5    1.602996
## 2333        May/2019 May 2019 2019-05-01             5    2.666667
## 2334        May/2019 May 2019 2019-05-01             5    2.440860
## 2335        May/2019 May 2019 2019-05-01             5    2.607629
## 2336        May/2019 May 2019 2019-05-01             5    2.485342
## 2337        May/2019 May 2019 2019-05-01             5    2.832335
## 2338        May/2019 May 2019 2019-05-01             5    1.897436
## 2339        May/2019 May 2019 2019-05-01             5    2.697161
## 2340        May/2019 May 2019 2019-05-01             5    2.666667
## 2341        May/2019 May 2019 2019-05-01             5    2.647230
## 2342        May/2019 May 2019 2019-05-01             5    2.781768
## 2343        May/2019 May 2019 2019-05-01             5    2.651652
## 2344        May/2019 May 2019 2019-05-01             5    2.772242
## 2345        May/2019 May 2019 2019-05-01             5    2.640110
## 2346        May/2019 May 2019 2019-05-01             5    2.715686
## 2347        May/2019 May 2019 2019-05-01             5    2.630189
## 2348        May/2019 May 2019 2019-05-01             5    2.600619
## 2349        May/2019 May 2019 2019-05-01             5    2.674576
## 2350        May/2019 May 2019 2019-05-01             5    2.778169
## 2351        May/2019 May 2019 2019-05-01             5    2.620419
## 2352        May/2019 May 2019 2019-05-01             5    3.040404
## 2353        May/2019 May 2019 2019-05-01             5    2.638418
## 2354        May/2019 May 2019 2019-05-01             5    2.649351
## 2355        May/2019 May 2019 2019-05-01             5    1.616858
## 2356        May/2019 May 2019 2019-05-01             5    2.654501
## 2357        May/2019 May 2019 2019-05-01             5    2.590759
## 2358        May/2019 May 2019 2019-05-01             5    2.546053
## 2359        May/2019 May 2019 2019-05-01             5    2.705674
## 2360        May/2019 May 2019 2019-05-01             5    1.920455
## 2361        May/2019 May 2019 2019-05-01             5    2.582456
## 2362        May/2019 May 2019 2019-05-01             5    2.610119
## 2363        May/2019 May 2019 2019-05-01             5    2.614035
## 2364        May/2019 May 2019 2019-05-01             5    2.679083
## 2365        May/2019 May 2019 2019-05-01             5    1.747634
## 2366        May/2019 May 2019 2019-05-01             5    2.637462
## 2367        May/2019 May 2019 2019-05-01             5    2.150538
## 2368        May/2019 May 2019 2019-05-01             5    1.593168
## 2369        May/2019 May 2019 2019-05-01             5    1.622711
## 2370        May/2019 May 2019 2019-05-01             5    2.740310
## 2371        May/2019 May 2019 2019-05-01             5    1.533040
## 2372        May/2019 May 2019 2019-05-01             5    2.708075
## 2373        May/2019 May 2019 2019-05-01             5    2.536508
## 2374        May/2019 May 2019 2019-05-01             5    2.579946
## 2375        May/2019 May 2019 2019-05-01             5    1.824841
## 2376        May/2019 May 2019 2019-05-01             5    1.655870
## 2377        May/2019 May 2019 2019-05-01             5    1.783217
## 2378        May/2019 May 2019 2019-05-01             5    1.688581
## 2379        May/2019 May 2019 2019-05-01             5    1.817844
## 2380        May/2019 May 2019 2019-05-01             5    2.780405
## 2381        May/2019 May 2019 2019-05-01             5    1.599190
## 2382        May/2019 May 2019 2019-05-01             5    1.811245
## 2383        May/2019 May 2019 2019-05-01             5    1.604167
## 2384        May/2019 May 2019 2019-05-01             5    1.642623
## 2385        May/2019 May 2019 2019-05-01             5    1.603279
## 2386        May/2019 May 2019 2019-05-01             5    1.837004
## 2387        May/2019 May 2019 2019-05-01             5    1.642570
## 2388        May/2019 May 2019 2019-05-01             5    2.683824
## 2389        May/2019 May 2019 2019-05-01             5    1.855513
## 2390        May/2019 May 2019 2019-05-01             5    2.668919
## 2391        May/2019 May 2019 2019-05-01             5    2.624573
## 2392        May/2019 May 2019 2019-05-01             5    1.799320
## 2393        May/2019 May 2019 2019-05-01             5    1.543726
## 2394        May/2019 May 2019 2019-05-01             5    2.524430
## 2395        May/2019 May 2019 2019-05-01             5    2.654354
## 2396        May/2019 May 2019 2019-05-01             5    1.674157
## 2397        May/2019 May 2019 2019-05-01             5    1.578182
## 2398        May/2019 May 2019 2019-05-01             5    1.539007
## 2399        May/2019 May 2019 2019-05-01             5    1.654545
## 2400        May/2019 May 2019 2019-05-01             5    2.666667
## 2401        May/2019 May 2019 2019-05-01             5    1.770492
## 2402        May/2019 May 2019 2019-05-01             5    1.733591
## 2403    October/2019 Oct 2019 2019-10-01            10    2.673184
## 2404    October/2019 Oct 2019 2019-10-01            10    2.657738
## 2405    October/2019 Oct 2019 2019-10-01            10    2.606250
## 2406    October/2019 Oct 2019 2019-10-01            10    2.735376
## 2407    October/2019 Oct 2019 2019-10-01            10    2.897436
## 2408    October/2019 Oct 2019 2019-10-01            10    2.580292
## 2409    October/2019 Oct 2019 2019-10-01            10    2.795455
## 2410    October/2019 Oct 2019 2019-10-01            10    2.551515
## 2411    October/2019 Oct 2019 2019-10-01            10    2.682390
## 2412    October/2019 Oct 2019 2019-10-01            10    2.692308
## 2413    October/2019 Oct 2019 2019-10-01            10    2.778462
## 2414    October/2019 Oct 2019 2019-10-01            10    2.724518
## 2415    October/2019 Oct 2019 2019-10-01            10    1.582524
## 2416    October/2019 Oct 2019 2019-10-01            10    1.811847
## 2417    October/2019 Oct 2019 2019-10-01            10    2.771513
## 2418    October/2019 Oct 2019 2019-10-01            10    2.712610
## 2419    October/2019 Oct 2019 2019-10-01            10    2.673716
## 2420    October/2019 Oct 2019 2019-10-01            10    2.741333
## 2421    October/2019 Oct 2019 2019-10-01            10    2.657321
## 2422    October/2019 Oct 2019 2019-10-01            10    2.730408
## 2423    October/2019 Oct 2019 2019-10-01            10    2.689474
## 2424    October/2019 Oct 2019 2019-10-01            10    2.806452
## 2425    October/2019 Oct 2019 2019-10-01            10    2.570025
## 2426    October/2019 Oct 2019 2019-10-01            10    2.933993
## 2427    October/2019 Oct 2019 2019-10-01            10    2.774603
## 2428    October/2019 Oct 2019 2019-10-01            10    2.682451
## 2429    October/2019 Oct 2019 2019-10-01            10    2.769231
## 2430    October/2019 Oct 2019 2019-10-01            10    2.672087
## 2431    October/2019 Oct 2019 2019-10-01            10    2.486631
## 2432    October/2019 Oct 2019 2019-10-01            10    2.724796
## 2433    October/2019 Oct 2019 2019-10-01            10    2.795082
## 2434    October/2019 Oct 2019 2019-10-01            10    1.824427
## 2435    October/2019 Oct 2019 2019-10-01            10    2.740000
## 2436    October/2019 Oct 2019 2019-10-01            10    2.730159
## 2437    October/2019 Oct 2019 2019-10-01            10    2.885449
## 2438    October/2019 Oct 2019 2019-10-01            10    2.718033
## 2439    October/2019 Oct 2019 2019-10-01            10    2.774603
## 2440    October/2019 Oct 2019 2019-10-01            10    2.740132
## 2441    October/2019 Oct 2019 2019-10-01            10    2.643963
## 2442    October/2019 Oct 2019 2019-10-01            10    2.803681
## 2443    October/2019 Oct 2019 2019-10-01            10    2.674772
## 2444    October/2019 Oct 2019 2019-10-01            10    2.827586
## 2445    October/2019 Oct 2019 2019-10-01            10    2.654867
## 2446    October/2019 Oct 2019 2019-10-01            10    2.668990
## 2447    October/2019 Oct 2019 2019-10-01            10    2.747405
## 2448    October/2019 Oct 2019 2019-10-01            10    2.729904
## 2449    October/2019 Oct 2019 2019-10-01            10    2.552430
## 2450    October/2019 Oct 2019 2019-10-01            10    2.722892
## 2451    October/2019 Oct 2019 2019-10-01            10    2.674051
## 2452    October/2019 Oct 2019 2019-10-01            10    2.719653
## 2453    October/2019 Oct 2019 2019-10-01            10    2.860465
## 2454    October/2019 Oct 2019 2019-10-01            10    2.632075
## 2455    October/2019 Oct 2019 2019-10-01            10    2.563953
## 2456    October/2019 Oct 2019 2019-10-01            10    1.663043
## 2457    October/2019 Oct 2019 2019-10-01            10    2.489305
## 2458    October/2019 Oct 2019 2019-10-01            10    2.563518
## 2459    October/2019 Oct 2019 2019-10-01            10    2.569014
## 2460    October/2019 Oct 2019 2019-10-01            10    2.870871
## 2461    October/2019 Oct 2019 2019-10-01            10    2.572700
## 2462    October/2019 Oct 2019 2019-10-01            10    2.559459
## 2463    October/2019 Oct 2019 2019-10-01            10    3.008439
## 2464    October/2019 Oct 2019 2019-10-01            10    2.664336
## 2465    October/2019 Oct 2019 2019-10-01            10    2.557841
## 2466    October/2019 Oct 2019 2019-10-01            10    2.425656
## 2467    October/2019 Oct 2019 2019-10-01            10    2.551084
## 2468    October/2019 Oct 2019 2019-10-01            10    2.581538
## 2469    October/2019 Oct 2019 2019-10-01            10    2.517028
## 2470    October/2019 Oct 2019 2019-10-01            10    2.718354
## 2471    October/2019 Oct 2019 2019-10-01            10    2.603226
## 2472    October/2019 Oct 2019 2019-10-01            10    2.688889
## 2473    October/2019 Oct 2019 2019-10-01            10    2.774834
## 2474    October/2019 Oct 2019 2019-10-01            10    2.595016
## 2475    October/2019 Oct 2019 2019-10-01            10    2.771978
## 2476    October/2019 Oct 2019 2019-10-01            10    2.706553
## 2477    October/2019 Oct 2019 2019-10-01            10    2.588384
## 2478    October/2019 Oct 2019 2019-10-01            10    2.574534
## 2479    October/2019 Oct 2019 2019-10-01            10    2.750685
## 2480    October/2019 Oct 2019 2019-10-01            10    2.584570
## 2481    October/2019 Oct 2019 2019-10-01            10    2.619195
## 2482    October/2019 Oct 2019 2019-10-01            10    2.678063
## 2483    October/2019 Oct 2019 2019-10-01            10    2.769663
## 2484    October/2019 Oct 2019 2019-10-01            10    2.671733
## 2485    October/2019 Oct 2019 2019-10-01            10    2.772414
## 2486    October/2019 Oct 2019 2019-10-01            10    2.680519
## 2487    October/2019 Oct 2019 2019-10-01            10    2.627119
## 2488    October/2019 Oct 2019 2019-10-01            10    2.849850
## 2489    October/2019 Oct 2019 2019-10-01            10    2.802676
## 2490    October/2019 Oct 2019 2019-10-01            10    2.551813
## 2491    October/2019 Oct 2019 2019-10-01            10    2.758410
## 2492    October/2019 Oct 2019 2019-10-01            10    2.661184
## 2493    October/2019 Oct 2019 2019-10-01            10    2.737805
## 2494    October/2019 Oct 2019 2019-10-01            10    2.659443
## 2495    October/2019 Oct 2019 2019-10-01            10    2.694969
## 2496    October/2019 Oct 2019 2019-10-01            10    2.645251
## 2497    October/2019 Oct 2019 2019-10-01            10    2.777429
## 2498    October/2019 Oct 2019 2019-10-01            10    2.753463
## 2499    October/2019 Oct 2019 2019-10-01            10    2.761745
## 2500    October/2019 Oct 2019 2019-10-01            10    2.615591
## 2501    October/2019 Oct 2019 2019-10-01            10    2.752294
## 2502    October/2019 Oct 2019 2019-10-01            10    2.664671
## 2503    October/2019 Oct 2019 2019-10-01            10    2.521994
## 2504    October/2019 Oct 2019 2019-10-01            10    2.672365
## 2505    October/2019 Oct 2019 2019-10-01            10    2.780980
## 2506    October/2019 Oct 2019 2019-10-01            10    2.789668
## 2507    October/2019 Oct 2019 2019-10-01            10    2.744526
## 2508    October/2019 Oct 2019 2019-10-01            10    2.587662
## 2509    October/2019 Oct 2019 2019-10-01            10    2.590214
## 2510    October/2019 Oct 2019 2019-10-01            10    2.798077
## 2511    October/2019 Oct 2019 2019-10-01            10    2.635179
## 2512    October/2019 Oct 2019 2019-10-01            10    2.638978
## 2513    October/2019 Oct 2019 2019-10-01            10    2.785507
## 2514    October/2019 Oct 2019 2019-10-01            10    2.802292
## 2515    October/2019 Oct 2019 2019-10-01            10    2.679045
## 2516    October/2019 Oct 2019 2019-10-01            10    2.625000
## 2517    October/2019 Oct 2019 2019-10-01            10    2.694370
## 2518    October/2019 Oct 2019 2019-10-01            10    2.717391
## 2519    October/2019 Oct 2019 2019-10-01            10    2.816216
## 2520    October/2019 Oct 2019 2019-10-01            10    2.838983
## 2521    October/2019 Oct 2019 2019-10-01            10    2.689320
## 2522    October/2019 Oct 2019 2019-10-01            10    2.094697
## 2523    October/2019 Oct 2019 2019-10-01            10    2.654088
## 2524    October/2019 Oct 2019 2019-10-01            10    2.643590
## 2525    October/2019 Oct 2019 2019-10-01            10    2.793750
## 2526    October/2019 Oct 2019 2019-10-01            10    2.714674
## 2527    October/2019 Oct 2019 2019-10-01            10    2.852507
## 2528    October/2019 Oct 2019 2019-10-01            10    2.979094
## 2529    October/2019 Oct 2019 2019-10-01            10    2.694631
## 2530    October/2019 Oct 2019 2019-10-01            10    2.591331
## 2531    October/2019 Oct 2019 2019-10-01            10    2.722513
## 2532    October/2019 Oct 2019 2019-10-01            10    1.844371
## 2533    October/2019 Oct 2019 2019-10-01            10    2.702265
## 2534    October/2019 Oct 2019 2019-10-01            10    2.627507
## 2535    October/2019 Oct 2019 2019-10-01            10    2.500000
## 2536    October/2019 Oct 2019 2019-10-01            10    2.482558
## 2537    October/2019 Oct 2019 2019-10-01            10    2.824798
## 2538    October/2019 Oct 2019 2019-10-01            10    2.690027
## 2539    October/2019 Oct 2019 2019-10-01            10    2.697406
## 2540    October/2019 Oct 2019 2019-10-01            10    2.617414
## 2541    October/2019 Oct 2019 2019-10-01            10    1.721569
## 2542    October/2019 Oct 2019 2019-10-01            10    2.650000
## 2543    October/2019 Oct 2019 2019-10-01            10    2.160142
## 2544    October/2019 Oct 2019 2019-10-01            10    2.627692
## 2545    October/2019 Oct 2019 2019-10-01            10    2.764706
## 2546    October/2019 Oct 2019 2019-10-01            10    2.431973
## 2547    October/2019 Oct 2019 2019-10-01            10    2.653846
## 2548    October/2019 Oct 2019 2019-10-01            10    2.816054
## 2549    October/2019 Oct 2019 2019-10-01            10    2.688963
## 2550    October/2019 Oct 2019 2019-10-01            10    2.676364
## 2551    October/2019 Oct 2019 2019-10-01            10    2.609290
## 2552    October/2019 Oct 2019 2019-10-01            10    2.245353
## 2553    October/2019 Oct 2019 2019-10-01            10    2.695122
## 2554    October/2019 Oct 2019 2019-10-01            10    2.859599
## 2555    October/2019 Oct 2019 2019-10-01            10    2.698630
## 2556    October/2019 Oct 2019 2019-10-01            10    2.775641
## 2557    October/2019 Oct 2019 2019-10-01            10    2.709945
## 2558    October/2019 Oct 2019 2019-10-01            10    2.700767
## 2559    October/2019 Oct 2019 2019-10-01            10    2.672087
## 2560    October/2019 Oct 2019 2019-10-01            10    2.559028
## 2561    October/2019 Oct 2019 2019-10-01            10    2.566154
## 2562    October/2019 Oct 2019 2019-10-01            10    2.596491
## 2563    October/2019 Oct 2019 2019-10-01            10    2.639456
## 2564    October/2019 Oct 2019 2019-10-01            10    2.681698
## 2565    October/2019 Oct 2019 2019-10-01            10    2.620991
## 2566    October/2019 Oct 2019 2019-10-01            10    2.739414
## 2567    October/2019 Oct 2019 2019-10-01            10    2.641026
## 2568    October/2019 Oct 2019 2019-10-01            10    1.852201
## 2569    October/2019 Oct 2019 2019-10-01            10    2.834532
## 2570    October/2019 Oct 2019 2019-10-01            10    2.761246
## 2571    October/2019 Oct 2019 2019-10-01            10    2.637540
## 2572    October/2019 Oct 2019 2019-10-01            10    2.882943
## 2573    October/2019 Oct 2019 2019-10-01            10    2.687500
## 2574    October/2019 Oct 2019 2019-10-01            10    2.707746
## 2575    October/2019 Oct 2019 2019-10-01            10    1.963899
## 2576    October/2019 Oct 2019 2019-10-01            10    2.627451
## 2577    October/2019 Oct 2019 2019-10-01            10    2.461957
## 2578    October/2019 Oct 2019 2019-10-01            10    1.754864
## 2579    October/2019 Oct 2019 2019-10-01            10    1.884477
## 2580    October/2019 Oct 2019 2019-10-01            10    2.713816
## 2581    October/2019 Oct 2019 2019-10-01            10    2.691558
## 2582    October/2019 Oct 2019 2019-10-01            10    1.752443
## 2583    October/2019 Oct 2019 2019-10-01            10    2.864469
## 2584    October/2019 Oct 2019 2019-10-01            10    2.736667
## 2585    October/2019 Oct 2019 2019-10-01            10    1.915033
## 2586    October/2019 Oct 2019 2019-10-01            10    2.678261
## 2587    October/2019 Oct 2019 2019-10-01            10    2.343537
## 2588    October/2019 Oct 2019 2019-10-01            10    2.540925
## 2589    October/2019 Oct 2019 2019-10-01            10    2.560000
## 2590    October/2019 Oct 2019 2019-10-01            10    2.569733
## 2591    October/2019 Oct 2019 2019-10-01            10    1.642553
## 2592    October/2019 Oct 2019 2019-10-01            10    2.590164
## 2593    October/2019 Oct 2019 2019-10-01            10    2.481894
## 2594    October/2019 Oct 2019 2019-10-01            10    2.688356
## 2595    October/2019 Oct 2019 2019-10-01            10    2.776632
## 2596    October/2019 Oct 2019 2019-10-01            10    2.645570
## 2597    October/2019 Oct 2019 2019-10-01            10    2.433584
## 2598    October/2019 Oct 2019 2019-10-01            10    2.663934
## 2599    October/2019 Oct 2019 2019-10-01            10    2.528190
## 2600    October/2019 Oct 2019 2019-10-01            10    2.704023
## 2601    October/2019 Oct 2019 2019-10-01            10    2.638177
## 2602    October/2019 Oct 2019 2019-10-01            10    1.690299
## 2603    October/2019 Oct 2019 2019-10-01            10    2.700272
## 2604    October/2019 Oct 2019 2019-10-01            10    2.494286
## 2605    October/2019 Oct 2019 2019-10-01            10    1.913846
## 2606    October/2019 Oct 2019 2019-10-01            10    2.696532
## 2607    October/2019 Oct 2019 2019-10-01            10    2.522667
## 2608    October/2019 Oct 2019 2019-10-01            10    2.522727
## 2609    October/2019 Oct 2019 2019-10-01            10    2.674194
## 2610    October/2019 Oct 2019 2019-10-01            10    2.564885
## 2611    October/2019 Oct 2019 2019-10-01            10    2.715356
## 2612    October/2019 Oct 2019 2019-10-01            10    2.582043
## 2613    October/2019 Oct 2019 2019-10-01            10    2.690323
## 2614    October/2019 Oct 2019 2019-10-01            10    2.459119
## 2615    October/2019 Oct 2019 2019-10-01            10    2.762058
## 2616    October/2019 Oct 2019 2019-10-01            10    2.608150
## 2617    October/2019 Oct 2019 2019-10-01            10    2.691803
## 2618    October/2019 Oct 2019 2019-10-01            10    2.681818
## 2619    October/2019 Oct 2019 2019-10-01            10    2.667732
## 2620    October/2019 Oct 2019 2019-10-01            10    2.518797
## 2621    October/2019 Oct 2019 2019-10-01            10    2.671827
## 2622    October/2019 Oct 2019 2019-10-01            10    2.695767
## 2623    October/2019 Oct 2019 2019-10-01            10    2.641337
## 2624    October/2019 Oct 2019 2019-10-01            10    2.718750
## 2625    October/2019 Oct 2019 2019-10-01            10    2.592593
## 2626    October/2019 Oct 2019 2019-10-01            10    2.696049
## 2627    October/2019 Oct 2019 2019-10-01            10    2.478916
## 2628    October/2019 Oct 2019 2019-10-01            10    2.429429
## 2629    October/2019 Oct 2019 2019-10-01            10    2.633218
## 2630    October/2019 Oct 2019 2019-10-01            10    2.589674
## 2631    October/2019 Oct 2019 2019-10-01            10    2.543860
## 2632    October/2019 Oct 2019 2019-10-01            10    2.602606
## 2633    October/2019 Oct 2019 2019-10-01            10    2.972318
## 2634    October/2019 Oct 2019 2019-10-01            10    1.908759
## 2635    October/2019 Oct 2019 2019-10-01            10    1.694340
## 2636    October/2019 Oct 2019 2019-10-01            10    2.755932
## 2637    October/2019 Oct 2019 2019-10-01            10    1.825000
## 2638    October/2019 Oct 2019 2019-10-01            10    2.643258
## 2639    October/2019 Oct 2019 2019-10-01            10    2.674699
## 2640    October/2019 Oct 2019 2019-10-01            10    1.618110
## 2641    October/2019 Oct 2019 2019-10-01            10    2.039683
## 2642    October/2019 Oct 2019 2019-10-01            10    1.719697
## 2643    October/2019 Oct 2019 2019-10-01            10    2.084084
## 2644    October/2019 Oct 2019 2019-10-01            10    1.974110
## 2645    October/2019 Oct 2019 2019-10-01            10    2.506812
## 2646    October/2019 Oct 2019 2019-10-01            10    2.569322
## 2647    October/2019 Oct 2019 2019-10-01            10    2.565657
## 2648    October/2019 Oct 2019 2019-10-01            10    2.651163
## 2649    October/2019 Oct 2019 2019-10-01            10    1.681992
## 2650    October/2019 Oct 2019 2019-10-01            10    1.766393
## 2651    October/2019 Oct 2019 2019-10-01            10    1.886364
## 2652    October/2019 Oct 2019 2019-10-01            10    2.643059
## 2653    October/2019 Oct 2019 2019-10-01            10    2.524096
## 2654    October/2019 Oct 2019 2019-10-01            10    2.740741
## 2655    October/2019 Oct 2019 2019-10-01            10    1.661479
## 2656    October/2019 Oct 2019 2019-10-01            10    2.525773
## 2657    October/2019 Oct 2019 2019-10-01            10    2.680135
## 2658   February/2020 Feb 2020 2020-02-01             2    2.648810
## 2659   February/2020 Feb 2020 2020-02-01             2    2.582822
## 2660   February/2020 Feb 2020 2020-02-01             2    2.698361
## 2661   February/2020 Feb 2020 2020-02-01             2    2.737705
## 2662   February/2020 Feb 2020 2020-02-01             2    2.654839
## 2663   February/2020 Feb 2020 2020-02-01             2    2.489489
## 2664   February/2020 Feb 2020 2020-02-01             2    2.254839
## 2665   February/2020 Feb 2020 2020-02-01             2    2.670695
## 2666   February/2020 Feb 2020 2020-02-01             2    2.658863
## 2667   February/2020 Feb 2020 2020-02-01             2    2.739286
## 2668   February/2020 Feb 2020 2020-02-01             2    2.782609
## 2669   February/2020 Feb 2020 2020-02-01             2    2.797980
## 2670   February/2020 Feb 2020 2020-02-01             2    2.423469
## 2671   February/2020 Feb 2020 2020-02-01             2    2.504823
## 2672   February/2020 Feb 2020 2020-02-01             2    2.642857
## 2673   February/2020 Feb 2020 2020-02-01             2    2.564356
## 2674   February/2020 Feb 2020 2020-02-01             2    2.619883
## 2675   February/2020 Feb 2020 2020-02-01             2    2.724432
## 2676   February/2020 Feb 2020 2020-02-01             2    2.392405
## 2677   February/2020 Feb 2020 2020-02-01             2    2.375000
## 2678   February/2020 Feb 2020 2020-02-01             2    2.685430
## 2679   February/2020 Feb 2020 2020-02-01             2    2.276056
## 2680   February/2020 Feb 2020 2020-02-01             2    2.772414
## 2681   February/2020 Feb 2020 2020-02-01             2    2.410876
## 2682   February/2020 Feb 2020 2020-02-01             2    2.506369
## 2683   February/2020 Feb 2020 2020-02-01             2    2.510703
## 2684   February/2020 Feb 2020 2020-02-01             2    2.628975
## 2685   February/2020 Feb 2020 2020-02-01             2    2.309904
## 2686   February/2020 Feb 2020 2020-02-01             2    2.292899
## 2687   February/2020 Feb 2020 2020-02-01             2    2.500000
## 2688   February/2020 Feb 2020 2020-02-01             2    2.380240
## 2689   February/2020 Feb 2020 2020-02-01             2    2.471751
## 2690   February/2020 Feb 2020 2020-02-01             2    2.662791
## 2691   February/2020 Feb 2020 2020-02-01             2    2.690554
## 2692   February/2020 Feb 2020 2020-02-01             2    2.626582
## 2693   February/2020 Feb 2020 2020-02-01             2    2.688312
## 2694   February/2020 Feb 2020 2020-02-01             2    2.640845
## 2695   February/2020 Feb 2020 2020-02-01             2    2.528796
## 2696   February/2020 Feb 2020 2020-02-01             2    2.671388
## 2697   February/2020 Feb 2020 2020-02-01             2    2.647458
## 2698   February/2020 Feb 2020 2020-02-01             2    2.689349
## 2699   February/2020 Feb 2020 2020-02-01             2    2.792727
## 2700   February/2020 Feb 2020 2020-02-01             2    2.776471
## 2701   February/2020 Feb 2020 2020-02-01             2    2.641176
## 2702   February/2020 Feb 2020 2020-02-01             2    2.507418
## 2703   February/2020 Feb 2020 2020-02-01             2    2.527273
## 2704   February/2020 Feb 2020 2020-02-01             2    2.329193
## 2705   February/2020 Feb 2020 2020-02-01             2    2.576208
## 2706   February/2020 Feb 2020 2020-02-01             2    2.906615
## 2707   February/2020 Feb 2020 2020-02-01             2    2.511450
## 2708   February/2020 Feb 2020 2020-02-01             2    2.513846
## 2709   February/2020 Feb 2020 2020-02-01             2    2.596825
## 2710   February/2020 Feb 2020 2020-02-01             2    2.789137
## 2711   February/2020 Feb 2020 2020-02-01             2    2.756863
## 2712   February/2020 Feb 2020 2020-02-01             2    2.632727
## 2713   February/2020 Feb 2020 2020-02-01             2    2.612698
## 2714   February/2020 Feb 2020 2020-02-01             2    2.825000
## 2715   February/2020 Feb 2020 2020-02-01             2    2.765957
## 2716   February/2020 Feb 2020 2020-02-01             2    2.667763
## 2717   February/2020 Feb 2020 2020-02-01             2    2.482759
## 2718   February/2020 Feb 2020 2020-02-01             2    2.776978
## 2719   February/2020 Feb 2020 2020-02-01             2    2.724528
## 2720   February/2020 Feb 2020 2020-02-01             2    2.656716
## 2721   February/2020 Feb 2020 2020-02-01             2    2.506024
## 2722   February/2020 Feb 2020 2020-02-01             2    1.734426
## 2723   February/2020 Feb 2020 2020-02-01             2    1.657718
## 2724   February/2020 Feb 2020 2020-02-01             2    1.895307
## 2725   February/2020 Feb 2020 2020-02-01             2    2.567474
## 2726   February/2020 Feb 2020 2020-02-01             2    2.652308
## 2727   February/2020 Feb 2020 2020-02-01             2    2.280769
## 2728   February/2020 Feb 2020 2020-02-01             2    1.817490
## 2729   February/2020 Feb 2020 2020-02-01             2    1.804781
## 2730   February/2020 Feb 2020 2020-02-01             2    1.681063
## 2731   February/2020 Feb 2020 2020-02-01             2    2.784314
## 2732   February/2020 Feb 2020 2020-02-01             2    2.718310
## 2733   February/2020 Feb 2020 2020-02-01             2    2.726974
## 2734   February/2020 Feb 2020 2020-02-01             2    2.705167
## 2735   February/2020 Feb 2020 2020-02-01             2    2.697749
## 2736   February/2020 Feb 2020 2020-02-01             2    2.671975
## 2737   February/2020 Feb 2020 2020-02-01             2    2.608808
## 2738   February/2020 Feb 2020 2020-02-01             2    2.493225
## 2739   February/2020 Feb 2020 2020-02-01             2    2.893382
## 2740   February/2020 Feb 2020 2020-02-01             2    2.623377
## 2741   February/2020 Feb 2020 2020-02-01             2    2.636637
## 2742   February/2020 Feb 2020 2020-02-01             2    2.653465
## 2743   February/2020 Feb 2020 2020-02-01             2    2.626263
## 2744   February/2020 Feb 2020 2020-02-01             2    2.469208
## 2745   February/2020 Feb 2020 2020-02-01             2    2.704735
## 2746   February/2020 Feb 2020 2020-02-01             2    2.531507
## 2747   February/2020 Feb 2020 2020-02-01             2    2.605505
## 2748   February/2020 Feb 2020 2020-02-01             2    2.870432
## 2749   February/2020 Feb 2020 2020-02-01             2    2.608150
## 2750   February/2020 Feb 2020 2020-02-01             2    2.516517
## 2751   February/2020 Feb 2020 2020-02-01             2    2.833887
## 2752   February/2020 Feb 2020 2020-02-01             2    2.613208
## 2753   February/2020 Feb 2020 2020-02-01             2    2.709459
## 2754   February/2020 Feb 2020 2020-02-01             2    2.723214
## 2755   February/2020 Feb 2020 2020-02-01             2    2.800664
## 2756   February/2020 Feb 2020 2020-02-01             2    2.537975
## 2757   February/2020 Feb 2020 2020-02-01             2    2.507003
## 2758   February/2020 Feb 2020 2020-02-01             2    2.711974
## 2759   February/2020 Feb 2020 2020-02-01             2    2.685619
## 2760   February/2020 Feb 2020 2020-02-01             2    2.593668
## 2761   February/2020 Feb 2020 2020-02-01             2    2.861842
## 2762   February/2020 Feb 2020 2020-02-01             2    2.598726
## 2763   February/2020 Feb 2020 2020-02-01             2    2.656766
## 2764   February/2020 Feb 2020 2020-02-01             2    2.745098
## 2765   February/2020 Feb 2020 2020-02-01             2    2.715232
## 2766   February/2020 Feb 2020 2020-02-01             2    2.878963
## 2767   February/2020 Feb 2020 2020-02-01             2    2.600649
## 2768   February/2020 Feb 2020 2020-02-01             2    2.688679
## 2769   February/2020 Feb 2020 2020-02-01             2    2.719033
## 2770   February/2020 Feb 2020 2020-02-01             2    2.554896
## 2771   February/2020 Feb 2020 2020-02-01             2    2.562300
## 2772   February/2020 Feb 2020 2020-02-01             2    2.588050
## 2773   February/2020 Feb 2020 2020-02-01             2    2.624615
## 2774   February/2020 Feb 2020 2020-02-01             2    2.626866
## 2775   February/2020 Feb 2020 2020-02-01             2    2.665635
## 2776   February/2020 Feb 2020 2020-02-01             2    2.692308
## 2777   February/2020 Feb 2020 2020-02-01             2    2.467857
## 2778   February/2020 Feb 2020 2020-02-01             2    2.726236
## 2779   February/2020 Feb 2020 2020-02-01             2    2.682927
## 2780   February/2020 Feb 2020 2020-02-01             2    1.722222
## 2781   February/2020 Feb 2020 2020-02-01             2    1.794118
## 2782   February/2020 Feb 2020 2020-02-01             2    2.068702
## 2783   February/2020 Feb 2020 2020-02-01             2    1.698842
## 2784   February/2020 Feb 2020 2020-02-01             2    2.102473
## 2785   February/2020 Feb 2020 2020-02-01             2    1.698842
## 2786   February/2020 Feb 2020 2020-02-01             2    1.649635
## 2787   February/2020 Feb 2020 2020-02-01             2    1.487805
## 2788   February/2020 Feb 2020 2020-02-01             2    1.486068
## 2789   February/2020 Feb 2020 2020-02-01             2    1.690000
## 2790   February/2020 Feb 2020 2020-02-01             2    1.660194
## 2791   February/2020 Feb 2020 2020-02-01             2    1.687943
## 2792   February/2020 Feb 2020 2020-02-01             2    1.784387
## 2793   February/2020 Feb 2020 2020-02-01             2    1.794521
## 2794   February/2020 Feb 2020 2020-02-01             2    1.663194
## 2795   February/2020 Feb 2020 2020-02-01             2    1.884000
## 2796   February/2020 Feb 2020 2020-02-01             2    1.632143
## 2797   February/2020 Feb 2020 2020-02-01             2    1.582031
## 2798   February/2020 Feb 2020 2020-02-01             2    1.695833
## 2799   February/2020 Feb 2020 2020-02-01             2    1.659574
## 2800   February/2020 Feb 2020 2020-02-01             2    1.906977
## 2801   February/2020 Feb 2020 2020-02-01             2    1.718750
## 2802   February/2020 Feb 2020 2020-02-01             2    1.658228
## 2803   February/2020 Feb 2020 2020-02-01             2    2.607345
## 2804   February/2020 Feb 2020 2020-02-01             2    1.726688
## 2805   February/2020 Feb 2020 2020-02-01             2    1.724528
## 2806   February/2020 Feb 2020 2020-02-01             2    1.764085
## 2807   February/2020 Feb 2020 2020-02-01             2    1.673993
## 2808   February/2020 Feb 2020 2020-02-01             2    2.558333
## 2809   February/2020 Feb 2020 2020-02-01             2    1.650847
## 2810   February/2020 Feb 2020 2020-02-01             2    1.856164
## 2811   February/2020 Feb 2020 2020-02-01             2    2.534591
## 2812   February/2020 Feb 2020 2020-02-01             2    2.743333
## 2813   February/2020 Feb 2020 2020-02-01             2    2.633423
## 2814   February/2020 Feb 2020 2020-02-01             2    2.786982
## 2815   February/2020 Feb 2020 2020-02-01             2    2.802013
## 2816   February/2020 Feb 2020 2020-02-01             2    2.625000
## 2817   February/2020 Feb 2020 2020-02-01             2    3.009375
## 2818   February/2020 Feb 2020 2020-02-01             2    2.886850
## 2819   February/2020 Feb 2020 2020-02-01             2    2.630058
## 2820   February/2020 Feb 2020 2020-02-01             2    2.568702
## 2821   February/2020 Feb 2020 2020-02-01             2    2.708824
## 2822   February/2020 Feb 2020 2020-02-01             2    2.950820
## 2823   February/2020 Feb 2020 2020-02-01             2    2.876972
## 2824   February/2020 Feb 2020 2020-02-01             2    2.883721
## 2825   February/2020 Feb 2020 2020-02-01             2    2.775920
## 2826   February/2020 Feb 2020 2020-02-01             2    2.713873
## 2827   February/2020 Feb 2020 2020-02-01             2    2.540070
## 2828   February/2020 Feb 2020 2020-02-01             2    2.508929
## 2829   February/2020 Feb 2020 2020-02-01             2    2.840580
## 2830   February/2020 Feb 2020 2020-02-01             2    2.900000
## 2831   February/2020 Feb 2020 2020-02-01             2    2.746479
## 2832   February/2020 Feb 2020 2020-02-01             2    2.654987
## 2833   February/2020 Feb 2020 2020-02-01             2    2.659722
## 2834   February/2020 Feb 2020 2020-02-01             2    2.721831
## 2835   February/2020 Feb 2020 2020-02-01             2    2.827893
## 2836   February/2020 Feb 2020 2020-02-01             2    2.557103
## 2837   February/2020 Feb 2020 2020-02-01             2    2.672297
## 2838   February/2020 Feb 2020 2020-02-01             2    2.642442
## 2839   February/2020 Feb 2020 2020-02-01             2    2.642857
## 2840   February/2020 Feb 2020 2020-02-01             2    2.520000
## 2841   February/2020 Feb 2020 2020-02-01             2    2.589831
## 2842   February/2020 Feb 2020 2020-02-01             2    2.786667
## 2843   February/2020 Feb 2020 2020-02-01             2    2.506711
## 2844   February/2020 Feb 2020 2020-02-01             2    2.773885
## 2845   February/2020 Feb 2020 2020-02-01             2    2.706485
## 2846   February/2020 Feb 2020 2020-02-01             2    2.708571
## 2847   February/2020 Feb 2020 2020-02-01             2    2.677193
## 2848   February/2020 Feb 2020 2020-02-01             2    2.657609
## 2849   February/2020 Feb 2020 2020-02-01             2    2.801471
## 2850   February/2020 Feb 2020 2020-02-01             2    2.859649
## 2851   February/2020 Feb 2020 2020-02-01             2    2.410256
## 2852   February/2020 Feb 2020 2020-02-01             2    2.707447
## 2853   February/2020 Feb 2020 2020-02-01             2    2.777409
## 2854   February/2020 Feb 2020 2020-02-01             2    2.612426
## 2855   February/2020 Feb 2020 2020-02-01             2    2.694631
## 2856   February/2020 Feb 2020 2020-02-01             2    2.608939
## 2857   February/2020 Feb 2020 2020-02-01             2    2.831034
## 2858   February/2020 Feb 2020 2020-02-01             2    2.696697
## 2859   February/2020 Feb 2020 2020-02-01             2    2.631098
## 2860   February/2020 Feb 2020 2020-02-01             2    2.648968
## 2861   February/2020 Feb 2020 2020-02-01             2    2.782477
## 2862   February/2020 Feb 2020 2020-02-01             2    2.615917
## 2863   February/2020 Feb 2020 2020-02-01             2    2.854478
## 2864   February/2020 Feb 2020 2020-02-01             2    2.730556
## 2865   February/2020 Feb 2020 2020-02-01             2    2.934307
## 2866   February/2020 Feb 2020 2020-02-01             2    2.635452
## 2867   February/2020 Feb 2020 2020-02-01             2    2.649852
## 2868   February/2020 Feb 2020 2020-02-01             2    2.648725
## 2869   February/2020 Feb 2020 2020-02-01             2    2.735905
## 2870   February/2020 Feb 2020 2020-02-01             2    2.649682
## 2871   February/2020 Feb 2020 2020-02-01             2    2.628289
## 2872   February/2020 Feb 2020 2020-02-01             2    2.496914
## 2873   February/2020 Feb 2020 2020-02-01             2    2.571429
## 2874   February/2020 Feb 2020 2020-02-01             2    2.595016
## 2875   February/2020 Feb 2020 2020-02-01             2    2.792388
## 2876   February/2020 Feb 2020 2020-02-01             2    2.537190
## 2877   February/2020 Feb 2020 2020-02-01             2    2.786207
## 2878   February/2020 Feb 2020 2020-02-01             2    2.677326
## 2879   February/2020 Feb 2020 2020-02-01             2    2.835125
## 2880   February/2020 Feb 2020 2020-02-01             2    2.586957
## 2881   February/2020 Feb 2020 2020-02-01             2    2.750000
## 2882   February/2020 Feb 2020 2020-02-01             2    2.660000
## 2883   February/2020 Feb 2020 2020-02-01             2    2.797753
## 2884   February/2020 Feb 2020 2020-02-01             2    2.849398
## 2885   February/2020 Feb 2020 2020-02-01             2    2.783537
## 2886   February/2020 Feb 2020 2020-02-01             2    2.665738
## 2887   February/2020 Feb 2020 2020-02-01             2    2.670175
## 2888   February/2020 Feb 2020 2020-02-01             2    1.726236
## 2889   February/2020 Feb 2020 2020-02-01             2    2.715170
## 2890   February/2020 Feb 2020 2020-02-01             2    2.631068
## 2891   February/2020 Feb 2020 2020-02-01             2    2.832787
## 2892   February/2020 Feb 2020 2020-02-01             2    2.577061
## 2893   February/2020 Feb 2020 2020-02-01             2    2.717262
## 2894   February/2020 Feb 2020 2020-02-01             2    2.750799
## 2895   February/2020 Feb 2020 2020-02-01             2    2.564972
## 2896   February/2020 Feb 2020 2020-02-01             2    2.791946
## 2897   February/2020 Feb 2020 2020-02-01             2    2.571429
## 2898   February/2020 Feb 2020 2020-02-01             2    2.861111
## 2899   February/2020 Feb 2020 2020-02-01             2    2.636111
## 2900   February/2020 Feb 2020 2020-02-01             2    3.033582
## 2901   February/2020 Feb 2020 2020-02-01             2    2.388060
## 2902   February/2020 Feb 2020 2020-02-01             2    2.575931
## 2903   February/2020 Feb 2020 2020-02-01             2    2.703947
## 2904   February/2020 Feb 2020 2020-02-01             2    2.751748
## 2905   February/2020 Feb 2020 2020-02-01             2    2.513605
## 2906   February/2020 Feb 2020 2020-02-01             2    2.521084
## 2907   February/2020 Feb 2020 2020-02-01             2    2.839858
## 2908   February/2020 Feb 2020 2020-02-01             2    2.848993
## 2909   February/2020 Feb 2020 2020-02-01             2    2.615385
## 2910   February/2020 Feb 2020 2020-02-01             2    2.551370
## 2911   February/2020 Feb 2020 2020-02-01             2    2.401639
## 2912   February/2020 Feb 2020 2020-02-01             2    2.707071
## 2913   February/2020 Feb 2020 2020-02-01             2    2.588406
## 2914   February/2020 Feb 2020 2020-02-01             2    2.667702
## 2915   February/2020 Feb 2020 2020-02-01             2    2.551471
## 2916   February/2020 Feb 2020 2020-02-01             2    2.770968
## 2917   February/2020 Feb 2020 2020-02-01             2    2.671429
## 2918   February/2020 Feb 2020 2020-02-01             2    2.819728
## 2919   February/2020 Feb 2020 2020-02-01             2    1.857664
## 2920   February/2020 Feb 2020 2020-02-01             2    2.656667
## 2921   February/2020 Feb 2020 2020-02-01             2    2.518405
## 2922   February/2020 Feb 2020 2020-02-01             2    2.682432
## 2923   February/2020 Feb 2020 2020-02-01             2    2.683386
## 2924   February/2020 Feb 2020 2020-02-01             2    2.664653
## 2925   February/2020 Feb 2020 2020-02-01             2    2.820069
## 2926   February/2020 Feb 2020 2020-02-01             2    2.795987
## 2927   February/2020 Feb 2020 2020-02-01             2    2.745665
## 2928   February/2020 Feb 2020 2020-02-01             2    2.642651
## 2929   February/2020 Feb 2020 2020-02-01             2    2.564516
## 2930   February/2020 Feb 2020 2020-02-01             2    2.424332
## 2931   February/2020 Feb 2020 2020-02-01             2    1.732639
## 2932   February/2020 Feb 2020 2020-02-01             2    2.659016
## 2933   February/2020 Feb 2020 2020-02-01             2    2.466216
## 2934   February/2020 Feb 2020 2020-02-01             2    2.648276
## 2935   February/2020 Feb 2020 2020-02-01             2    2.823129
## 2936   February/2020 Feb 2020 2020-02-01             2    2.579125
## 2937   February/2020 Feb 2020 2020-02-01             2    2.592593
## 2938   February/2020 Feb 2020 2020-02-01             2    2.654971
## 2939   February/2020 Feb 2020 2020-02-01             2    2.627907
## 2940   February/2020 Feb 2020 2020-02-01             2    2.456338
## 2941   February/2020 Feb 2020 2020-02-01             2    2.610345
## 2942   February/2020 Feb 2020 2020-02-01             2    2.543624
## 2943   February/2020 Feb 2020 2020-02-01             2    2.509202
## 2944   February/2020 Feb 2020 2020-02-01             2    2.547692
## 2945   February/2020 Feb 2020 2020-02-01             2    2.635593
## 2946   February/2020 Feb 2020 2020-02-01             2    2.482249
## 2947   February/2020 Feb 2020 2020-02-01             2    2.640000
## 2948   February/2020 Feb 2020 2020-02-01             2    2.525084
## 2949   February/2020 Feb 2020 2020-02-01             2    2.645161
## 2950   February/2020 Feb 2020 2020-02-01             2    2.560261
## 2951   February/2020 Feb 2020 2020-02-01             2    2.645390
## 2952   February/2020 Feb 2020 2020-02-01             2    2.603217
## 2953   February/2020 Feb 2020 2020-02-01             2    2.578313
## 2954   February/2020 Feb 2020 2020-02-01             2    2.654605
## 2955   February/2020 Feb 2020 2020-02-01             2    2.462644
## 2956   February/2020 Feb 2020 2020-02-01             2    2.531646
## 2957   February/2020 Feb 2020 2020-02-01             2    2.612795
## 2958   February/2020 Feb 2020 2020-02-01             2    2.606498
## 2959   February/2020 Feb 2020 2020-02-01             2    2.652308
## 2960   February/2020 Feb 2020 2020-02-01             2    2.352349
## 2961   February/2020 Feb 2020 2020-02-01             2    2.484950
## 2962   February/2020 Feb 2020 2020-02-01             2    2.666667
## 2963   February/2020 Feb 2020 2020-02-01             2    2.618012
## 2964   February/2020 Feb 2020 2020-02-01             2    2.658730
## 2965   February/2020 Feb 2020 2020-02-01             2    2.732877
## 2966   February/2020 Feb 2020 2020-02-01             2    2.552561
## 2967   February/2020 Feb 2020 2020-02-01             2    2.775510
## 2968   February/2020 Feb 2020 2020-02-01             2    2.744505
## 2969   February/2020 Feb 2020 2020-02-01             2    2.516216
## 2970   February/2020 Feb 2020 2020-02-01             2    2.721713
## 2971   February/2020 Feb 2020 2020-02-01             2    2.584337
## 2972   February/2020 Feb 2020 2020-02-01             2    2.596825
## 2973   February/2020 Feb 2020 2020-02-01             2    2.580442
## 2974   February/2020 Feb 2020 2020-02-01             2    2.664384
## 2975   February/2020 Feb 2020 2020-02-01             2    2.609164
## 2976   February/2020 Feb 2020 2020-02-01             2    2.566225
## 2977   February/2020 Feb 2020 2020-02-01             2    2.528986
## 2978   February/2020 Feb 2020 2020-02-01             2    2.607774
## 2979   February/2020 Feb 2020 2020-02-01             2    2.786207
## 2980   February/2020 Feb 2020 2020-02-01             2    2.797468
## 2981   February/2020 Feb 2020 2020-02-01             2    2.666667
## 2982   February/2020 Feb 2020 2020-02-01             2    2.518072
## 2983   February/2020 Feb 2020 2020-02-01             2    2.633245
## 2984   February/2020 Feb 2020 2020-02-01             2    2.565445
## 2985   February/2020 Feb 2020 2020-02-01             2    2.549020
## 2986   February/2020 Feb 2020 2020-02-01             2    2.896104
## 2987   February/2020 Feb 2020 2020-02-01             2    2.604096
## 2988   February/2020 Feb 2020 2020-02-01             2    2.552553
## 2989   February/2020 Feb 2020 2020-02-01             2    2.644654
## 2990   February/2020 Feb 2020 2020-02-01             2    2.692529
## 2991   February/2020 Feb 2020 2020-02-01             2    2.710884
## 2992   February/2020 Feb 2020 2020-02-01             2    2.709343
## 2993   February/2020 Feb 2020 2020-02-01             2    2.717532
## 2994   February/2020 Feb 2020 2020-02-01             2    2.625000
## 2995   February/2020 Feb 2020 2020-02-01             2    2.612299
## 2996   February/2020 Feb 2020 2020-02-01             2    2.781350
## 2997   February/2020 Feb 2020 2020-02-01             2    3.068966
## 2998   February/2020 Feb 2020 2020-02-01             2    2.493188
## 2999   February/2020 Feb 2020 2020-02-01             2    2.375451
## 3000   February/2020 Feb 2020 2020-02-01             2    2.695035
## 3001   February/2020 Feb 2020 2020-02-01             2    2.615625
## 3002   February/2020 Feb 2020 2020-02-01             2    2.710526
## 3003   February/2020 Feb 2020 2020-02-01             2    2.488571
## 3004   February/2020 Feb 2020 2020-02-01             2    2.561873
## 3005   February/2020 Feb 2020 2020-02-01             2    2.542955
## 3006   February/2020 Feb 2020 2020-02-01             2    2.690852
## 3007   February/2020 Feb 2020 2020-02-01             2    2.655949
## 3008   February/2020 Feb 2020 2020-02-01             2    2.666667
## 3009   February/2020 Feb 2020 2020-02-01             2    2.603960
## 3010   February/2020 Feb 2020 2020-02-01             2    2.514745
## 3011   February/2020 Feb 2020 2020-02-01             2    2.517341
## 3012   February/2020 Feb 2020 2020-02-01             2    2.692053
## 3013   February/2020 Feb 2020 2020-02-01             2    2.643750
## 3014   February/2020 Feb 2020 2020-02-01             2    2.541916
## 3015   February/2020 Feb 2020 2020-02-01             2    2.542500
## 3016   February/2020 Feb 2020 2020-02-01             2    2.554098
## 3017   February/2020 Feb 2020 2020-02-01             2    2.600567
## 3018   February/2020 Feb 2020 2020-02-01             2    2.621538
## 3019   February/2020 Feb 2020 2020-02-01             2    2.671429
## 3020   February/2020 Feb 2020 2020-02-01             2    2.774306
## 3021   February/2020 Feb 2020 2020-02-01             2    2.630662
## 3022   February/2020 Feb 2020 2020-02-01             2    2.491228
## 3023   February/2020 Feb 2020 2020-02-01             2    2.681416
## 3024   February/2020 Feb 2020 2020-02-01             2    2.551495
## 3025   February/2020 Feb 2020 2020-02-01             2    2.581662
## 3026   February/2020 Feb 2020 2020-02-01             2    2.227273
## 3027   February/2020 Feb 2020 2020-02-01             2    2.486239
## 3028   February/2020 Feb 2020 2020-02-01             2    2.742574
## 3029   February/2020 Feb 2020 2020-02-01             2    1.986755
## 3030   February/2020 Feb 2020 2020-02-01             2    2.664557
## 3031   February/2020 Feb 2020 2020-02-01             2    2.839041
## 3032   February/2020 Feb 2020 2020-02-01             2    2.627517
## 3033   February/2020 Feb 2020 2020-02-01             2    2.617940
## 3034   February/2020 Feb 2020 2020-02-01             2    2.585455
## 3035   February/2020 Feb 2020 2020-02-01             2    2.706422
## 3036   February/2020 Feb 2020 2020-02-01             2    2.474265
## 3037   February/2020 Feb 2020 2020-02-01             2    2.472789
## 3038   February/2020 Feb 2020 2020-02-01             2    2.579710
## 3039   February/2020 Feb 2020 2020-02-01             2    2.590580
## 3040   February/2020 Feb 2020 2020-02-01             2    2.433735
## 3041   February/2020 Feb 2020 2020-02-01             2    2.715909
## 3042   February/2020 Feb 2020 2020-02-01             2    2.637195
## 3043   February/2020 Feb 2020 2020-02-01             2    2.560403
## 3044   February/2020 Feb 2020 2020-02-01             2    2.635379
## 3045   February/2020 Feb 2020 2020-02-01             2    2.530675
## 3046   February/2020 Feb 2020 2020-02-01             2    2.761290
## 3047   February/2020 Feb 2020 2020-02-01             2    2.783333
## 3048   February/2020 Feb 2020 2020-02-01             2    2.670213
## 3049   February/2020 Feb 2020 2020-02-01             2    2.756014
## 3050   February/2020 Feb 2020 2020-02-01             2    2.613636
## 3051   February/2020 Feb 2020 2020-02-01             2    2.401961
## 3052   February/2020 Feb 2020 2020-02-01             2    2.507553
## 3053   February/2020 Feb 2020 2020-02-01             2    2.643123
## 3054   February/2020 Feb 2020 2020-02-01             2    2.734426
## 3055   February/2020 Feb 2020 2020-02-01             2    2.601375
## 3056   February/2020 Feb 2020 2020-02-01             2    2.626230
## 3057   February/2020 Feb 2020 2020-02-01             2    2.633094
## 3058   February/2020 Feb 2020 2020-02-01             2    2.435644
## 3059   February/2020 Feb 2020 2020-02-01             2    2.559871
## 3060   February/2020 Feb 2020 2020-02-01             2    2.695652
## 3061   February/2020 Feb 2020 2020-02-01             2    2.658784
## 3062   February/2020 Feb 2020 2020-02-01             2    2.644951
## 3063   February/2020 Feb 2020 2020-02-01             2    2.652174
## 3064   February/2020 Feb 2020 2020-02-01             2    2.603960
## 3065   February/2020 Feb 2020 2020-02-01             2    2.665672
## 3066   February/2020 Feb 2020 2020-02-01             2    2.706371
## 3067   February/2020 Feb 2020 2020-02-01             2    2.776978
## 3068   February/2020 Feb 2020 2020-02-01             2    2.661677
## 3069   February/2020 Feb 2020 2020-02-01             2    2.745704
## 3070   February/2020 Feb 2020 2020-02-01             2    2.518519
## 3071   February/2020 Feb 2020 2020-02-01             2    2.682759
## 3072   February/2020 Feb 2020 2020-02-01             2    2.610169
## 3073   February/2020 Feb 2020 2020-02-01             2    2.773973
## 3074   February/2020 Feb 2020 2020-02-01             2    2.426513
## 3075   February/2020 Feb 2020 2020-02-01             2    2.500000
## 3076   February/2020 Feb 2020 2020-02-01             2    2.077739
## 3077   February/2020 Feb 2020 2020-02-01             2    2.695652
## 3078   February/2020 Feb 2020 2020-02-01             2    2.096154
## 3079   February/2020 Feb 2020 2020-02-01             2    2.708609
## 3080   February/2020 Feb 2020 2020-02-01             2    1.898496
## 3081   February/2020 Feb 2020 2020-02-01             2    1.655172
## 3082   February/2020 Feb 2020 2020-02-01             2    1.625387
## 3083   February/2020 Feb 2020 2020-02-01             2    2.021818
## 3084   February/2020 Feb 2020 2020-02-01             2    2.506849
## 3085   February/2020 Feb 2020 2020-02-01             2    1.485816
## 3086   February/2020 Feb 2020 2020-02-01             2    1.591837
## 3087   February/2020 Feb 2020 2020-02-01             2    1.753906
## 3088   February/2020 Feb 2020 2020-02-01             2    1.808140
## 3089   February/2020 Feb 2020 2020-02-01             2    1.587629
## 3090   February/2020 Feb 2020 2020-02-01             2    1.638393
## 3091   February/2020 Feb 2020 2020-02-01             2    2.562937
## 3092   February/2020 Feb 2020 2020-02-01             2    2.491620
## 3093   February/2020 Feb 2020 2020-02-01             2    2.516667
## 3094   February/2020 Feb 2020 2020-02-01             2    2.556667
## 3095   February/2020 Feb 2020 2020-02-01             2    2.821561
## 3096   February/2020 Feb 2020 2020-02-01             2    1.663121
## 3097   February/2020 Feb 2020 2020-02-01             2    1.618729
## 3098   February/2020 Feb 2020 2020-02-01             2    1.834677
## 3099   February/2020 Feb 2020 2020-02-01             2    1.686792
## 3100   February/2020 Feb 2020 2020-02-01             2    2.550409
## 3101   February/2020 Feb 2020 2020-02-01             2    2.296407
## 3102   February/2020 Feb 2020 2020-02-01             2    2.515723
## 3103   February/2020 Feb 2020 2020-02-01             2    2.609756
## 3104   February/2020 Feb 2020 2020-02-01             2    1.696370
## 3105   February/2020 Feb 2020 2020-02-01             2    1.709677
## 3106   February/2020 Feb 2020 2020-02-01             2    1.635739
## 3107   February/2020 Feb 2020 2020-02-01             2    1.527273
## 3108   February/2020 Feb 2020 2020-02-01             2    1.846473
## 3109   February/2020 Feb 2020 2020-02-01             2    1.905263
## 3110   February/2020 Feb 2020 2020-02-01             2    1.586331
## 3111   February/2020 Feb 2020 2020-02-01             2    1.738971
## 3112   February/2020 Feb 2020 2020-02-01             2    1.695652
## 3113   February/2020 Feb 2020 2020-02-01             2    1.520492
## 3114   February/2020 Feb 2020 2020-02-01             2    1.507812
## 3115   February/2020 Feb 2020 2020-02-01             2    1.562264
## 3116   February/2020 Feb 2020 2020-02-01             2    1.751037
## 3117   February/2020 Feb 2020 2020-02-01             2    1.531381
## 3118   February/2020 Feb 2020 2020-02-01             2    1.569767
## 3119   February/2020 Feb 2020 2020-02-01             2    1.673981
## 3120   February/2020 Feb 2020 2020-02-01             2    2.098765
## 3121   February/2020 Feb 2020 2020-02-01             2    1.653137
## 3122   February/2020 Feb 2020 2020-02-01             2    1.596491
## 3123   February/2020 Feb 2020 2020-02-01             2    1.704050
## 3124   February/2020 Feb 2020 2020-02-01             2    1.521429
## 3125   February/2020 Feb 2020 2020-02-01             2    1.813187
## 3126   February/2020 Feb 2020 2020-02-01             2    1.751938
## 3127   February/2020 Feb 2020 2020-02-01             2    1.666667
## 3128   February/2020 Feb 2020 2020-02-01             2    1.745875
## 3129   February/2020 Feb 2020 2020-02-01             2    1.576052
## 3130   February/2020 Feb 2020 2020-02-01             2    1.626866
## 3131   February/2020 Feb 2020 2020-02-01             2    2.589189
## 3132   February/2020 Feb 2020 2020-02-01             2    1.675573
## 3133   February/2020 Feb 2020 2020-02-01             2    1.669492
## 3134   February/2020 Feb 2020 2020-02-01             2    1.549801
## 3135   February/2020 Feb 2020 2020-02-01             2    1.607914
## 3136   February/2020 Feb 2020 2020-02-01             2    2.510638
## 3137   February/2020 Feb 2020 2020-02-01             2    1.836177
## 3138   February/2020 Feb 2020 2020-02-01             2    1.667752
## 3139   February/2020 Feb 2020 2020-02-01             2    1.761566
## 3140   February/2020 Feb 2020 2020-02-01             2    1.553459
## 3141   February/2020 Feb 2020 2020-02-01             2    1.714286
## 3142   February/2020 Feb 2020 2020-02-01             2    1.584775
## 3143   February/2020 Feb 2020 2020-02-01             2    2.649231
## 3144   February/2020 Feb 2020 2020-02-01             2    1.712644
## 3145   February/2020 Feb 2020 2020-02-01             2    1.597270
## 3146   February/2020 Feb 2020 2020-02-01             2    2.612500
## 3147   February/2020 Feb 2020 2020-02-01             2    1.588435
## 3148   February/2020 Feb 2020 2020-02-01             2    2.724138
## 3149   February/2020 Feb 2020 2020-02-01             2    1.875000
## 3150   February/2020 Feb 2020 2020-02-01             2    2.692308
## 3151   February/2020 Feb 2020 2020-02-01             2    2.620779
## 3152   February/2020 Feb 2020 2020-02-01             2    2.445230
## 3153   February/2020 Feb 2020 2020-02-01             2    2.471751
## 3154   February/2020 Feb 2020 2020-02-01             2    2.576803
## 3155   February/2020 Feb 2020 2020-02-01             2    2.638365
## 3156   February/2020 Feb 2020 2020-02-01             2    2.525641
## 3157   February/2020 Feb 2020 2020-02-01             2    2.523810
## 3158   February/2020 Feb 2020 2020-02-01             2    2.649832
## 3159   February/2020 Feb 2020 2020-02-01             2    2.509036
## 3160   February/2020 Feb 2020 2020-02-01             2    2.641447
## 3161   February/2020 Feb 2020 2020-02-01             2    2.554945
## 3162   February/2020 Feb 2020 2020-02-01             2    2.649718
## 3163   February/2020 Feb 2020 2020-02-01             2    2.672566
## 3164   February/2020 Feb 2020 2020-02-01             2    2.609756
## 3165   February/2020 Feb 2020 2020-02-01             2    2.508152
## 3166   February/2020 Feb 2020 2020-02-01             2    2.704180
## 3167   February/2020 Feb 2020 2020-02-01             2    2.549575
## 3168   February/2020 Feb 2020 2020-02-01             2    2.562500
## 3169   February/2020 Feb 2020 2020-02-01             2    2.616822
## 3170   February/2020 Feb 2020 2020-02-01             2    2.579114
## 3171   February/2020 Feb 2020 2020-02-01             2    2.610224
## 3172   February/2020 Feb 2020 2020-02-01             2    2.607362
## 3173   February/2020 Feb 2020 2020-02-01             2    2.587744
## 3174   February/2020 Feb 2020 2020-02-01             2    2.666667
## 3175   February/2020 Feb 2020 2020-02-01             2    2.665574
## 3176   February/2020 Feb 2020 2020-02-01             2    2.667732
## 3177   February/2020 Feb 2020 2020-02-01             2    2.550898
## 3178   February/2020 Feb 2020 2020-02-01             2    2.833333
## 3179   February/2020 Feb 2020 2020-02-01             2    2.861486
## 3180   February/2020 Feb 2020 2020-02-01             2    2.627660
## 3181   February/2020 Feb 2020 2020-02-01             2    2.797203
## 3182   February/2020 Feb 2020 2020-02-01             2    2.648649
## 3183   February/2020 Feb 2020 2020-02-01             2    2.713043
## 3184   February/2020 Feb 2020 2020-02-01             2    2.777778
## 3185   February/2020 Feb 2020 2020-02-01             2    2.662500
## 3186   February/2020 Feb 2020 2020-02-01             2    2.752542
## 3187   February/2020 Feb 2020 2020-02-01             2    2.712025
## 3188   February/2020 Feb 2020 2020-02-01             2    2.597222
## 3189   February/2020 Feb 2020 2020-02-01             2    2.679412
## 3190   February/2020 Feb 2020 2020-02-01             2    2.651877
## 3191   February/2020 Feb 2020 2020-02-01             2    2.721088
## 3192   February/2020 Feb 2020 2020-02-01             2    2.725632
## 3193   February/2020 Feb 2020 2020-02-01             2    2.652568
## 3194   February/2020 Feb 2020 2020-02-01             2    2.676976
## 3195   February/2020 Feb 2020 2020-02-01             2    2.733333
## 3196   February/2020 Feb 2020 2020-02-01             2    2.591900
## 3197   February/2020 Feb 2020 2020-02-01             2    2.672026
## 3198   February/2020 Feb 2020 2020-02-01             2    2.791086
## 3199   February/2020 Feb 2020 2020-02-01             2    2.569697
## 3200   February/2020 Feb 2020 2020-02-01             2    2.943925
## 3201   February/2020 Feb 2020 2020-02-01             2    2.824627
## 3202   February/2020 Feb 2020 2020-02-01             2    2.793103
## 3203   February/2020 Feb 2020 2020-02-01             2    2.705696
## 3204   February/2020 Feb 2020 2020-02-01             2    2.716981
## 3205   February/2020 Feb 2020 2020-02-01             2    2.474916
## 3206   February/2020 Feb 2020 2020-02-01             2    1.740310
## 3207   February/2020 Feb 2020 2020-02-01             2    1.629482
## 3208   February/2020 Feb 2020 2020-02-01             2    1.691781
## 3209   February/2020 Feb 2020 2020-02-01             2    1.650190
## 3210   February/2020 Feb 2020 2020-02-01             2    1.479876
## 3211   February/2020 Feb 2020 2020-02-01             2    2.711712
## 3212   February/2020 Feb 2020 2020-02-01             2    2.375000
## 3213   February/2020 Feb 2020 2020-02-01             2    1.676692
## 3214   February/2020 Feb 2020 2020-02-01             2    1.571930
## 3215   February/2020 Feb 2020 2020-02-01             2    1.654709
## 3216   February/2020 Feb 2020 2020-02-01             2    2.843636
## 3217   February/2020 Feb 2020 2020-02-01             2    1.692810
## 3218   February/2020 Feb 2020 2020-02-01             2    1.540193
## 3219   February/2020 Feb 2020 2020-02-01             2    1.475758
## 3220   February/2020 Feb 2020 2020-02-01             2    1.671642
## 3221   February/2020 Feb 2020 2020-02-01             2    1.596000
## 3222   February/2020 Feb 2020 2020-02-01             2    1.801724
## 3223   February/2020 Feb 2020 2020-02-01             2    2.613990
## 3224   February/2020 Feb 2020 2020-02-01             2    2.523810
## 3225   February/2020 Feb 2020 2020-02-01             2    2.523196
## 3226    October/2019 Oct 2019 2019-10-01            10    2.642623
## 3227    October/2019 Oct 2019 2019-10-01            10    2.531447
## 3228    October/2019 Oct 2019 2019-10-01            10    2.461126
## 3229    October/2019 Oct 2019 2019-10-01            10    2.546547
## 3230    October/2019 Oct 2019 2019-10-01            10    2.609231
## 3231    October/2019 Oct 2019 2019-10-01            10    2.592262
## 3232    October/2019 Oct 2019 2019-10-01            10    2.581281
## 3233    October/2019 Oct 2019 2019-10-01            10    2.664360
## 3234    October/2019 Oct 2019 2019-10-01            10    1.624242
## 3235    October/2019 Oct 2019 2019-10-01            10    2.652778
## 3236    October/2019 Oct 2019 2019-10-01            10    2.663333
## 3237    October/2019 Oct 2019 2019-10-01            10    2.631399
## 3238    October/2019 Oct 2019 2019-10-01            10    2.731959
## 3239    October/2019 Oct 2019 2019-10-01            10    2.677316
## 3240    October/2019 Oct 2019 2019-10-01            10    1.859107
## 3241    October/2019 Oct 2019 2019-10-01            10    1.715789
## 3242    October/2019 Oct 2019 2019-10-01            10    2.557003
## 3243    October/2019 Oct 2019 2019-10-01            10    2.493188
## 3244    October/2019 Oct 2019 2019-10-01            10    1.751678
## 3245    October/2019 Oct 2019 2019-10-01            10    2.560773
## 3246    October/2019 Oct 2019 2019-10-01            10    2.893103
## 3247    October/2019 Oct 2019 2019-10-01            10    2.733788
## 3248    October/2019 Oct 2019 2019-10-01            10    2.682119
## 3249    October/2019 Oct 2019 2019-10-01            10    2.729345
## 3250    October/2019 Oct 2019 2019-10-01            10    2.713415
## 3251    October/2019 Oct 2019 2019-10-01            10    2.658462
## 3252    October/2019 Oct 2019 2019-10-01            10    2.616129
## 3253    October/2019 Oct 2019 2019-10-01            10    2.612466
## 3254    October/2019 Oct 2019 2019-10-01            10    2.815436
## 3255    October/2019 Oct 2019 2019-10-01            10    2.665746
## 3256    October/2019 Oct 2019 2019-10-01            10    2.681690
## 3257    October/2019 Oct 2019 2019-10-01            10    2.833333
## 3258    October/2019 Oct 2019 2019-10-01            10    2.603261
## 3259    October/2019 Oct 2019 2019-10-01            10    2.567123
## 3260    October/2019 Oct 2019 2019-10-01            10    1.733788
## 3261    October/2019 Oct 2019 2019-10-01            10    2.577181
## 3262    October/2019 Oct 2019 2019-10-01            10    2.767956
## 3263    October/2019 Oct 2019 2019-10-01            10    2.672727
## 3264    October/2019 Oct 2019 2019-10-01            10    2.654255
## 3265    October/2019 Oct 2019 2019-10-01            10    2.675439
## 3266    October/2019 Oct 2019 2019-10-01            10    2.679790
## 3267    October/2019 Oct 2019 2019-10-01            10    2.737952
## 3268    October/2019 Oct 2019 2019-10-01            10    2.796657
## 3269    October/2019 Oct 2019 2019-10-01            10    2.697885
## 3270    October/2019 Oct 2019 2019-10-01            10    2.608696
## 3271    October/2019 Oct 2019 2019-10-01            10    2.673854
## 3272    October/2019 Oct 2019 2019-10-01            10    2.614493
## 3273    October/2019 Oct 2019 2019-10-01            10    2.735294
## 3274    October/2019 Oct 2019 2019-10-01            10    2.552707
## 3275    October/2019 Oct 2019 2019-10-01            10    1.904255
## 3276    October/2019 Oct 2019 2019-10-01            10    2.734899
## 3277    October/2019 Oct 2019 2019-10-01            10    2.445652
## 3278    October/2019 Oct 2019 2019-10-01            10    2.668966
## 3279    October/2019 Oct 2019 2019-10-01            10    2.547945
## 3280    October/2019 Oct 2019 2019-10-01            10    2.625455
## 3281    October/2019 Oct 2019 2019-10-01            10    2.609756
## 3282    October/2019 Oct 2019 2019-10-01            10    2.683673
## 3283    October/2019 Oct 2019 2019-10-01            10    2.516304
## 3284    October/2019 Oct 2019 2019-10-01            10    2.658307
## 3285    October/2019 Oct 2019 2019-10-01            10    2.597633
## 3286    October/2019 Oct 2019 2019-10-01            10    2.654952
## 3287    October/2019 Oct 2019 2019-10-01            10    2.557377
## 3288    October/2019 Oct 2019 2019-10-01            10    2.677143
## 3289    October/2019 Oct 2019 2019-10-01            10    2.806950
## 3290    October/2019 Oct 2019 2019-10-01            10    2.626289
## 3291    October/2019 Oct 2019 2019-10-01            10    2.617241
## 3292    October/2019 Oct 2019 2019-10-01            10    2.868339
## 3293    October/2019 Oct 2019 2019-10-01            10    2.845070
## 3294    October/2019 Oct 2019 2019-10-01            10    2.698507
## 3295    October/2019 Oct 2019 2019-10-01            10    2.680912
## 3296    October/2019 Oct 2019 2019-10-01            10    1.907631
## 3297    October/2019 Oct 2019 2019-10-01            10    2.513678
## 3298    October/2019 Oct 2019 2019-10-01            10    2.566085
## 3299    October/2019 Oct 2019 2019-10-01            10    2.821086
## 3300    October/2019 Oct 2019 2019-10-01            10    2.713864
## 3301    October/2019 Oct 2019 2019-10-01            10    2.765568
## 3302    October/2019 Oct 2019 2019-10-01            10    2.627451
## 3303    October/2019 Oct 2019 2019-10-01            10    2.691824
## 3304    October/2019 Oct 2019 2019-10-01            10    2.754601
## 3305    October/2019 Oct 2019 2019-10-01            10    2.758427
## 3306    October/2019 Oct 2019 2019-10-01            10    2.848185
## 3307    October/2019 Oct 2019 2019-10-01            10    2.587940
## 3308    October/2019 Oct 2019 2019-10-01            10    2.751678
## 3309    October/2019 Oct 2019 2019-10-01            10    2.700000
## 3310    October/2019 Oct 2019 2019-10-01            10    2.622356
## 3311    October/2019 Oct 2019 2019-10-01            10    2.569322
## 3312    October/2019 Oct 2019 2019-10-01            10    2.693603
## 3313    October/2019 Oct 2019 2019-10-01            10    2.575563
## 3314   December/2016 Dec 2016 2016-12-01            12    2.663185
## 3315   December/2016 Dec 2016 2016-12-01            12    1.627907
## 3316   December/2016 Dec 2016 2016-12-01            12    1.912536
## 3317   December/2016 Dec 2016 2016-12-01            12    1.714286
## 3318    October/2019 Oct 2019 2019-10-01            10    2.669540
## 3319    October/2019 Oct 2019 2019-10-01            10    2.738739
## 3320    October/2019 Oct 2019 2019-10-01            10    2.601770
## 3321    October/2019 Oct 2019 2019-10-01            10    2.811688
## 3322    October/2019 Oct 2019 2019-10-01            10    2.621053
## 3323    October/2019 Oct 2019 2019-10-01            10    2.616519
## 3324    October/2019 Oct 2019 2019-10-01            10    2.645646
## 3325    October/2019 Oct 2019 2019-10-01            10    2.735016
## 3326    October/2019 Oct 2019 2019-10-01            10    2.580475
## 3327    October/2019 Oct 2019 2019-10-01            10    2.567976
## 3328    October/2019 Oct 2019 2019-10-01            10    1.647940
## 3329    October/2019 Oct 2019 2019-10-01            10    2.681818
## 3330    October/2019 Oct 2019 2019-10-01            10    1.730435
## 3331    October/2019 Oct 2019 2019-10-01            10    2.623794
## 3332    October/2019 Oct 2019 2019-10-01            10    2.845506
## 3333    October/2019 Oct 2019 2019-10-01            10    2.783088
## 3334    October/2019 Oct 2019 2019-10-01            10    2.438356
## 3335    October/2019 Oct 2019 2019-10-01            10    2.554913
## 3336    October/2019 Oct 2019 2019-10-01            10    2.627760
## 3337    October/2019 Oct 2019 2019-10-01            10    2.663073
## 3338    October/2019 Oct 2019 2019-10-01            10    2.695341
## 3339    October/2019 Oct 2019 2019-10-01            10    2.570571
## 3340        May/2019 May 2019 2019-05-01             5    2.498592
## 3341        May/2019 May 2019 2019-05-01             5    1.587459
## 3342        May/2019 May 2019 2019-05-01             5    2.790123
## 3343        May/2019 May 2019 2019-05-01             5    2.841499
## 3344        May/2019 May 2019 2019-05-01             5    2.629213
## 3345        May/2019 May 2019 2019-05-01             5    2.706897
## 3346        May/2019 May 2019 2019-05-01             5    2.706840
## 3347        May/2019 May 2019 2019-05-01             5    2.712281
## 3348        May/2019 May 2019 2019-05-01             5    2.503521
## 3349        May/2019 May 2019 2019-05-01             5    2.579937
## 3350        May/2019 May 2019 2019-05-01             5    2.824561
## 3351        May/2019 May 2019 2019-05-01             5    2.731250
## 3352        May/2019 May 2019 2019-05-01             5    2.900662
## 3353        May/2019 May 2019 2019-05-01             5    2.284884
## 3354        May/2019 May 2019 2019-05-01             5    2.666667
## 3355        May/2019 May 2019 2019-05-01             5    2.766154
## 3356        May/2019 May 2019 2019-05-01             5    2.677165
## 3357        May/2019 May 2019 2019-05-01             5    2.854545
## 3358        May/2019 May 2019 2019-05-01             5    2.591503
## 3359        May/2019 May 2019 2019-05-01             5    2.325228
## 3360        May/2019 May 2019 2019-05-01             5    2.715596
## 3361        May/2019 May 2019 2019-05-01             5    2.523962
## 3362        May/2019 May 2019 2019-05-01             5    2.748344
## 3363        May/2019 May 2019 2019-05-01             5    3.248227
## 3364        May/2019 May 2019 2019-05-01             5    2.802985
## 3365        May/2019 May 2019 2019-05-01             5    2.889213
## 3366        May/2019 May 2019 2019-05-01             5    2.597911
## 3367        May/2019 May 2019 2019-05-01             5    2.439898
## 3368        May/2019 May 2019 2019-05-01             5    2.759791
## 3369        May/2019 May 2019 2019-05-01             5    2.934426
## 3370        May/2019 May 2019 2019-05-01             5    2.718579
## 3371        May/2019 May 2019 2019-05-01             5    2.692771
## 3372        May/2019 May 2019 2019-05-01             5    2.615873
## 3373        May/2019 May 2019 2019-05-01             5    3.033784
## 3374        May/2019 May 2019 2019-05-01             5    2.812698
## 3375        May/2019 May 2019 2019-05-01             5    2.730650
## 3376        May/2019 May 2019 2019-05-01             5    2.390909
## 3377        May/2019 May 2019 2019-05-01             5    2.729642
## 3378        May/2019 May 2019 2019-05-01             5    2.806878
## 3379        May/2019 May 2019 2019-05-01             5    2.325581
## 3380        May/2019 May 2019 2019-05-01             5    2.646875
## 3381        May/2019 May 2019 2019-05-01             5    2.740053
## 3382        May/2019 May 2019 2019-05-01             5    2.208000
## 3383        May/2019 May 2019 2019-05-01             5    2.219917
## 3384        May/2019 May 2019 2019-05-01             5    3.026012
## 3385        May/2019 May 2019 2019-05-01             5    2.792793
## 3386        May/2019 May 2019 2019-05-01             5    2.544000
## 3387        May/2019 May 2019 2019-05-01             5    2.697128
## 3388        May/2019 May 2019 2019-05-01             5    2.617021
## 3389        May/2019 May 2019 2019-05-01             5    2.567164
## 3390        May/2019 May 2019 2019-05-01             5    2.525316
## 3391        May/2019 May 2019 2019-05-01             5    2.812689
## 3392        May/2019 May 2019 2019-05-01             5    3.041045
## 3393        May/2019 May 2019 2019-05-01             5    2.948387
## 3394        May/2019 May 2019 2019-05-01             5    2.887755
## 3395        May/2019 May 2019 2019-05-01             5    2.571816
## 3396        May/2019 May 2019 2019-05-01             5    2.402367
## 3397        May/2019 May 2019 2019-05-01             5    2.720745
## 3398        May/2019 May 2019 2019-05-01             5    2.620000
## 3399        May/2019 May 2019 2019-05-01             5    2.951140
## 3400        May/2019 May 2019 2019-05-01             5    2.974522
## 3401        May/2019 May 2019 2019-05-01             5    2.856061
## 3402        May/2019 May 2019 2019-05-01             5    2.233645
## 3403        May/2019 May 2019 2019-05-01             5    2.809816
## 3404        May/2019 May 2019 2019-05-01             5    2.506083
## 3405        May/2019 May 2019 2019-05-01             5    2.759076
## 3406        May/2019 May 2019 2019-05-01             5    2.625330
## 3407        May/2019 May 2019 2019-05-01             5    2.780576
## 3408        May/2019 May 2019 2019-05-01             5    2.584000
## 3409        May/2019 May 2019 2019-05-01             5    2.731788
## 3410        May/2019 May 2019 2019-05-01             5    2.671010
## 3411        May/2019 May 2019 2019-05-01             5    2.567647
## 3412        May/2019 May 2019 2019-05-01             5    2.891374
## 3413        May/2019 May 2019 2019-05-01             5    2.912621
## 3414        May/2019 May 2019 2019-05-01             5    2.812298
## 3415        May/2019 May 2019 2019-05-01             5    2.216667
## 3416        May/2019 May 2019 2019-05-01             5    2.972892
## 3417        May/2019 May 2019 2019-05-01             5    2.502890
## 3418        May/2019 May 2019 2019-05-01             5    2.889273
## 3419        May/2019 May 2019 2019-05-01             5    2.715084
## 3420        May/2019 May 2019 2019-05-01             5    2.598662
## 3421        May/2019 May 2019 2019-05-01             5    2.309783
## 3422        May/2019 May 2019 2019-05-01             5    2.404624
## 3423        May/2019 May 2019 2019-05-01             5    2.803636
## 3424        May/2019 May 2019 2019-05-01             5    2.541547
## 3425        May/2019 May 2019 2019-05-01             5    2.386010
## 3426        May/2019 May 2019 2019-05-01             5    2.504505
## 3427        May/2019 May 2019 2019-05-01             5    2.431877
## 3428        May/2019 May 2019 2019-05-01             5    2.483283
## 3429        May/2019 May 2019 2019-05-01             5    2.294737
## 3430        May/2019 May 2019 2019-05-01             5    2.706522
## 3431        May/2019 May 2019 2019-05-01             5    1.746094
## 3432        May/2019 May 2019 2019-05-01             5    2.322767
## 3433        May/2019 May 2019 2019-05-01             5    2.802395
## 3434        May/2019 May 2019 2019-05-01             5    2.714744
## 3435        May/2019 May 2019 2019-05-01             5    2.848943
## 3436        May/2019 May 2019 2019-05-01             5    2.312155
## 3437        May/2019 May 2019 2019-05-01             5    2.754601
## 3438        May/2019 May 2019 2019-05-01             5    2.798780
## 3439        May/2019 May 2019 2019-05-01             5    2.433526
## 3440        May/2019 May 2019 2019-05-01             5    2.523810
## 3441        May/2019 May 2019 2019-05-01             5    2.450151
## 3442        May/2019 May 2019 2019-05-01             5    2.500000
## 3443        May/2019 May 2019 2019-05-01             5    2.448718
## 3444        May/2019 May 2019 2019-05-01             5    2.264935
## 3445        May/2019 May 2019 2019-05-01             5    2.314149
## 3446        May/2019 May 2019 2019-05-01             5    2.173469
## 3447        May/2019 May 2019 2019-05-01             5    2.354930
## 3448        May/2019 May 2019 2019-05-01             5    2.858156
## 3449        May/2019 May 2019 2019-05-01             5    2.717087
## 3450        May/2019 May 2019 2019-05-01             5    2.594901
## 3451        May/2019 May 2019 2019-05-01             5    2.626543
## 3452        May/2019 May 2019 2019-05-01             5    2.544118
## 3453        May/2019 May 2019 2019-05-01             5    2.475177
## 3454        May/2019 May 2019 2019-05-01             5    2.643766
## 3455        May/2019 May 2019 2019-05-01             5    2.752266
## 3456        May/2019 May 2019 2019-05-01             5    2.539326
## 3457        May/2019 May 2019 2019-05-01             5    2.724490
## 3458        May/2019 May 2019 2019-05-01             5    2.524590
## 3459        May/2019 May 2019 2019-05-01             5    2.536388
## 3460        May/2019 May 2019 2019-05-01             5    2.768769
## 3461        May/2019 May 2019 2019-05-01             5    2.667785
## 3462        May/2019 May 2019 2019-05-01             5    2.465969
## 3463        May/2019 May 2019 2019-05-01             5    2.640957
## 3464        May/2019 May 2019 2019-05-01             5    2.591160
## 3465        May/2019 May 2019 2019-05-01             5    2.653165
## 3466        May/2019 May 2019 2019-05-01             5    2.548287
## 3467        May/2019 May 2019 2019-05-01             5    2.519231
## 3468        May/2019 May 2019 2019-05-01             5    2.540404
## 3469        May/2019 May 2019 2019-05-01             5    2.670360
## 3470        May/2019 May 2019 2019-05-01             5    2.734568
## 3471        May/2019 May 2019 2019-05-01             5    2.720548
## 3472        May/2019 May 2019 2019-05-01             5    2.464286
## 3473        May/2019 May 2019 2019-05-01             5    2.557864
## 3474        May/2019 May 2019 2019-05-01             5    2.428571
## 3475        May/2019 May 2019 2019-05-01             5    2.812689
## 3476        May/2019 May 2019 2019-05-01             5    2.775194
## 3477        May/2019 May 2019 2019-05-01             5    2.892308
## 3478        May/2019 May 2019 2019-05-01             5    2.866477
## 3479        May/2019 May 2019 2019-05-01             5    2.473684
## 3480        May/2019 May 2019 2019-05-01             5    2.552347
## 3481        May/2019 May 2019 2019-05-01             5    2.696721
## 3482        May/2019 May 2019 2019-05-01             5    2.634868
## 3483        May/2019 May 2019 2019-05-01             5    2.356209
## 3484        May/2019 May 2019 2019-05-01             5    2.264151
## 3485        May/2019 May 2019 2019-05-01             5    2.032051
##      wing_morph_binom     X.utm   Y.utm
## 1                   1 1010045.4 2956118
## 2                   1 1010045.4 2956118
## 3                   1 1010045.4 2956118
## 4                   1 1010045.4 2956118
## 5                   1 1010045.4 2956118
## 6                   1 1010045.4 2956118
## 7                   1 1010045.4 2956118
## 8                   1 1010045.4 2956118
## 9                   1 1010045.4 2956118
## 10                  1 1010045.4 2956118
## 11                  1 1010045.4 2956118
## 12                  1 1010045.4 2956118
## 13                  1 1010045.4 2956118
## 14                  1 1010045.4 2956118
## 15                  0 1010045.4 2956118
## 16                  1 1010045.4 2956118
## 17                  1 1010045.4 2956118
## 18                  1 1010045.4 2956118
## 19                  1 1010045.4 2956118
## 20                  1 1010045.4 2956118
## 21                  1 1010045.4 2956118
## 22                  1 1010045.4 2956118
## 23                  1 1010045.4 2956118
## 24                  1 1010045.4 2956118
## 25                  1 1010045.4 2956118
## 26                  1 1010045.4 2956118
## 27                  1 1010045.4 2956118
## 28                  1 1010045.4 2956118
## 29                  0 1010045.4 2956118
## 30                  0 1010045.4 2956118
## 31                  1 1010045.4 2956118
## 32                  1 1010045.4 2956118
## 33                  1 1010045.4 2956118
## 34                  1 1010045.4 2956118
## 35                  0 1010045.4 2956118
## 36                  1 1010045.4 2956118
## 37                  1 1010045.4 2956118
## 38                  1 1010045.4 2956118
## 39                  1 1010045.4 2956118
## 40                  1 1010045.4 2956118
## 41                  1 1010045.4 2956118
## 42                  1 1010045.4 2956118
## 43                  1 1010045.4 2956118
## 44                  0 1010045.4 2956118
## 45                  1 1010045.4 2956118
## 46                  1 1010045.4 2956118
## 47                  1 1010045.4 2956118
## 48                  0 1010045.4 2956118
## 49                  1 1010045.4 2956118
## 50                  1 1010045.4 2956118
## 51                  1 1010045.4 2956118
## 52                  1 1010045.4 2956118
## 53                  1 1010045.4 2956118
## 54                  1 1010045.4 2956118
## 55                  1 1010045.4 2956118
## 56                  1 1010045.4 2956118
## 57                  1 1010045.4 2956118
## 58                  1 1010045.4 2956118
## 59                  1 1010045.4 2956118
## 60                  1 1010045.4 2956118
## 61                  1 1010045.4 2956118
## 62                  1 1010045.4 2956118
## 63                  1 1010045.4 2956118
## 64                  1 1010045.4 2956118
## 65                  1 1010045.4 2956118
## 66                  1 1010045.4 2956118
## 67                  1 1010045.4 2956118
## 68                  1 1010045.4 2956118
## 69                  1 1010045.4 2956118
## 70                  1 1010045.4 2956118
## 71                  1 1010045.4 2956118
## 72                  1 1010045.4 2956118
## 73                  1 1010045.4 2956118
## 74                  1 1010045.4 2956118
## 75                  1 1010045.4 2956118
## 76                  0 1158272.9 2844458
## 77                  1 1158272.9 2844458
## 78                  1 1158272.9 2844458
## 79                  1 1158272.9 2844458
## 80                  0 1158272.9 2844458
## 81                  1 1158272.9 2844458
## 82                  0 1158272.9 2844458
## 83                  0 1158272.9 2844458
## 84                  1 1158272.9 2844458
## 85                  0 1158272.9 2844458
## 86                  0 1158272.9 2844458
## 87                  0 1158272.9 2844458
## 88                  0 1158272.9 2844458
## 89                  0 1158272.9 2844458
## 90                  0 1158272.9 2844458
## 91                  0 1158272.9 2844458
## 92                  0 1158272.9 2844458
## 93                  1 1158272.9 2844458
## 94                  1 1158272.9 2844458
## 95                  0 1158272.9 2844458
## 96                  1 1158272.9 2844458
## 97                  1 1158272.9 2844458
## 98                  1 1158272.9 2844458
## 99                  1 1158272.9 2844458
## 100                 0 1158272.9 2844458
## 101                 1 1158272.9 2844458
## 102                 1 1158272.9 2844458
## 103                 1 1158272.9 2844458
## 104                 1 1158272.9 2844458
## 105                 1 1158272.9 2844458
## 106                 1 1158272.9 2844458
## 107                 0 1158272.9 2844458
## 108                 1 1158272.9 2844458
## 109                 1 1158272.9 2844458
## 110                 1 1158272.9 2844458
## 111                 1 1158272.9 2844458
## 112                 0 1158272.9 2844458
## 113                 1 1158272.9 2844458
## 114                 1 1155605.3 2835437
## 115                 1 1155605.3 2835437
## 116                 1 1155605.3 2835437
## 117                 1 1155605.3 2835437
## 118                 1 1155605.3 2835437
## 119                 1 1155605.3 2835437
## 120                 1 1155605.3 2835437
## 121                 1 1155605.3 2835437
## 122                 1 1155605.3 2835437
## 123                 1 1155605.3 2835437
## 124                 1 1155605.3 2835437
## 125                 1 1155605.3 2835437
## 126                 1 1155605.3 2835437
## 127                 1 1155605.3 2835437
## 128                 1 1155605.3 2835437
## 129                 1 1155605.3 2835437
## 130                 1 1155605.3 2835437
## 131                 1 1155605.3 2835437
## 132                 1 1155605.3 2835437
## 133                 1 1155605.3 2835437
## 134                 1 1155605.3 2835437
## 135                 1 1155605.3 2835437
## 136                 1 1155605.3 2835437
## 137                 1 1155605.3 2835437
## 138                 1 1155605.3 2835437
## 139                 1 1155605.3 2835437
## 140                 1 1171365.6 2803203
## 141                 1 1171365.6 2803203
## 142                 1 1171365.6 2803203
## 143                 1 1171365.6 2803203
## 144                 0 1171365.6 2803203
## 145                 1 1171365.6 2803203
## 146                 1 1171365.6 2803203
## 147                 1 1171365.6 2803203
## 148                 1 1171365.6 2803203
## 149                 1 1171365.6 2803203
## 150                 0 1171365.6 2803203
## 151                 1 1171365.6 2803203
## 152                 1 1171365.6 2803203
## 153                 1 1171365.6 2803203
## 154                 1 1171365.6 2803203
## 155                 1 1171365.6 2803203
## 156                 1 1171365.6 2803203
## 157                 1 1171365.6 2803203
## 158                 1 1171365.6 2803203
## 159                 0 1171365.6 2803203
## 160                 1 1171365.6 2803203
## 161                 0 1171365.6 2803203
## 162                 1 1171365.6 2803203
## 163                 1 1171365.6 2803203
## 164                 1 1171365.6 2803203
## 165                 1 1171365.6 2803203
## 166                 1 1171365.6 2803203
## 167                 1 1171365.6 2803203
## 168                 1 1171365.6 2803203
## 169                 1 1171365.6 2803203
## 170                 1 1171365.6 2803203
## 171                 1 1171365.6 2803203
## 172                 1 1171365.6 2803203
## 173                 1 1171365.6 2803203
## 174                 1 1171365.6 2803203
## 175                 0 1171365.6 2803203
## 176                 1 1171365.6 2803203
## 177                 1 1171365.6 2803203
## 178                 1 1171365.6 2803203
## 179                 1 1171365.6 2803203
## 180                 1 1171365.6 2803203
## 181                 1 1171365.6 2803203
## 182                 0 1171365.6 2803203
## 183                 1 1171365.6 2803203
## 184                 0 1171365.6 2803203
## 185                 1 1171365.6 2803203
## 186                 1 1171365.6 2803203
## 187                 1 1171365.6 2803203
## 188                 1 1171365.6 2803203
## 189                 0 1171365.6 2803203
## 190                 0 1171365.6 2803203
## 191                 1 1171365.6 2803203
## 192                 1 1171365.6 2803203
## 193                 0 1171365.6 2803203
## 194                 0 1171365.6 2803203
## 195                 1 1171365.6 2803203
## 196                 1 1171365.6 2803203
## 197                 1 1171365.6 2803203
## 198                 1 1171365.6 2803203
## 199                 1 1171365.6 2803203
## 200                 1 1171365.6 2803203
## 201                 1 1034209.3 3102002
## 202                 1 1034209.3 3102002
## 203                 1 1034209.3 3102002
## 204                 1 1034209.3 3102002
## 205                 1 1034209.3 3102002
## 206                 1 1034209.3 3102002
## 207                 1 1034209.3 3102002
## 208                 1 1034209.3 3102002
## 209                 1 1034209.3 3102002
## 210                 1 1034209.3 3102002
## 211                 1 1034209.3 3102002
## 212                 1 1034209.3 3102002
## 213                 1 1034209.3 3102002
## 214                 0 1034209.3 3102002
## 215                 1 1034209.3 3102002
## 216                 0 1034209.3 3102002
## 217                 1 1034209.3 3102002
## 218                 0 1034209.3 3102002
## 219                 1 1034209.3 3102002
## 220                 1 1034209.3 3102002
## 221                 1 1034209.3 3102002
## 222                 1 1034209.3 3102002
## 223                 1 1034209.3 3102002
## 224                 1 1034209.3 3102002
## 225                 0 1034209.3 3102002
## 226                 1 1034209.3 3102002
## 227                 1 1034209.3 3102002
## 228                 1 1034209.3 3102002
## 229                 0 1034209.3 3102002
## 230                 1 1034209.3 3102002
## 231                 1 1034209.3 3102002
## 232                 1 1034209.3 3102002
## 233                 1 1034209.3 3102002
## 234                 1 1034209.3 3102002
## 235                 1 1034209.3 3102002
## 236                 1 1034209.3 3102002
## 237                 1 1034209.3 3102002
## 238                 1 1034209.3 3102002
## 239                 1 1034209.3 3102002
## 240                 1 1034209.3 3102002
## 241                 1 1034209.3 3102002
## 242                 0 1034209.3 3102002
## 243                 1 1034209.3 3102002
## 244                 1 1034209.3 3102002
## 245                 1 1034209.3 3102002
## 246                 1 1034209.3 3102002
## 247                 1 1034209.3 3102002
## 248                 1 1034209.3 3102002
## 249                 1 1034209.3 3102002
## 250                 1 1034209.3 3102002
## 251                 1 1034209.3 3102002
## 252                 1 1034209.3 3102002
## 253                 1 1034209.3 3102002
## 254                 1 1034209.3 3102002
## 255                 1 1034209.3 3102002
## 256                 1 1034209.3 3102002
## 257                 1 1034209.3 3102002
## 258                 0 1034209.3 3102002
## 259                 1 1034209.3 3102002
## 260                 1 1034209.3 3102002
## 261                 0 1000214.3 3196197
## 262                 0 1000214.3 3196197
## 263                 1 1000214.3 3196197
## 264                 0 1000214.3 3196197
## 265                 1 1000214.3 3196197
## 266                 0 1000214.3 3196197
## 267                 1 1000214.3 3196197
## 268                 1 1000214.3 3196197
## 269                 1 1000214.3 3196197
## 270                 1 1000214.3 3196197
## 271                 1 1000214.3 3196197
## 272                 1 1000214.3 3196197
## 273                 1 1000214.3 3196197
## 274                 0 1000214.3 3196197
## 275                 1 1000214.3 3196197
## 276                 1 1000214.3 3196197
## 277                 1 1000214.3 3196197
## 278                 1 1000214.3 3196197
## 279                 1 1000214.3 3196197
## 280                 1 1000214.3 3196197
## 281                 0 1000214.3 3196197
## 282                 1 1000214.3 3196197
## 283                 1 1000214.3 3196197
## 284                 0 1000214.3 3196197
## 285                 1 1000214.3 3196197
## 286                 1 1151165.2 2777107
## 287                 0 1151165.2 2777107
## 288                 1 1151165.2 2777107
## 289                 1 1151165.2 2777107
## 290                 1 1151165.2 2777107
## 291                 1 1151165.2 2777107
## 292                 1 1151165.2 2777107
## 293                 0 1151165.2 2777107
## 294                 1 1151165.2 2777107
## 295                 0 1151165.2 2777107
## 296                 0 1151165.2 2777107
## 297                 0 1151165.2 2777107
## 298                 1 1151165.2 2777107
## 299                 0 1151165.2 2777107
## 300                 1 1151165.2 2777107
## 301                 1 1151165.2 2777107
## 302                 1 1151165.2 2777107
## 303                 1 1151165.2 2777107
## 304                 0 1151165.2 2777107
## 305                 1 1151165.2 2777107
## 306                 1 1151165.2 2777107
## 307                 0 1151165.2 2777107
## 308                 0 1151165.2 2777107
## 309                 1 1151165.2 2777107
## 310                 0 1151165.2 2777107
## 311                 0 1151165.2 2777107
## 312                 0 1151165.2 2777107
## 313                 1 1151165.2 2777107
## 314                 1 1151165.2 2777107
## 315                 1 1151165.2 2777107
## 316                 1 1151165.2 2777107
## 317                 0 1151165.2 2777107
## 318                 0 1151165.2 2777107
## 319                 1 1151165.2 2777107
## 320                 0 1151165.2 2777107
## 321                 1 1151165.2 2777107
## 322                 1 1010045.4 2956118
## 323                 1 1010045.4 2956118
## 324                 1 1010045.4 2956118
## 325                 1 1010045.4 2956118
## 326                 1 1010045.4 2956118
## 327                 1 1010045.4 2956118
## 328                 1 1010045.4 2956118
## 329                 1 1010045.4 2956118
## 330                 1 1010045.4 2956118
## 331                 1 1010045.4 2956118
## 332                 1 1010045.4 2956118
## 333                 0 1010045.4 2956118
## 334                 1 1010045.4 2956118
## 335                 1 1010045.4 2956118
## 336                 1 1010045.4 2956118
## 337                 1 1010045.4 2956118
## 338                 1 1010045.4 2956118
## 339                 1 1010045.4 2956118
## 340                 1 1010045.4 2956118
## 341                 1 1010045.4 2956118
## 342                 1 1010045.4 2956118
## 343                 1 1010045.4 2956118
## 344                 1 1010045.4 2956118
## 345                 1 1010045.4 2956118
## 346                 1 1010045.4 2956118
## 347                 1 1010045.4 2956118
## 348                 1 1010045.4 2956118
## 349                 1 1010045.4 2956118
## 350                 1 1010045.4 2956118
## 351                 1 1010045.4 2956118
## 352                 1 1010045.4 2956118
## 353                 1 1010045.4 2956118
## 354                 1 1010045.4 2956118
## 355                 1 1010045.4 2956118
## 356                 1 1010045.4 2956118
## 357                 1 1010045.4 2956118
## 358                 1 1010045.4 2956118
## 359                 1 1010045.4 2956118
## 360                 1 1010045.4 2956118
## 361                 1 1010045.4 2956118
## 362                 1 1010045.4 2956118
## 363                 1 1010045.4 2956118
## 364                 1 1010045.4 2956118
## 365                 1 1010045.4 2956118
## 366                 1 1010045.4 2956118
## 367                 1 1010045.4 2956118
## 368                 1 1010045.4 2956118
## 369                 1 1010045.4 2956118
## 370                 1 1010045.4 2956118
## 371                 1 1010045.4 2956118
## 372                 1 1010045.4 2956118
## 373                 1 1010045.4 2956118
## 374                 1 1010045.4 2956118
## 375                 1 1010045.4 2956118
## 376                 1 1010045.4 2956118
## 377                 1 1010045.4 2956118
## 378                 1 1010045.4 2956118
## 379                 1 1010045.4 2956118
## 380                 1 1010045.4 2956118
## 381                 1 1010045.4 2956118
## 382                 1 1010045.4 2956118
## 383                 1 1010045.4 2956118
## 384                 1 1010045.4 2956118
## 385                 1 1010045.4 2956118
## 386                 1 1010045.4 2956118
## 387                 1 1010045.4 2956118
## 388                 1 1010045.4 2956118
## 389                 1 1010045.4 2956118
## 390                 1 1010045.4 2956118
## 391                 1 1010045.4 2956118
## 392                 1 1010045.4 2956118
## 393                 1 1010045.4 2956118
## 394                 1 1010045.4 2956118
## 395                 1 1010045.4 2956118
## 396                 1 1010045.4 2956118
## 397                 1  949182.1 3290538
## 398                 1  949182.1 3290538
## 399                 1  949182.1 3290538
## 400                 1  949182.1 3290538
## 401                 1  949182.1 3290538
## 402                 1  949182.1 3290538
## 403                 1  949182.1 3290538
## 404                 1  949182.1 3290538
## 405                 1  949182.1 3290538
## 406                 1  949182.1 3290538
## 407                 1  949182.1 3290538
## 408                 1  949182.1 3290538
## 409                 1  949182.1 3290538
## 410                 1  949182.1 3290538
## 411                 0 1158272.9 2844458
## 412                 0 1158272.9 2844458
## 413                 1 1158272.9 2844458
## 414                 1 1158272.9 2844458
## 415                 0 1158272.9 2844458
## 416                 0 1158272.9 2844458
## 417                 1 1158272.9 2844458
## 418                 1 1158272.9 2844458
## 419                 0 1158272.9 2844458
## 420                 1 1158272.9 2844458
## 421                 0 1158272.9 2844458
## 422                 1 1158272.9 2844458
## 423                 0 1158272.9 2844458
## 424                 0 1158272.9 2844458
## 425                 1 1158272.9 2844458
## 426                 1 1158272.9 2844458
## 427                 0 1158272.9 2844458
## 428                 0 1158272.9 2844458
## 429                 0 1158272.9 2844458
## 430                 1 1158272.9 2844458
## 431                 1 1158272.9 2844458
## 432                 1 1158272.9 2844458
## 433                 1 1158272.9 2844458
## 434                 1 1155605.3 2835437
## 435                 0 1155605.3 2835437
## 436                 1 1155605.3 2835437
## 437                 0 1155605.3 2835437
## 438                 0 1155605.3 2835437
## 439                 1 1155605.3 2835437
## 440                 1 1155605.3 2835437
## 441                 1 1155605.3 2835437
## 442                 1 1155605.3 2835437
## 443                 1 1155605.3 2835437
## 444                 0 1155605.3 2835437
## 445                 1 1155605.3 2835437
## 446                 1 1155605.3 2835437
## 447                 1 1155605.3 2835437
## 448                 0 1155605.3 2835437
## 449                 0 1155605.3 2835437
## 450                 1 1155605.3 2835437
## 451                 0 1155605.3 2835437
## 452                 0 1155605.3 2835437
## 453                 1 1155605.3 2835437
## 454                 1 1155605.3 2835437
## 455                 0 1155605.3 2835437
## 456                 1 1155605.3 2835437
## 457                 1 1155605.3 2835437
## 458                 0 1155605.3 2835437
## 459                 1 1155605.3 2835437
## 460                 1 1155605.3 2835437
## 461                 1 1155605.3 2835437
## 462                 1 1155605.3 2835437
## 463                 1 1164740.8 2794842
## 464                 1 1164740.8 2794842
## 465                 0 1164740.8 2794842
## 466                 1 1164740.8 2794842
## 467                 1 1164740.8 2794842
## 468                 1 1164740.8 2794842
## 469                 1 1164740.8 2794842
## 470                 0 1164740.8 2794842
## 471                 1 1164740.8 2794842
## 472                 0 1164740.8 2794842
## 473                 1 1164740.8 2794842
## 474                 1 1164740.8 2794842
## 475                 1 1164740.8 2794842
## 476                 1 1164740.8 2794842
## 477                 1 1164740.8 2794842
## 478                 0 1164740.8 2794842
## 479                 0 1164740.8 2794842
## 480                 1 1164740.8 2794842
## 481                 1 1164740.8 2794842
## 482                 1 1164740.8 2794842
## 483                 1 1164740.8 2794842
## 484                 1 1164740.8 2794842
## 485                 1 1164740.8 2794842
## 486                 1 1164740.8 2794842
## 487                 1 1164740.8 2794842
## 488                 1 1164740.8 2794842
## 489                 1 1164740.8 2794842
## 490                 1 1164740.8 2794842
## 491                 1 1164740.8 2794842
## 492                 1 1164740.8 2794842
## 493                 0 1164740.8 2794842
## 494                 1 1164740.8 2794842
## 495                 1 1032899.8 3098294
## 496                 1 1032899.8 3098294
## 497                 1 1032899.8 3098294
## 498                 1 1032899.8 3098294
## 499                 1 1032899.8 3098294
## 500                 1 1032899.8 3098294
## 501                 1 1032899.8 3098294
## 502                 1 1032899.8 3098294
## 503                 1 1032899.8 3098294
## 504                 1 1032899.8 3098294
## 505                 1 1032899.8 3098294
## 506                 1 1032899.8 3098294
## 507                 1 1032899.8 3098294
## 508                 1 1032899.8 3098294
## 509                 1 1032899.8 3098294
## 510                 1 1032899.8 3098294
## 511                 1 1032899.8 3098294
## 512                 1 1032899.8 3098294
## 513                 1 1032899.8 3098294
## 514                 1 1032899.8 3098294
## 515                 1 1032899.8 3098294
## 516                 1 1032899.8 3098294
## 517                 1 1032899.8 3098294
## 518                 1 1032899.8 3098294
## 519                 1 1032899.8 3098294
## 520                 1 1032899.8 3098294
## 521                 1 1032899.8 3098294
## 522                 1 1032899.8 3098294
## 523                 1 1032899.8 3098294
## 524                 1 1032899.8 3098294
## 525                 1 1032899.8 3098294
## 526                 1 1032899.8 3098294
## 527                 1 1032899.8 3098294
## 528                 1 1032899.8 3098294
## 529                 1 1032899.8 3098294
## 530                 1 1032899.8 3098294
## 531                 1 1032899.8 3098294
## 532                 1 1032899.8 3098294
## 533                 1 1032899.8 3098294
## 534                 1 1032899.8 3098294
## 535                 1 1032899.8 3098294
## 536                 1 1032899.8 3098294
## 537                 1 1032899.8 3098294
## 538                 1 1032899.8 3098294
## 539                 1 1032899.8 3098294
## 540                 1 1032899.8 3098294
## 541                 1 1032899.8 3098294
## 542                 1 1032899.8 3098294
## 543                 1 1032899.8 3098294
## 544                 1 1032899.8 3098294
## 545                 1 1032899.8 3098294
## 546                 1 1032899.8 3098294
## 547                 1 1032899.8 3098294
## 548                 1 1032899.8 3098294
## 549                 1 1032899.8 3098294
## 550                 1 1032899.8 3098294
## 551                 1 1032899.8 3098294
## 552                 1 1032899.8 3098294
## 553                 1 1032899.8 3098294
## 554                 1 1032899.8 3098294
## 555                 1 1032899.8 3098294
## 556                 1 1032899.8 3098294
## 557                 1 1032899.8 3098294
## 558                 1 1032899.8 3098294
## 559                 1 1032899.8 3098294
## 560                 1 1032899.8 3098294
## 561                 1 1032899.8 3098294
## 562                 1 1032899.8 3098294
## 563                 1 1032899.8 3098294
## 564                 1 1032899.8 3098294
## 565                 1 1032899.8 3098294
## 566                 1 1032899.8 3098294
## 567                 1 1032899.8 3098294
## 568                 1 1032899.8 3098294
## 569                 1 1032899.8 3098294
## 570                 1 1032899.8 3098294
## 571                 1 1032899.8 3098294
## 572                 1 1032899.8 3098294
## 573                 1 1032899.8 3098294
## 574                 1 1032899.8 3098294
## 575                 1 1032899.8 3098294
## 576                 1 1032899.8 3098294
## 577                 1 1032899.8 3098294
## 578                 1 1032899.8 3098294
## 579                 1 1000240.8 3196176
## 580                 1 1000240.8 3196176
## 581                 1 1000240.8 3196176
## 582                 1 1000240.8 3196176
## 583                 1 1000240.8 3196176
## 584                 1 1000240.8 3196176
## 585                 1 1000240.8 3196176
## 586                 1 1000240.8 3196176
## 587                 1 1000240.8 3196176
## 588                 1 1000240.8 3196176
## 589                 1 1000240.8 3196176
## 590                 1 1000240.8 3196176
## 591                 1 1000240.8 3196176
## 592                 1 1000240.8 3196176
## 593                 1 1000240.8 3196176
## 594                 1 1000240.8 3196176
## 595                 1 1000240.8 3196176
## 596                 1 1000240.8 3196176
## 597                 1 1000240.8 3196176
## 598                 1 1000240.8 3196176
## 599                 1 1000240.8 3196176
## 600                 1 1000240.8 3196176
## 601                 1 1000240.8 3196176
## 602                 1 1000240.8 3196176
## 603                 1 1000240.8 3196176
## 604                 1 1000240.8 3196176
## 605                 1 1000240.8 3196176
## 606                 1 1000240.8 3196176
## 607                 1 1000240.8 3196176
## 608                 1 1000240.8 3196176
## 609                 1 1000240.8 3196176
## 610                 1 1000240.8 3196176
## 611                 1 1000240.8 3196176
## 612                 1 1000240.8 3196176
## 613                 1 1000240.8 3196176
## 614                 1 1000240.8 3196176
## 615                 1 1000240.8 3196176
## 616                 1 1000240.8 3196176
## 617                 1 1000240.8 3196176
## 618                 1 1000240.8 3196176
## 619                 1 1000240.8 3196176
## 620                 1 1000240.8 3196176
## 621                 1 1000240.8 3196176
## 622                 1 1000240.8 3196176
## 623                 1 1000240.8 3196176
## 624                 1 1000240.8 3196176
## 625                 1 1000240.8 3196176
## 626                 1 1000240.8 3196176
## 627                 0 1000240.8 3196176
## 628                 1 1000240.8 3196176
## 629                 1 1000240.8 3196176
## 630                 1 1000240.8 3196176
## 631                 1 1000240.8 3196176
## 632                 1 1000240.8 3196176
## 633                 1 1000240.8 3196176
## 634                 1 1000240.8 3196176
## 635                 1 1000240.8 3196176
## 636                 1 1000240.8 3196176
## 637                 1 1000240.8 3196176
## 638                 1 1000240.8 3196176
## 639                 1 1000240.8 3196176
## 640                 1 1000240.8 3196176
## 641                 1 1000240.8 3196176
## 642                 1 1000240.8 3196176
## 643                 1 1000240.8 3196176
## 644                 1 1000240.8 3196176
## 645                 1 1000240.8 3196176
## 646                 1 1000240.8 3196176
## 647                 1 1000240.8 3196176
## 648                 1 1000240.8 3196176
## 649                 1 1000240.8 3196176
## 650                 1 1000240.8 3196176
## 651                 1 1000240.8 3196176
## 652                 1 1000240.8 3196176
## 653                 1 1000240.8 3196176
## 654                 1 1000240.8 3196176
## 655                 1 1000240.8 3196176
## 656                 1 1000240.8 3196176
## 657                 1 1000240.8 3196176
## 658                 1 1000240.8 3196176
## 659                 1 1000240.8 3196176
## 660                 1 1000240.8 3196176
## 661                 1 1000240.8 3196176
## 662                 1 1000240.8 3196176
## 663                 1 1000240.8 3196176
## 664                 1 1000240.8 3196176
## 665                 0 1000240.8 3196176
## 666                 1 1000240.8 3196176
## 667                 1 1000240.8 3196176
## 668                 1 1000240.8 3196176
## 669                 1 1000240.8 3196176
## 670                 1 1150184.3 2776463
## 671                 1 1150184.3 2776463
## 672                 1 1150184.3 2776463
## 673                 1 1150184.3 2776463
## 674                 1 1150184.3 2776463
## 675                 1 1150184.3 2776463
## 676                 1 1150184.3 2776463
## 677                 1 1150184.3 2776463
## 678                 1 1150184.3 2776463
## 679                 0 1150184.3 2776463
## 680                 1 1150184.3 2776463
## 681                 1 1150184.3 2776463
## 682                 1 1150184.3 2776463
## 683                 1 1150184.3 2776463
## 684                 1 1150184.3 2776463
## 685                 1 1150184.3 2776463
## 686                 1 1150184.3 2776463
## 687                 1 1150184.3 2776463
## 688                 1 1150184.3 2776463
## 689                 1 1150184.3 2776463
## 690                 1 1150184.3 2776463
## 691                 1 1150184.3 2776463
## 692                 1 1150184.3 2776463
## 693                 1 1150184.3 2776463
## 694                 1 1150184.3 2776463
## 695                 1 1150184.3 2776463
## 696                 0 1150184.3 2776463
## 697                 1 1150184.3 2776463
## 698                 1 1150184.3 2776463
## 699                 1 1150184.3 2776463
## 700                 1 1150184.3 2776463
## 701                 0 1150184.3 2776463
## 702                 1 1150184.3 2776463
## 703                 0 1150184.3 2776463
## 704                 1 1150184.3 2776463
## 705                 1  949182.1 3290538
## 706                 1  949182.1 3290538
## 707                 1  949182.1 3290538
## 708                 1  949182.1 3290538
## 709                 1  949182.1 3290538
## 710                 1  949182.1 3290538
## 711                 1  949182.1 3290538
## 712                 1  949182.1 3290538
## 713                 1  949182.1 3290538
## 714                 1  949182.1 3290538
## 715                 1  949182.1 3290538
## 716                 1  949182.1 3290538
## 717                 1  949182.1 3290538
## 718                 1  949182.1 3290538
## 719                 1  949182.1 3290538
## 720                 1  949182.1 3290538
## 721                 1  949182.1 3290538
## 722                 1  949182.1 3290538
## 723                 1  949182.1 3290538
## 724                 1  949182.1 3290538
## 725                 1  949182.1 3290538
## 726                 0  949182.1 3290538
## 727                 1  949182.1 3290538
## 728                 1  949182.1 3290538
## 729                 1  949182.1 3290538
## 730                 1  949182.1 3290538
## 731                 1  949182.1 3290538
## 732                 0  949182.1 3290538
## 733                 1  949182.1 3290538
## 734                 1  949182.1 3290538
## 735                 1  949182.1 3290538
## 736                 1  949182.1 3290538
## 737                 1  949182.1 3290538
## 738                 1  949182.1 3290538
## 739                 1  949182.1 3290538
## 740                 1  949182.1 3290538
## 741                 1  949182.1 3290538
## 742                 1  949182.1 3290538
## 743                 1  949182.1 3290538
## 744                 1  949182.1 3290538
## 745                 1  949182.1 3290538
## 746                 1  949182.1 3290538
## 747                 1  949182.1 3290538
## 748                 1  949182.1 3290538
## 749                 1  949182.1 3290538
## 750                 1  949182.1 3290538
## 751                 1  949182.1 3290538
## 752                 1  949182.1 3290538
## 753                 1 1158272.9 2844458
## 754                 1 1158272.9 2844458
## 755                 1 1158272.9 2844458
## 756                 1 1158272.9 2844458
## 757                 1 1158272.9 2844458
## 758                 0 1158272.9 2844458
## 759                 0 1158272.9 2844458
## 760                 0 1158272.9 2844458
## 761                 0 1158272.9 2844458
## 762                 0 1158272.9 2844458
## 763                 0 1158272.9 2844458
## 764                 0 1158272.9 2844458
## 765                 1 1158272.9 2844458
## 766                 1 1158272.9 2844458
## 767                 1 1158272.9 2844458
## 768                 1 1158272.9 2844458
## 769                 0 1158272.9 2844458
## 770                 0 1164740.8 2794842
## 771                 0 1164740.8 2794842
## 772                 0 1164740.8 2794842
## 773                 1 1164740.8 2794842
## 774                 0 1164740.8 2794842
## 775                 0 1164740.8 2794842
## 776                 1 1164740.8 2794842
## 777                 0 1164740.8 2794842
## 778                 1 1164740.8 2794842
## 779                 0 1164740.8 2794842
## 780                 0 1164740.8 2794842
## 781                 1 1164740.8 2794842
## 782                 0 1164740.8 2794842
## 783                 1 1164740.8 2794842
## 784                 1 1164740.8 2794842
## 785                 0 1164740.8 2794842
## 786                 0 1164740.8 2794842
## 787                 0 1164740.8 2794842
## 788                 1 1164740.8 2794842
## 789                 1 1164740.8 2794842
## 790                 0 1164740.8 2794842
## 791                 1 1164740.8 2794842
## 792                 1 1164740.8 2794842
## 793                 0 1164740.8 2794842
## 794                 0 1164740.8 2794842
## 795                 0 1164740.8 2794842
## 796                 1 1164740.8 2794842
## 797                 0 1164740.8 2794842
## 798                 1 1164740.8 2794842
## 799                 0 1164740.8 2794842
## 800                 0 1164740.8 2794842
## 801                 1 1164740.8 2794842
## 802                 0 1164740.8 2794842
## 803                 1 1164740.8 2794842
## 804                 1 1164740.8 2794842
## 805                 1 1164740.8 2794842
## 806                 0 1164740.8 2794842
## 807                 0 1164740.8 2794842
## 808                 1 1164740.8 2794842
## 809                 1 1164740.8 2794842
## 810                 0 1032899.8 3098294
## 811                 1 1032899.8 3098294
## 812                 1 1032899.8 3098294
## 813                 1 1032899.8 3098294
## 814                 1 1032899.8 3098294
## 815                 1 1032899.8 3098294
## 816                 1 1032899.8 3098294
## 817                 1 1032899.8 3098294
## 818                 1 1032899.8 3098294
## 819                 1 1032899.8 3098294
## 820                 1 1032899.8 3098294
## 821                 1 1032899.8 3098294
## 822                 1 1032899.8 3098294
## 823                 1 1032899.8 3098294
## 824                 1 1032899.8 3098294
## 825                 1 1032899.8 3098294
## 826                 1 1032899.8 3098294
## 827                 0 1032899.8 3098294
## 828                 1 1032899.8 3098294
## 829                 1 1032899.8 3098294
## 830                 1 1032899.8 3098294
## 831                 1 1032899.8 3098294
## 832                 0 1032899.8 3098294
## 833                 1 1032899.8 3098294
## 834                 1 1032899.8 3098294
## 835                 1 1032899.8 3098294
## 836                 1 1032899.8 3098294
## 837                 1 1032899.8 3098294
## 838                 1 1032899.8 3098294
## 839                 0 1032899.8 3098294
## 840                 1 1032899.8 3098294
## 841                 1 1032899.8 3098294
## 842                 1 1032899.8 3098294
## 843                 1 1032899.8 3098294
## 844                 1 1032899.8 3098294
## 845                 1 1032899.8 3098294
## 846                 1 1032899.8 3098294
## 847                 1 1032899.8 3098294
## 848                 0 1032899.8 3098294
## 849                 1 1032899.8 3098294
## 850                 1 1032899.8 3098294
## 851                 1 1032899.8 3098294
## 852                 1 1032899.8 3098294
## 853                 1 1032899.8 3098294
## 854                 1 1000240.8 3196176
## 855                 1 1000240.8 3196176
## 856                 1 1000240.8 3196176
## 857                 1 1000240.8 3196176
## 858                 1 1000240.8 3196176
## 859                 1 1000240.8 3196176
## 860                 1 1000240.8 3196176
## 861                 1 1000240.8 3196176
## 862                 1 1000240.8 3196176
## 863                 1 1000240.8 3196176
## 864                 1 1000240.8 3196176
## 865                 1 1000240.8 3196176
## 866                 1 1000240.8 3196176
## 867                 1 1000240.8 3196176
## 868                 1 1150184.3 2776463
## 869                 0 1150184.3 2776463
## 870                 1 1150184.3 2776463
## 871                 0 1150184.3 2776463
## 872                 0 1150184.3 2776463
## 873                 0 1150184.3 2776463
## 874                 1 1150184.3 2776463
## 875                 1 1150184.3 2776463
## 876                 0 1150184.3 2776463
## 877                 0 1150184.3 2776463
## 878                 1 1150184.3 2776463
## 879                 0 1150184.3 2776463
## 880                 1 1150184.3 2776463
## 881                 1 1150184.3 2776463
## 882                 0 1150184.3 2776463
## 883                 1 1150184.3 2776463
## 884                 1 1150184.3 2776463
## 885                 0 1150184.3 2776463
## 886                 1 1150184.3 2776463
## 887                 1 1150184.3 2776463
## 888                 0 1150184.3 2776463
## 889                 1 1150184.3 2776463
## 890                 1 1150184.3 2776463
## 891                 1 1150184.3 2776463
## 892                 1 1150184.3 2776463
## 893                 0 1150184.3 2776463
## 894                 1 1150184.3 2776463
## 895                 0 1150184.3 2776463
## 896                 1 1150184.3 2776463
## 897                 1 1150184.3 2776463
## 898                 0 1150184.3 2776463
## 899                 0 1150184.3 2776463
## 900                 0 1150184.3 2776463
## 901                 0 1150184.3 2776463
## 902                 0 1150184.3 2776463
## 903                 1 1150184.3 2776463
## 904                 1 1150184.3 2776463
## 905                 0 1150184.3 2776463
## 906                 1 1150184.3 2776463
## 907                 1 1150184.3 2776463
## 908                 1 1150184.3 2776463
## 909                 0 1150184.3 2776463
## 910                 1 1150184.3 2776463
## 911                 1 1150184.3 2776463
## 912                 0 1164740.8 2794842
## 913                 0 1164740.8 2794842
## 914                 0 1164740.8 2794842
## 915                 1 1164740.8 2794842
## 916                 0 1164740.8 2794842
## 917                 0 1164740.8 2794842
## 918                 1 1164740.8 2794842
## 919                 0 1164740.8 2794842
## 920                 0 1164740.8 2794842
## 921                 0 1164740.8 2794842
## 922                 0 1164740.8 2794842
## 923                 0 1164740.8 2794842
## 924                 0 1164740.8 2794842
## 925                 0 1164740.8 2794842
## 926                 1 1164740.8 2794842
## 927                 0 1164740.8 2794842
## 928                 0 1164740.8 2794842
## 929                 0 1164740.8 2794842
## 930                 1 1164740.8 2794842
## 931                 0 1164740.8 2794842
## 932                 0 1164740.8 2794842
## 933                 1 1164740.8 2794842
## 934                 0 1164740.8 2794842
## 935                 1 1164740.8 2794842
## 936                 1 1164740.8 2794842
## 937                 1 1164740.8 2794842
## 938                 0 1164740.8 2794842
## 939                 0 1164740.8 2794842
## 940                 0 1164740.8 2794842
## 941                 1 1164740.8 2794842
## 942                 0 1164740.8 2794842
## 943                 0 1164740.8 2794842
## 944                 0 1164740.8 2794842
## 945                 0 1164740.8 2794842
## 946                 0 1164740.8 2794842
## 947                 0 1164740.8 2794842
## 948                 0 1164740.8 2794842
## 949                 0 1164740.8 2794842
## 950                 0 1164740.8 2794842
## 951                 0 1164740.8 2794842
## 952                 1 1164740.8 2794842
## 953                 0 1164740.8 2794842
## 954                 0 1164740.8 2794842
## 955                 0 1164740.8 2794842
## 956                 0 1164740.8 2794842
## 957                 1 1164740.8 2794842
## 958                 0 1164740.8 2794842
## 959                 0 1164740.8 2794842
## 960                 0 1164740.8 2794842
## 961                 0 1164740.8 2794842
## 962                 0 1164740.8 2794842
## 963                 1 1032899.8 3098294
## 964                 1 1032899.8 3098294
## 965                 1 1032899.8 3098294
## 966                 1 1032899.8 3098294
## 967                 1 1032899.8 3098294
## 968                 1 1032899.8 3098294
## 969                 1 1032899.8 3098294
## 970                 1 1032899.8 3098294
## 971                 1 1032899.8 3098294
## 972                 1 1032899.8 3098294
## 973                 1 1032899.8 3098294
## 974                 1 1032899.8 3098294
## 975                 1 1032899.8 3098294
## 976                 1 1032899.8 3098294
## 977                 1 1032899.8 3098294
## 978                 1 1032899.8 3098294
## 979                 1 1032899.8 3098294
## 980                 1 1032899.8 3098294
## 981                 1 1032899.8 3098294
## 982                 1 1032899.8 3098294
## 983                 1 1032899.8 3098294
## 984                 1 1032899.8 3098294
## 985                 1 1032899.8 3098294
## 986                 1 1032899.8 3098294
## 987                 1 1032899.8 3098294
## 988                 1 1032899.8 3098294
## 989                 1 1032899.8 3098294
## 990                 1 1032899.8 3098294
## 991                 1 1032899.8 3098294
## 992                 1 1032899.8 3098294
## 993                 1 1032899.8 3098294
## 994                 1 1032899.8 3098294
## 995                 1 1032899.8 3098294
## 996                 1 1032899.8 3098294
## 997                 1 1032899.8 3098294
## 998                 1 1032899.8 3098294
## 999                 1 1032899.8 3098294
## 1000                1 1032899.8 3098294
## 1001                1 1032899.8 3098294
## 1002                1 1032899.8 3098294
## 1003                1 1032899.8 3098294
## 1004                1 1032899.8 3098294
## 1005                1 1032899.8 3098294
## 1006                1 1032899.8 3098294
## 1007                1 1032899.8 3098294
## 1008                1 1032899.8 3098294
## 1009                1 1032899.8 3098294
## 1010                1 1032899.8 3098294
## 1011                1 1032899.8 3098294
## 1012                1 1032899.8 3098294
## 1013                1 1032899.8 3098294
## 1014                1 1032899.8 3098294
## 1015                1 1032899.8 3098294
## 1016                1 1000240.8 3196176
## 1017                1 1000240.8 3196176
## 1018                1 1000240.8 3196176
## 1019                1 1000240.8 3196176
## 1020                1 1000240.8 3196176
## 1021                1 1000240.8 3196176
## 1022                1 1000240.8 3196176
## 1023                1 1000240.8 3196176
## 1024                1 1000240.8 3196176
## 1025                1 1000240.8 3196176
## 1026                0 1000240.8 3196176
## 1027                1 1000240.8 3196176
## 1028                1 1000240.8 3196176
## 1029                1 1000240.8 3196176
## 1030                1 1000240.8 3196176
## 1031                1 1000240.8 3196176
## 1032                1 1000240.8 3196176
## 1033                1 1000240.8 3196176
## 1034                1 1000240.8 3196176
## 1035                1 1000240.8 3196176
## 1036                1 1000240.8 3196176
## 1037                1 1000240.8 3196176
## 1038                1 1000240.8 3196176
## 1039                1 1000240.8 3196176
## 1040                1 1000240.8 3196176
## 1041                0 1000240.8 3196176
## 1042                1 1000240.8 3196176
## 1043                1 1000240.8 3196176
## 1044                1 1000240.8 3196176
## 1045                1 1000240.8 3196176
## 1046                1 1000240.8 3196176
## 1047                1 1000240.8 3196176
## 1048                0 1000240.8 3196176
## 1049                1 1000240.8 3196176
## 1050                1 1000240.8 3196176
## 1051                1 1000240.8 3196176
## 1052                0 1150184.3 2776463
## 1053                1 1150184.3 2776463
## 1054                0 1150184.3 2776463
## 1055                0 1150184.3 2776463
## 1056                1 1150184.3 2776463
## 1057                1 1150184.3 2776463
## 1058                1 1150184.3 2776463
## 1059                0 1150184.3 2776463
## 1060                1 1150184.3 2776463
## 1061                1 1150184.3 2776463
## 1062                0 1150184.3 2776463
## 1063                1 1150184.3 2776463
## 1064                1  949182.1 3290538
## 1065                1  949182.1 3290538
## 1066                1  949182.1 3290538
## 1067                1  949182.1 3290538
## 1068                1  949182.1 3290538
## 1069                1  949182.1 3290538
## 1070                1  949182.1 3290538
## 1071                1  949182.1 3290538
## 1072                1  949182.1 3290538
## 1073                1  949182.1 3290538
## 1074                1  949182.1 3290538
## 1075                1  949182.1 3290538
## 1076                1  949182.1 3290538
## 1077                1  949182.1 3290538
## 1078                1  949182.1 3290538
## 1079                1  949182.1 3290538
## 1080                1  949182.1 3290538
## 1081                1  949182.1 3290538
## 1082                1  949182.1 3290538
## 1083                1  949182.1 3290538
## 1084                1  949182.1 3290538
## 1085                1  949182.1 3290538
## 1086                1  949182.1 3290538
## 1087                1  949182.1 3290538
## 1088                1  949182.1 3290538
## 1089                1  949182.1 3290538
## 1090                1  949182.1 3290538
## 1091                1  949182.1 3290538
## 1092                1  949182.1 3290538
## 1093                1  949182.1 3290538
## 1094                1  949182.1 3290538
## 1095                1  949182.1 3290538
## 1096                1  949182.1 3290538
## 1097                1  949182.1 3290538
## 1098                0  949182.1 3290538
## 1099                1  949182.1 3290538
## 1100                1  949182.1 3290538
## 1101                1  949182.1 3290538
## 1102                1  949182.1 3290538
## 1103                1  949182.1 3290538
## 1104                1  949182.1 3290538
## 1105                1  949182.1 3290538
## 1106                1  949182.1 3290538
## 1107                0  949182.1 3290538
## 1108                1  949182.1 3290538
## 1109                1  949182.1 3290538
## 1110                0  949182.1 3290538
## 1111                1  949182.1 3290538
## 1112                1  949182.1 3290538
## 1113                1  949182.1 3290538
## 1114                0  949182.1 3290538
## 1115                1  949182.1 3290538
## 1116                1  949182.1 3290538
## 1117                1  949182.1 3290538
## 1118                1  949182.1 3290538
## 1119                1  949182.1 3290538
## 1120                1  949182.1 3290538
## 1121                1 1155594.4 2835483
## 1122                0 1155594.4 2835483
## 1123                0 1155594.4 2835483
## 1124                1 1155594.4 2835483
## 1125                1 1155594.4 2835483
## 1126                0 1155594.4 2835483
## 1127                1 1155594.4 2835483
## 1128                1 1155594.4 2835483
## 1129                0 1155594.4 2835483
## 1130                1 1155594.4 2835483
## 1131                1 1155594.4 2835483
## 1132                1 1155594.4 2835483
## 1133                1 1155594.4 2835483
## 1134                1 1171365.6 2803203
## 1135                1 1171365.6 2803203
## 1136                1 1171365.6 2803203
## 1137                0 1171365.6 2803203
## 1138                1 1171365.6 2803203
## 1139                0 1171365.6 2803203
## 1140                1 1171365.6 2803203
## 1141                1 1171365.6 2803203
## 1142                1 1171365.6 2803203
## 1143                1 1171365.6 2803203
## 1144                1 1171365.6 2803203
## 1145                0 1171365.6 2803203
## 1146                0 1171365.6 2803203
## 1147                1 1171365.6 2803203
## 1148                1 1171365.6 2803203
## 1149                1 1171365.6 2803203
## 1150                1 1171365.6 2803203
## 1151                1 1171365.6 2803203
## 1152                1 1171365.6 2803203
## 1153                1 1171365.6 2803203
## 1154                1 1171365.6 2803203
## 1155                0 1171365.6 2803203
## 1156                1 1171365.6 2803203
## 1157                0 1171365.6 2803203
## 1158                1 1171365.6 2803203
## 1159                0 1171365.6 2803203
## 1160                1 1171365.6 2803203
## 1161                1 1171365.6 2803203
## 1162                1 1171365.6 2803203
## 1163                1 1171365.6 2803203
## 1164                1 1171365.6 2803203
## 1165                1 1171365.6 2803203
## 1166                1 1171365.6 2803203
## 1167                1 1171365.6 2803203
## 1168                0 1171365.6 2803203
## 1169                1 1171365.6 2803203
## 1170                0 1171365.6 2803203
## 1171                0 1171365.6 2803203
## 1172                0 1171365.6 2803203
## 1173                1 1171365.6 2803203
## 1174                1 1171365.6 2803203
## 1175                0 1171365.6 2803203
## 1176                1 1171365.6 2803203
## 1177                1 1171365.6 2803203
## 1178                1 1171365.6 2803203
## 1179                0 1171365.6 2803203
## 1180                1 1171365.6 2803203
## 1181                0 1171365.6 2803203
## 1182                1 1171365.6 2803203
## 1183                1 1171365.6 2803203
## 1184                1 1171365.6 2803203
## 1185                1 1171365.6 2803203
## 1186                1 1171365.6 2803203
## 1187                1 1164740.8 2794842
## 1188                1 1164740.8 2794842
## 1189                1 1164740.8 2794842
## 1190                0 1164740.8 2794842
## 1191                1 1164740.8 2794842
## 1192                1 1164740.8 2794842
## 1193                0 1164740.8 2794842
## 1194                1 1164740.8 2794842
## 1195                0 1164740.8 2794842
## 1196                1 1164740.8 2794842
## 1197                1 1164740.8 2794842
## 1198                1 1034251.3 3101958
## 1199                1 1034251.3 3101958
## 1200                1 1034251.3 3101958
## 1201                1 1034251.3 3101958
## 1202                1 1034251.3 3101958
## 1203                1 1034251.3 3101958
## 1204                1 1034251.3 3101958
## 1205                0 1034251.3 3101958
## 1206                1 1034251.3 3101958
## 1207                1 1034251.3 3101958
## 1208                1 1034251.3 3101958
## 1209                1 1034251.3 3101958
## 1210                1 1034251.3 3101958
## 1211                1 1034251.3 3101958
## 1212                1 1034251.3 3101958
## 1213                1  999804.3 3197182
## 1214                1  999804.3 3197182
## 1215                1  999804.3 3197182
## 1216                1  999804.3 3197182
## 1217                1  999804.3 3197182
## 1218                1  999804.3 3197182
## 1219                1  999804.3 3197182
## 1220                1  999804.3 3197182
## 1221                1  999804.3 3197182
## 1222                1  999804.3 3197182
## 1223                1  999804.3 3197182
## 1224                1  999804.3 3197182
## 1225                1  999804.3 3197182
## 1226                1  999804.3 3197182
## 1227                1  999804.3 3197182
## 1228                1  999804.3 3197182
## 1229                1  999804.3 3197182
## 1230                1  999804.3 3197182
## 1231                1  999804.3 3197182
## 1232                1  999804.3 3197182
## 1233                1 1000240.8 3196176
## 1234                1 1000240.8 3196176
## 1235                1 1000240.8 3196176
## 1236                1 1000240.8 3196176
## 1237                1 1000240.8 3196176
## 1238                1 1000240.8 3196176
## 1239                1 1000240.8 3196176
## 1240                1 1000240.8 3196176
## 1241                1 1000240.8 3196176
## 1242                1 1000240.8 3196176
## 1243                1 1000240.8 3196176
## 1244                0 1000240.8 3196176
## 1245                1 1000240.8 3196176
## 1246                1 1000240.8 3196176
## 1247                1 1000240.8 3196176
## 1248                1 1000240.8 3196176
## 1249                1 1000240.8 3196176
## 1250                1 1000240.8 3196176
## 1251                1 1000240.8 3196176
## 1252                1 1000240.8 3196176
## 1253                1 1000240.8 3196176
## 1254                1 1000240.8 3196176
## 1255                1 1000240.8 3196176
## 1256                1 1000240.8 3196176
## 1257                1 1000240.8 3196176
## 1258                1 1000240.8 3196176
## 1259                1 1000240.8 3196176
## 1260                1 1000240.8 3196176
## 1261                1 1000240.8 3196176
## 1262                1 1000240.8 3196176
## 1263                1 1000240.8 3196176
## 1264                1 1000240.8 3196176
## 1265                1 1000240.8 3196176
## 1266                1 1000240.8 3196176
## 1267                1 1000240.8 3196176
## 1268                1 1000240.8 3196176
## 1269                1 1000240.8 3196176
## 1270                1 1000240.8 3196176
## 1271                1 1000240.8 3196176
## 1272                1 1000240.8 3196176
## 1273                1 1000240.8 3196176
## 1274                1 1000240.8 3196176
## 1275                1 1000240.8 3196176
## 1276                1 1000240.8 3196176
## 1277                1 1000240.8 3196176
## 1278                0 1152004.7 2778276
## 1279                1 1152004.7 2778276
## 1280                1 1152004.7 2778276
## 1281                0 1152004.7 2778276
## 1282                1 1152004.7 2778276
## 1283                1 1152004.7 2778276
## 1284                0 1152004.7 2778276
## 1285                1 1152004.7 2778276
## 1286                1 1152004.7 2778276
## 1287                0 1152004.7 2778276
## 1288                1 1152004.7 2778276
## 1289                0 1152004.7 2778276
## 1290                0 1152004.7 2778276
## 1291                0 1152004.7 2778276
## 1292                0 1152004.7 2778276
## 1293                1 1152004.7 2778276
## 1294                1 1152004.7 2778276
## 1295                1 1152004.7 2778276
## 1296                1 1152004.7 2778276
## 1297                1 1152004.7 2778276
## 1298                0 1152004.7 2778276
## 1299                0 1152004.7 2778276
## 1300                1 1152004.7 2778276
## 1301                0 1152004.7 2778276
## 1302                0 1152004.7 2778276
## 1303                1 1152004.7 2778276
## 1304                1 1152004.7 2778276
## 1305                0 1152004.7 2778276
## 1306                1 1152004.7 2778276
## 1307                1 1152004.7 2778276
## 1308                1 1152004.7 2778276
## 1309                1 1152004.7 2778276
## 1310                1 1152004.7 2778276
## 1311                1 1152004.7 2778276
## 1312                0 1152004.7 2778276
## 1313                0 1152004.7 2778276
## 1314                1 1152004.7 2778276
## 1315                1  949670.6 3290885
## 1316                1  949670.6 3290885
## 1317                1  949670.6 3290885
## 1318                0  949670.6 3290885
## 1319                1  949670.6 3290885
## 1320                1  949670.6 3290885
## 1321                0  949670.6 3290885
## 1322                1  949670.6 3290885
## 1323                1  949670.6 3290885
## 1324                1  949670.6 3290885
## 1325                1  949670.6 3290885
## 1326                1  949670.6 3290885
## 1327                1  949670.6 3290885
## 1328                1  949670.6 3290885
## 1329                1  949670.6 3290885
## 1330                1  949670.6 3290885
## 1331                0  949670.6 3290885
## 1332                1  949670.6 3290885
## 1333                1  949670.6 3290885
## 1334                1  949670.6 3290885
## 1335                1  949670.6 3290885
## 1336                1  949670.6 3290885
## 1337                1  949670.6 3290885
## 1338                1  949670.6 3290885
## 1339                1  949670.6 3290885
## 1340                0  949670.6 3290885
## 1341                1  949670.6 3290885
## 1342                1  949670.6 3290885
## 1343                1  949670.6 3290885
## 1344                1  949670.6 3290885
## 1345                1  949670.6 3290885
## 1346                1  949670.6 3290885
## 1347                1  949670.6 3290885
## 1348                1  949670.6 3290885
## 1349                1  949670.6 3290885
## 1350                1  949670.6 3290885
## 1351                1  949670.6 3290885
## 1352                1  949670.6 3290885
## 1353                1  949670.6 3290885
## 1354                1  949670.6 3290885
## 1355                1  949670.6 3290885
## 1356                1  949670.6 3290885
## 1357                1  949670.6 3290885
## 1358                0  949670.6 3290885
## 1359                1  949670.6 3290885
## 1360                1  949670.6 3290885
## 1361                1  949670.6 3290885
## 1362                1  949670.6 3290885
## 1363                1  949670.6 3290885
## 1364                1  949670.6 3290885
## 1365                1  949670.6 3290885
## 1366                1  949670.6 3290885
## 1367                1  949670.6 3290885
## 1368                1  949670.6 3290885
## 1369                1  949670.6 3290885
## 1370                1  949670.6 3290885
## 1371                1  949670.6 3290885
## 1372                1  949670.6 3290885
## 1373                1  949670.6 3290885
## 1374                0  949670.6 3290885
## 1375                1 1155612.8 2835467
## 1376                0 1155612.8 2835467
## 1377                1 1155612.8 2835467
## 1378                1 1155612.8 2835467
## 1379                0 1155612.8 2835467
## 1380                1 1155612.8 2835467
## 1381                1 1155612.8 2835467
## 1382                1 1155612.8 2835467
## 1383                1 1155612.8 2835467
## 1384                1 1155612.8 2835467
## 1385                1 1155612.8 2835467
## 1386                1 1155612.8 2835467
## 1387                1 1155612.8 2835467
## 1388                1 1155612.8 2835467
## 1389                1 1155612.8 2835467
## 1390                1 1155612.8 2835467
## 1391                1 1155612.8 2835467
## 1392                1 1155612.8 2835467
## 1393                0 1155612.8 2835467
## 1394                1 1155612.8 2835467
## 1395                1 1155612.8 2835467
## 1396                1 1155612.8 2835467
## 1397                1 1155612.8 2835467
## 1398                1 1155612.8 2835467
## 1399                1 1155612.8 2835467
## 1400                1 1155612.8 2835467
## 1401                1 1155612.8 2835467
## 1402                1 1155612.8 2835467
## 1403                0 1155612.8 2835467
## 1404                1 1155612.8 2835467
## 1405                1 1155612.8 2835467
## 1406                1 1155612.8 2835467
## 1407                1 1155612.8 2835467
## 1408                0 1155612.8 2835467
## 1409                1 1155612.8 2835467
## 1410                1 1155612.8 2835467
## 1411                1 1155612.8 2835467
## 1412                1 1155612.8 2835467
## 1413                1 1155612.8 2835467
## 1414                1 1155612.8 2835467
## 1415                1 1155612.8 2835467
## 1416                1 1155612.8 2835467
## 1417                1 1155612.8 2835467
## 1418                0 1155612.8 2835467
## 1419                1 1155612.8 2835467
## 1420                1 1155612.8 2835467
## 1421                1 1155612.8 2835467
## 1422                1 1155612.8 2835467
## 1423                1 1155612.8 2835467
## 1424                1 1155612.8 2835467
## 1425                1 1155612.8 2835467
## 1426                1 1155612.8 2835467
## 1427                1 1155612.8 2835467
## 1428                1 1155612.8 2835467
## 1429                1 1155612.8 2835467
## 1430                1 1155612.8 2835467
## 1431                1 1155612.8 2835467
## 1432                1 1155612.8 2835467
## 1433                1 1155612.8 2835467
## 1434                1 1155612.8 2835467
## 1435                1 1155612.8 2835467
## 1436                1 1155612.8 2835467
## 1437                1 1155612.8 2835467
## 1438                1 1155612.8 2835467
## 1439                1 1155612.8 2835467
## 1440                1 1155612.8 2835467
## 1441                1 1155612.8 2835467
## 1442                1 1155612.8 2835467
## 1443                1 1155612.8 2835467
## 1444                1 1155612.8 2835467
## 1445                1 1155612.8 2835467
## 1446                1 1155612.8 2835467
## 1447                1 1155612.8 2835467
## 1448                1 1155612.8 2835467
## 1449                1 1155612.8 2835467
## 1450                1 1155612.8 2835467
## 1451                1 1155612.8 2835467
## 1452                1 1155612.8 2835467
## 1453                1 1155612.8 2835467
## 1454                1 1155612.8 2835467
## 1455                1 1155612.8 2835467
## 1456                1 1155612.8 2835467
## 1457                1 1155612.8 2835467
## 1458                1 1155612.8 2835467
## 1459                1 1155612.8 2835467
## 1460                1 1155612.8 2835467
## 1461                1 1155612.8 2835467
## 1462                1 1155612.8 2835467
## 1463                1 1155612.8 2835467
## 1464                1 1155612.8 2835467
## 1465                1 1155612.8 2835467
## 1466                1 1155612.8 2835467
## 1467                1 1155612.8 2835467
## 1468                1 1155612.8 2835467
## 1469                1 1155612.8 2835467
## 1470                1 1155612.8 2835467
## 1471                1 1155612.8 2835467
## 1472                1 1155612.8 2835467
## 1473                1 1155612.8 2835467
## 1474                1 1155612.8 2835467
## 1475                1 1155612.8 2835467
## 1476                1 1155612.8 2835467
## 1477                1 1155612.8 2835467
## 1478                1 1155612.8 2835467
## 1479                1 1155612.8 2835467
## 1480                1 1155612.8 2835467
## 1481                1 1155612.8 2835467
## 1482                1 1155612.8 2835467
## 1483                1 1155612.8 2835467
## 1484                1 1155612.8 2835467
## 1485                1 1155612.8 2835467
## 1486                1 1155612.8 2835467
## 1487                1 1155612.8 2835467
## 1488                1 1155612.8 2835467
## 1489                1 1155612.8 2835467
## 1490                1 1155612.8 2835467
## 1491                1 1155612.8 2835467
## 1492                1 1155612.8 2835467
## 1493                1 1155612.8 2835467
## 1494                1 1155612.8 2835467
## 1495                1 1155612.8 2835467
## 1496                1 1155612.8 2835467
## 1497                1 1155612.8 2835467
## 1498                1 1155612.8 2835467
## 1499                1 1155612.8 2835467
## 1500                1 1155612.8 2835467
## 1501                1 1155612.8 2835467
## 1502                1 1165445.0 2795436
## 1503                1 1165445.0 2795436
## 1504                1 1165445.0 2795436
## 1505                0 1165445.0 2795436
## 1506                1 1165445.0 2795436
## 1507                1 1165445.0 2795436
## 1508                1 1165445.0 2795436
## 1509                1 1165445.0 2795436
## 1510                1 1165445.0 2795436
## 1511                1 1165445.0 2795436
## 1512                1 1165445.0 2795436
## 1513                0 1165445.0 2795436
## 1514                1 1165445.0 2795436
## 1515                1 1165445.0 2795436
## 1516                1 1165445.0 2795436
## 1517                1 1165445.0 2795436
## 1518                1 1165445.0 2795436
## 1519                1 1165442.5 2795425
## 1520                1 1165442.5 2795425
## 1521                1 1165442.5 2795425
## 1522                1 1165442.5 2795425
## 1523                1 1165442.5 2795425
## 1524                0 1165442.5 2795425
## 1525                0 1165442.5 2795425
## 1526                1 1165442.5 2795425
## 1527                1 1165442.5 2795425
## 1528                1 1165442.5 2795425
## 1529                1 1165442.5 2795425
## 1530                1 1165442.5 2795425
## 1531                1 1165442.5 2795425
## 1532                1 1165442.5 2795425
## 1533                1 1165442.5 2795425
## 1534                1 1165442.5 2795425
## 1535                0 1165442.5 2795425
## 1536                1 1165442.5 2795425
## 1537                1 1171365.6 2803203
## 1538                1 1171365.6 2803203
## 1539                1 1171365.6 2803203
## 1540                1 1171365.6 2803203
## 1541                0 1171365.6 2803203
## 1542                1 1171365.6 2803203
## 1543                1 1171365.6 2803203
## 1544                1 1171365.6 2803203
## 1545                0 1171365.6 2803203
## 1546                0 1171365.6 2803203
## 1547                1 1171365.6 2803203
## 1548                1 1171365.6 2803203
## 1549                0 1171365.6 2803203
## 1550                1 1171365.6 2803203
## 1551                0 1171365.6 2803203
## 1552                0 1171365.6 2803203
## 1553                1 1171365.6 2803203
## 1554                1 1171365.6 2803203
## 1555                0 1171365.6 2803203
## 1556                1 1171365.6 2803203
## 1557                1 1171365.6 2803203
## 1558                1 1171365.6 2803203
## 1559                1 1171365.6 2803203
## 1560                0 1171365.6 2803203
## 1561                1 1171365.6 2803203
## 1562                0 1171365.6 2803203
## 1563                0 1171365.6 2803203
## 1564                0 1171365.6 2803203
## 1565                0 1171365.6 2803203
## 1566                0 1171365.6 2803203
## 1567                0 1171365.6 2803203
## 1568                1 1171365.6 2803203
## 1569                0 1171365.6 2803203
## 1570                1 1171365.6 2803203
## 1571                0 1171365.6 2803203
## 1572                0 1171365.6 2803203
## 1573                1 1171365.6 2803203
## 1574                1 1171365.6 2803203
## 1575                1 1171365.6 2803203
## 1576                1 1171365.6 2803203
## 1577                1 1171365.6 2803203
## 1578                1 1171365.6 2803203
## 1579                1 1171365.6 2803203
## 1580                1 1171365.6 2803203
## 1581                1 1171365.6 2803203
## 1582                1 1171365.6 2803203
## 1583                1 1171365.6 2803203
## 1584                1 1171365.6 2803203
## 1585                1 1171365.6 2803203
## 1586                0 1171365.6 2803203
## 1587                1 1171365.6 2803203
## 1588                0 1171365.6 2803203
## 1589                1 1171365.6 2803203
## 1590                1 1171365.6 2803203
## 1591                1 1171365.6 2803203
## 1592                1 1171365.6 2803203
## 1593                0 1171365.6 2803203
## 1594                1 1034256.3 3101957
## 1595                1 1034256.3 3101957
## 1596                1 1034256.3 3101957
## 1597                1 1034256.3 3101957
## 1598                1 1034256.3 3101957
## 1599                1 1034256.3 3101957
## 1600                1 1034256.3 3101957
## 1601                1 1034256.3 3101957
## 1602                1 1034256.3 3101957
## 1603                1 1034256.3 3101957
## 1604                1 1034256.3 3101957
## 1605                1 1034256.3 3101957
## 1606                1 1034256.3 3101957
## 1607                1 1034256.3 3101957
## 1608                1 1034256.3 3101957
## 1609                0 1034256.3 3101957
## 1610                1 1034256.3 3101957
## 1611                0 1034256.3 3101957
## 1612                1 1034256.3 3101957
## 1613                1 1034256.3 3101957
## 1614                1 1034256.3 3101957
## 1615                1 1034256.3 3101957
## 1616                1 1034256.3 3101957
## 1617                1 1034256.3 3101957
## 1618                1 1034256.3 3101957
## 1619                0 1034256.3 3101957
## 1620                1 1034256.3 3101957
## 1621                1 1034256.3 3101957
## 1622                1 1034256.3 3101957
## 1623                1 1034256.3 3101957
## 1624                1 1034256.3 3101957
## 1625                1 1034256.3 3101957
## 1626                1 1034256.4 3101957
## 1627                1 1034256.4 3101957
## 1628                0 1034256.4 3101957
## 1629                0 1034256.4 3101957
## 1630                1 1034256.4 3101957
## 1631                1 1034256.4 3101957
## 1632                1 1034256.4 3101957
## 1633                0 1034256.4 3101957
## 1634                0 1034256.4 3101957
## 1635                1 1034256.4 3101957
## 1636                1 1034256.4 3101957
## 1637                0 1034256.4 3101957
## 1638                0 1034256.4 3101957
## 1639                1 1034256.4 3101957
## 1640                0 1034256.4 3101957
## 1641                0 1034256.4 3101957
## 1642                1 1034256.4 3101957
## 1643                0 1034256.4 3101957
## 1644                1 1034256.4 3101957
## 1645                0 1034256.4 3101957
## 1646                1 1034256.4 3101957
## 1647                1 1034256.4 3101957
## 1648                0 1034256.4 3101957
## 1649                1 1034256.4 3101957
## 1650                1 1034256.4 3101957
## 1651                0 1034256.4 3101957
## 1652                1 1034256.4 3101957
## 1653                1 1034256.4 3101957
## 1654                0 1034256.4 3101957
## 1655                1 1034256.4 3101957
## 1656                0 1034256.4 3101957
## 1657                0 1034256.4 3101957
## 1658                0 1034256.4 3101957
## 1659                0 1034256.4 3101957
## 1660                1 1034256.4 3101957
## 1661                0 1034256.4 3101957
## 1662                1 1034256.4 3101957
## 1663                1 1034256.4 3101957
## 1664                1 1034256.4 3101957
## 1665                1 1034256.4 3101957
## 1666                1 1034256.4 3101957
## 1667                0 1034256.4 3101957
## 1668                0 1034256.4 3101957
## 1669                1 1034256.4 3101957
## 1670                0 1034256.4 3101957
## 1671                0 1034256.4 3101957
## 1672                0 1034256.4 3101957
## 1673                1 1034256.4 3101957
## 1674                0 1034256.4 3101957
## 1675                1 1034256.4 3101957
## 1676                0 1034256.4 3101957
## 1677                0 1034256.4 3101957
## 1678                0 1034256.4 3101957
## 1679                0 1034256.4 3101957
## 1680                1 1034256.4 3101957
## 1681                0 1034256.4 3101957
## 1682                1 1034256.4 3101957
## 1683                1 1034256.4 3101957
## 1684                0 1034256.4 3101957
## 1685                1  999797.9 3197189
## 1686                1  999797.9 3197189
## 1687                0  999797.9 3197189
## 1688                0  999797.9 3197189
## 1689                0  999797.9 3197189
## 1690                1  999797.9 3197189
## 1691                1  999797.9 3197189
## 1692                1  999797.9 3197189
## 1693                1  999797.9 3197189
## 1694                0  999797.9 3197189
## 1695                1  999797.9 3197189
## 1696                1  999797.9 3197189
## 1697                1  999797.9 3197189
## 1698                1  999797.9 3197189
## 1699                0  999797.9 3197189
## 1700                0  999797.9 3197189
## 1701                1  999797.9 3197189
## 1702                0  999797.9 3197189
## 1703                1  999797.9 3197189
## 1704                1  999797.9 3197189
## 1705                1  999797.9 3197189
## 1706                1  999797.9 3197189
## 1707                1  999797.9 3197189
## 1708                0  999797.9 3197189
## 1709                1  999797.9 3197189
## 1710                1  999797.9 3197189
## 1711                0  999797.9 3197189
## 1712                1  999797.9 3197189
## 1713                1  999797.9 3197189
## 1714                1  999797.9 3197189
## 1715                1  999797.9 3197189
## 1716                1  999797.9 3197189
## 1717                1  999797.9 3197189
## 1718                0  999797.9 3197189
## 1719                0  999797.9 3197189
## 1720                1  999797.9 3197189
## 1721                1  999797.9 3197189
## 1722                0  999797.9 3197189
## 1723                1  999797.9 3197189
## 1724                1  999797.9 3197189
## 1725                0  999797.9 3197189
## 1726                1  999797.9 3197189
## 1727                1  999797.9 3197189
## 1728                1  999797.9 3197189
## 1729                0  999797.9 3197189
## 1730                0  999797.9 3197189
## 1731                1  999797.9 3197189
## 1732                1  999797.9 3197189
## 1733                1  999797.9 3197189
## 1734                0  999797.9 3197189
## 1735                0  999797.9 3197189
## 1736                0  999797.9 3197189
## 1737                0  999797.9 3197189
## 1738                0  999797.9 3197189
## 1739                0  999797.9 3197189
## 1740                0  999797.9 3197189
## 1741                1  999797.9 3197189
## 1742                0  999797.9 3197189
## 1743                1  949529.7 3290857
## 1744                1  949529.7 3290857
## 1745                1  949529.7 3290857
## 1746                1  949529.7 3290857
## 1747                1  949529.7 3290857
## 1748                1  949529.7 3290857
## 1749                1  949529.7 3290857
## 1750                1  949529.7 3290857
## 1751                1  949529.7 3290857
## 1752                1  949529.7 3290857
## 1753                1  949529.7 3290857
## 1754                1  949529.7 3290857
## 1755                1  949529.7 3290857
## 1756                1  949529.7 3290857
## 1757                1  949529.7 3290857
## 1758                1  949529.7 3290857
## 1759                0  949529.7 3290857
## 1760                1  949529.7 3290857
## 1761                1  949529.7 3290857
## 1762                1  949529.7 3290857
## 1763                1  949529.7 3290857
## 1764                1  949529.7 3290857
## 1765                1  949529.7 3290857
## 1766                1  949529.7 3290857
## 1767                1  949529.7 3290857
## 1768                1  949529.7 3290857
## 1769                1  949529.7 3290857
## 1770                1  949529.7 3290857
## 1771                1  949529.7 3290857
## 1772                1  949529.7 3290857
## 1773                1  949529.7 3290857
## 1774                1  949529.7 3290857
## 1775                1  949529.7 3290857
## 1776                1  949529.7 3290857
## 1777                1  949529.7 3290857
## 1778                1  949529.7 3290857
## 1779                1  949529.7 3290857
## 1780                1  949529.7 3290857
## 1781                1  949529.7 3290857
## 1782                1  949529.7 3290857
## 1783                1  949529.7 3290857
## 1784                1  949529.7 3290857
## 1785                1  949529.7 3290857
## 1786                1  949529.7 3290857
## 1787                1  949529.7 3290857
## 1788                1  949529.7 3290857
## 1789                1  949529.7 3290857
## 1790                1  949529.7 3290857
## 1791                1  949529.7 3290857
## 1792                1  949529.7 3290857
## 1793                1  949529.7 3290857
## 1794                1  949529.7 3290857
## 1795                1  949529.7 3290857
## 1796                1  949529.7 3290857
## 1797                1  949529.7 3290857
## 1798                0  949529.7 3290857
## 1799                1  949529.7 3290857
## 1800                1  949529.7 3290857
## 1801                1  949529.7 3290857
## 1802                1  949529.7 3290857
## 1803                0  949529.7 3290857
## 1804                1  949529.7 3290857
## 1805                1  949529.7 3290857
## 1806                1  949529.7 3290857
## 1807                1 1171365.6 2803203
## 1808                1 1171365.6 2803203
## 1809                1 1171365.6 2803203
## 1810                1 1171365.6 2803203
## 1811                0 1171365.6 2803203
## 1812                0 1171365.6 2803203
## 1813                0 1171365.6 2803203
## 1814                0 1171365.6 2803203
## 1815                1 1171365.6 2803203
## 1816                0 1171365.6 2803203
## 1817                0 1171365.6 2803203
## 1818                1 1171365.6 2803203
## 1819                0 1171365.6 2803203
## 1820                0 1171365.6 2803203
## 1821                1 1171365.6 2803203
## 1822                0 1171365.6 2803203
## 1823                1 1171365.6 2803203
## 1824                0 1171365.6 2803203
## 1825                1 1171365.6 2803203
## 1826                1 1171365.6 2803203
## 1827                1 1171365.6 2803203
## 1828                0 1171365.6 2803203
## 1829                0 1171365.6 2803203
## 1830                1 1171365.6 2803203
## 1831                0 1171365.6 2803203
## 1832                1 1171365.6 2803203
## 1833                1 1171365.6 2803203
## 1834                0 1171365.6 2803203
## 1835                0 1171365.6 2803203
## 1836                0 1171365.6 2803203
## 1837                1 1171365.6 2803203
## 1838                0 1171365.6 2803203
## 1839                1 1171365.6 2803203
## 1840                1 1171365.6 2803203
## 1841                1 1171365.6 2803203
## 1842                0 1171365.6 2803203
## 1843                0 1171365.6 2803203
## 1844                0 1171365.6 2803203
## 1845                0 1171365.6 2803203
## 1846                0 1171365.6 2803203
## 1847                1 1171365.6 2803203
## 1848                0 1171365.6 2803203
## 1849                1 1171365.6 2803203
## 1850                1 1171365.6 2803203
## 1851                1 1171365.6 2803203
## 1852                0 1171365.6 2803203
## 1853                1 1171365.6 2803203
## 1854                1 1171365.6 2803203
## 1855                1 1171365.6 2803203
## 1856                1 1171365.6 2803203
## 1857                0 1171365.6 2803203
## 1858                0 1171365.6 2803203
## 1859                1 1171365.6 2803203
## 1860                0 1171365.6 2803203
## 1861                0 1171365.6 2803203
## 1862                1 1171365.6 2803203
## 1863                1 1171365.6 2803203
## 1864                0 1171365.6 2803203
## 1865                1 1171365.6 2803203
## 1866                0 1171365.6 2803203
## 1867                1 1171365.6 2803203
## 1868                0 1171365.6 2803203
## 1869                1 1171365.6 2803203
## 1870                0 1171365.6 2803203
## 1871                1 1171365.6 2803203
## 1872                0 1171365.6 2803203
## 1873                0 1171365.6 2803203
## 1874                0 1171365.6 2803203
## 1875                1 1034253.2 3101959
## 1876                1 1034253.2 3101959
## 1877                1 1034253.2 3101959
## 1878                1 1034253.2 3101959
## 1879                1 1034253.2 3101959
## 1880                1 1034253.2 3101959
## 1881                1 1034253.2 3101959
## 1882                0 1034253.2 3101959
## 1883                1 1034253.2 3101959
## 1884                1 1034253.2 3101959
## 1885                1 1034253.2 3101959
## 1886                1 1034253.2 3101959
## 1887                1 1034253.2 3101959
## 1888                1 1034253.2 3101959
## 1889                1 1034253.2 3101959
## 1890                1 1034253.2 3101959
## 1891                1 1034253.2 3101959
## 1892                1 1034253.2 3101959
## 1893                1 1034253.2 3101959
## 1894                1 1034253.2 3101959
## 1895                1 1034253.2 3101959
## 1896                1 1034253.2 3101959
## 1897                1 1034253.2 3101959
## 1898                1 1034253.2 3101959
## 1899                1 1034253.2 3101959
## 1900                0 1034253.2 3101959
## 1901                1 1034253.2 3101959
## 1902                1 1034253.2 3101959
## 1903                0 1034253.2 3101959
## 1904                1 1034253.2 3101959
## 1905                1 1034253.2 3101959
## 1906                1 1034253.2 3101959
## 1907                1 1034253.2 3101959
## 1908                1 1034253.2 3101959
## 1909                1 1034253.2 3101959
## 1910                1 1034253.2 3101959
## 1911                1 1034253.2 3101959
## 1912                1 1034253.2 3101959
## 1913                1 1034253.2 3101959
## 1914                1 1034253.2 3101959
## 1915                1  999718.1 3198295
## 1916                1  949488.6 3290890
## 1917                1  949488.6 3290890
## 1918                1  949488.6 3290890
## 1919                1  949488.6 3290890
## 1920                1  949488.6 3290890
## 1921                0  949488.6 3290890
## 1922                1  949488.6 3290890
## 1923                1  949488.6 3290890
## 1924                1  949488.6 3290890
## 1925                1  950511.0 3290395
## 1926                1  950511.0 3290395
## 1927                1  950511.0 3290395
## 1928                1  950511.0 3290395
## 1929                1  950511.0 3290395
## 1930                1  950511.0 3290395
## 1931                1  950511.0 3290395
## 1932                1  950511.0 3290395
## 1933                1  950511.0 3290395
## 1934                1  950511.0 3290395
## 1935                0  950511.0 3290395
## 1936                1  950511.0 3290395
## 1937                1  950511.0 3290395
## 1938                1  950511.0 3290395
## 1939                1  950511.0 3290395
## 1940                1  950511.0 3290395
## 1941                1  950511.0 3290395
## 1942                1  950511.0 3290395
## 1943                1  950511.0 3290395
## 1944                1  950511.0 3290395
## 1945                1  950511.0 3290395
## 1946                1  950511.0 3290395
## 1947                1  950511.0 3290395
## 1948                1  950511.0 3290395
## 1949                1  950511.0 3290395
## 1950                1  950511.0 3290395
## 1951                1  950511.0 3290395
## 1952                1  950511.0 3290395
## 1953                1  950511.0 3290395
## 1954                1  950511.0 3290395
## 1955                1  950511.0 3290395
## 1956                1  950511.0 3290395
## 1957                1  950511.0 3290395
## 1958                1  950511.0 3290395
## 1959                1  950511.0 3290395
## 1960                1  950511.0 3290395
## 1961                1  950511.0 3290395
## 1962                1  950511.0 3290395
## 1963                1  950511.0 3290395
## 1964                1  950511.0 3290395
## 1965                0 1155217.9 2835119
## 1966                1 1155217.9 2835119
## 1967                1 1155217.9 2835119
## 1968                1 1155217.9 2835119
## 1969                1 1155217.9 2835119
## 1970                1 1155217.9 2835119
## 1971                0 1155217.9 2835119
## 1972                1 1155217.9 2835119
## 1973                1 1155217.9 2835119
## 1974                0 1155217.9 2835119
## 1975                0 1155217.9 2835119
## 1976                0 1155217.9 2835119
## 1977                1 1155217.9 2835119
## 1978                0 1155217.9 2835119
## 1979                0 1155217.9 2835119
## 1980                1 1155217.9 2835119
## 1981                1 1155217.9 2835119
## 1982                0 1155217.9 2835119
## 1983                0 1165494.9 2795481
## 1984                0 1165494.9 2795481
## 1985                0 1165494.9 2795481
## 1986                1 1165494.9 2795481
## 1987                1 1165494.9 2795481
## 1988                1 1165494.9 2795481
## 1989                1 1165494.9 2795481
## 1990                0 1165494.9 2795481
## 1991                0 1165494.9 2795481
## 1992                0 1165494.9 2795481
## 1993                0 1165494.9 2795481
## 1994                0 1165494.9 2795481
## 1995                0 1165494.9 2795481
## 1996                1 1165494.9 2795481
## 1997                0 1165494.9 2795481
## 1998                0 1165494.9 2795481
## 1999                0 1165494.9 2795481
## 2000                1 1165494.9 2795481
## 2001                1 1165494.9 2795481
## 2002                1 1165494.9 2795481
## 2003                1 1165494.9 2795481
## 2004                0 1165494.9 2795481
## 2005                1 1165494.9 2795481
## 2006                1 1165494.9 2795481
## 2007                0 1165494.9 2795481
## 2008                1 1165494.9 2795481
## 2009                0 1165494.9 2795481
## 2010                0 1165494.9 2795481
## 2011                0 1165494.9 2795481
## 2012                0 1165494.9 2795481
## 2013                1 1165494.9 2795481
## 2014                0 1165494.9 2795481
## 2015                1 1165494.9 2795481
## 2016                0 1165494.9 2795481
## 2017                0 1165494.9 2795481
## 2018                0 1165494.9 2795481
## 2019                1 1165494.9 2795481
## 2020                0 1165494.9 2795481
## 2021                0 1165494.9 2795481
## 2022                0 1165494.9 2795481
## 2023                0 1165494.9 2795481
## 2024                1 1165494.9 2795481
## 2025                0 1165494.9 2795481
## 2026                0 1165494.9 2795481
## 2027                0 1165494.9 2795481
## 2028                0 1165494.9 2795481
## 2029                1 1165494.9 2795481
## 2030                1 1165494.9 2795481
## 2031                1 1165494.9 2795481
## 2032                0 1165494.9 2795481
## 2033                0 1165494.9 2795481
## 2034                1 1165494.9 2795481
## 2035                0 1165494.9 2795481
## 2036                1 1165494.9 2795481
## 2037                0 1165494.9 2795481
## 2038                1 1165494.9 2795481
## 2039                0 1165494.9 2795481
## 2040                0 1165494.9 2795481
## 2041                0 1165494.9 2795481
## 2042                1 1165494.9 2795481
## 2043                0 1165494.9 2795481
## 2044                0 1165494.9 2795481
## 2045                0 1165494.9 2795481
## 2046                0 1165494.9 2795481
## 2047                0 1165494.9 2795481
## 2048                0 1165494.9 2795481
## 2049                0 1165494.9 2795481
## 2050                1 1165494.9 2795481
## 2051                0 1165494.9 2795481
## 2052                0 1165494.9 2795481
## 2053                1 1165494.9 2795481
## 2054                0 1165494.9 2795481
## 2055                0 1165494.9 2795481
## 2056                1 1165494.9 2795481
## 2057                0 1165494.9 2795481
## 2058                0 1165494.9 2795481
## 2059                1 1058006.9 3032124
## 2060                1 1058006.9 3032124
## 2061                1 1058006.9 3032124
## 2062                1 1058006.9 3032124
## 2063                1 1058006.9 3032124
## 2064                1 1058006.9 3032124
## 2065                1 1058006.9 3032124
## 2066                1 1058006.9 3032124
## 2067                0 1058006.9 3032124
## 2068                1 1058006.9 3032124
## 2069                0 1058006.9 3032124
## 2070                1 1058006.9 3032124
## 2071                0 1058006.9 3032124
## 2072                1 1058006.9 3032124
## 2073                1 1058006.9 3032124
## 2074                1 1058006.9 3032124
## 2075                1 1058006.9 3032124
## 2076                0 1058006.9 3032124
## 2077                1 1058006.9 3032124
## 2078                0 1058006.9 3032124
## 2079                1 1058006.9 3032124
## 2080                1 1058006.9 3032124
## 2081                1 1058006.9 3032124
## 2082                1 1058006.9 3032124
## 2083                1 1058006.9 3032124
## 2084                1 1058006.9 3032124
## 2085                1 1058006.9 3032124
## 2086                1 1058006.9 3032124
## 2087                1 1058006.9 3032124
## 2088                1 1058006.9 3032124
## 2089                1 1058006.9 3032124
## 2090                1 1058006.9 3032124
## 2091                1 1058006.9 3032124
## 2092                1 1058006.9 3032124
## 2093                1 1058006.9 3032124
## 2094                1 1058006.9 3032124
## 2095                1 1058006.9 3032124
## 2096                1 1058006.9 3032124
## 2097                1 1058006.9 3032124
## 2098                1 1058006.9 3032124
## 2099                1 1058006.9 3032124
## 2100                1 1058006.9 3032124
## 2101                1 1058006.9 3032124
## 2102                1 1058006.9 3032124
## 2103                0 1058006.9 3032124
## 2104                1 1058006.9 3032124
## 2105                1 1058006.9 3032124
## 2106                0 1058006.9 3032124
## 2107                1 1058006.9 3032124
## 2108                0 1058006.9 3032124
## 2109                1 1058006.9 3032124
## 2110                1 1058006.9 3032124
## 2111                1 1058006.9 3032124
## 2112                1 1058006.9 3032124
## 2113                1 1058006.9 3032124
## 2114                1 1058006.9 3032124
## 2115                1 1058006.9 3032124
## 2116                1 1058006.9 3032124
## 2117                1 1058006.9 3032124
## 2118                1 1058006.9 3032124
## 2119                1 1058006.9 3032124
## 2120                1 1058006.9 3032124
## 2121                1 1171365.6 2803203
## 2122                1 1171365.6 2803203
## 2123                1 1171365.6 2803203
## 2124                1 1171365.6 2803203
## 2125                0 1171365.6 2803203
## 2126                1 1171365.6 2803203
## 2127                0 1171365.6 2803203
## 2128                1 1171365.6 2803203
## 2129                1 1171365.6 2803203
## 2130                1 1171365.6 2803203
## 2131                0 1171365.6 2803203
## 2132                1 1171365.6 2803203
## 2133                1 1171365.6 2803203
## 2134                1 1171365.6 2803203
## 2135                1 1171365.6 2803203
## 2136                0 1171365.6 2803203
## 2137                1 1171365.6 2803203
## 2138                1 1171365.6 2803203
## 2139                1 1171365.6 2803203
## 2140                1 1171365.6 2803203
## 2141                1 1171365.6 2803203
## 2142                0 1171365.6 2803203
## 2143                1 1171365.6 2803203
## 2144                0 1171365.6 2803203
## 2145                0 1171365.6 2803203
## 2146                1 1171365.6 2803203
## 2147                0 1171365.6 2803203
## 2148                1 1171365.6 2803203
## 2149                0 1171365.6 2803203
## 2150                1 1171365.6 2803203
## 2151                0 1171365.6 2803203
## 2152                0 1171365.6 2803203
## 2153                1 1171365.6 2803203
## 2154                1 1171365.6 2803203
## 2155                1 1171365.6 2803203
## 2156                1 1171365.6 2803203
## 2157                1 1171365.6 2803203
## 2158                1 1171365.6 2803203
## 2159                1 1171365.6 2803203
## 2160                0 1171365.6 2803203
## 2161                1 1171365.6 2803203
## 2162                1 1171365.6 2803203
## 2163                0 1171365.6 2803203
## 2164                0 1171365.6 2803203
## 2165                1 1171365.6 2803203
## 2166                1 1171365.6 2803203
## 2167                1 1171365.6 2803203
## 2168                1 1171365.6 2803203
## 2169                0 1171365.6 2803203
## 2170                1 1171365.6 2803203
## 2171                1 1171365.6 2803203
## 2172                0 1171365.6 2803203
## 2173                1 1171365.6 2803203
## 2174                0 1171365.6 2803203
## 2175                1 1171365.6 2803203
## 2176                1 1171365.6 2803203
## 2177                1 1171365.6 2803203
## 2178                0 1171365.6 2803203
## 2179                0 1171365.6 2803203
## 2180                0 1171365.6 2803203
## 2181                0 1171365.6 2803203
## 2182                0 1171365.6 2803203
## 2183                0 1171365.6 2803203
## 2184                1 1171365.6 2803203
## 2185                1 1171365.6 2803203
## 2186                0 1171365.6 2803203
## 2187                1 1171365.6 2803203
## 2188                1 1171365.6 2803203
## 2189                1 1171365.6 2803203
## 2190                1 1171365.6 2803203
## 2191                0 1171365.6 2803203
## 2192                1 1171365.6 2803203
## 2193                0 1171365.6 2803203
## 2194                0 1171365.6 2803203
## 2195                1 1171365.6 2803203
## 2196                1 1171365.6 2803203
## 2197                0 1171365.6 2803203
## 2198                1 1171365.6 2803203
## 2199                1 1171365.6 2803203
## 2200                0 1171365.6 2803203
## 2201                1 1171365.6 2803203
## 2202                0 1171365.6 2803203
## 2203                1 1171365.6 2803203
## 2204                0 1171365.6 2803203
## 2205                0 1171365.6 2803203
## 2206                1 1171365.6 2803203
## 2207                1 1171365.6 2803203
## 2208                1 1171365.6 2803203
## 2209                0 1171365.6 2803203
## 2210                0 1171365.6 2803203
## 2211                0 1171365.6 2803203
## 2212                0 1171365.6 2803203
## 2213                0 1171365.6 2803203
## 2214                1 1171365.6 2803203
## 2215                0 1171365.6 2803203
## 2216                0 1171365.6 2803203
## 2217                0 1171365.6 2803203
## 2218                0 1171365.6 2803203
## 2219                1 1171365.6 2803203
## 2220                0 1171365.6 2803203
## 2221                0 1171365.6 2803203
## 2222                0 1171365.6 2803203
## 2223                1 1171365.6 2803203
## 2224                1 1171365.6 2803203
## 2225                0 1171365.6 2803203
## 2226                1 1171365.6 2803203
## 2227                0 1171365.6 2803203
## 2228                0 1171365.6 2803203
## 2229                0 1171365.6 2803203
## 2230                0 1171365.6 2803203
## 2231                0 1171365.6 2803203
## 2232                0 1171365.6 2803203
## 2233                1 1171365.6 2803203
## 2234                0 1171365.6 2803203
## 2235                0 1171365.6 2803203
## 2236                1 1171365.6 2803203
## 2237                1 1171365.6 2803203
## 2238                0 1171365.6 2803203
## 2239                1 1171365.6 2803203
## 2240                1 1171365.6 2803203
## 2241                0 1171365.6 2803203
## 2242                0 1171365.6 2803203
## 2243                1 1171365.6 2803203
## 2244                1 1171365.6 2803203
## 2245                1 1171365.6 2803203
## 2246                1 1171365.6 2803203
## 2247                1 1171365.6 2803203
## 2248                0 1171365.6 2803203
## 2249                1 1171365.6 2803203
## 2250                0 1171365.6 2803203
## 2251                1 1171365.6 2803203
## 2252                0 1171365.6 2803203
## 2253                0 1171365.6 2803203
## 2254                1 1171365.6 2803203
## 2255                0 1171365.6 2803203
## 2256                0 1171365.6 2803203
## 2257                0 1171365.6 2803203
## 2258                0 1171365.6 2803203
## 2259                0 1171365.6 2803203
## 2260                0 1171365.6 2803203
## 2261                0 1171365.6 2803203
## 2262                0 1171365.6 2803203
## 2263                1 1171365.6 2803203
## 2264                1 1171365.6 2803203
## 2265                1 1171365.6 2803203
## 2266                1 1171365.6 2803203
## 2267                0 1171365.6 2803203
## 2268                1 1171365.6 2803203
## 2269                1 1171365.6 2803203
## 2270                1 1171365.6 2803203
## 2271                1 1171365.6 2803203
## 2272                1 1171365.6 2803203
## 2273                0 1171365.6 2803203
## 2274                1 1171365.6 2803203
## 2275                0 1171365.6 2803203
## 2276                0 1171365.6 2803203
## 2277                1 1171365.6 2803203
## 2278                0 1171365.6 2803203
## 2279                1 1171365.6 2803203
## 2280                0 1171365.6 2803203
## 2281                1 1171365.6 2803203
## 2282                0 1171365.6 2803203
## 2283                0 1171365.6 2803203
## 2284                0 1171365.6 2803203
## 2285                1 1171365.6 2803203
## 2286                1 1171365.6 2803203
## 2287                0 1171365.6 2803203
## 2288                1 1171365.6 2803203
## 2289                0 1171365.6 2803203
## 2290                1 1171365.6 2803203
## 2291                1 1171365.6 2803203
## 2292                1 1171365.6 2803203
## 2293                1 1171365.6 2803203
## 2294                1 1171365.6 2803203
## 2295                0 1171365.6 2803203
## 2296                0 1171365.6 2803203
## 2297                1 1171365.6 2803203
## 2298                0 1171365.6 2803203
## 2299                0 1171365.6 2803203
## 2300                0 1171365.6 2803203
## 2301                0 1171365.6 2803203
## 2302                1 1171365.6 2803203
## 2303                0 1171365.6 2803203
## 2304                1 1171365.6 2803203
## 2305                0 1171365.6 2803203
## 2306                0 1171365.6 2803203
## 2307                0 1171365.6 2803203
## 2308                1 1171365.6 2803203
## 2309                0 1171365.6 2803203
## 2310                1 1171365.6 2803203
## 2311                1 1171365.6 2803203
## 2312                1 1171365.6 2803203
## 2313                1 1171365.6 2803203
## 2314                0 1171365.6 2803203
## 2315                0 1171365.6 2803203
## 2316                1 1171365.6 2803203
## 2317                0 1171365.6 2803203
## 2318                0 1171365.6 2803203
## 2319                0 1171365.6 2803203
## 2320                0 1171365.6 2803203
## 2321                1 1171365.6 2803203
## 2322                0 1171365.6 2803203
## 2323                0 1171365.6 2803203
## 2324                0 1171365.6 2803203
## 2325                0 1171365.6 2803203
## 2326                0 1171365.6 2803203
## 2327                0 1171365.6 2803203
## 2328                1 1171365.6 2803203
## 2329                0 1171365.6 2803203
## 2330                0 1171365.6 2803203
## 2331                0 1171365.6 2803203
## 2332                0 1171365.6 2803203
## 2333                1 1171365.6 2803203
## 2334                1 1171365.6 2803203
## 2335                1 1171365.6 2803203
## 2336                1 1171365.6 2803203
## 2337                1 1171365.6 2803203
## 2338                0 1171365.6 2803203
## 2339                1 1171365.6 2803203
## 2340                1 1171365.6 2803203
## 2341                1 1171365.6 2803203
## 2342                1 1171365.6 2803203
## 2343                1 1171365.6 2803203
## 2344                1 1171365.6 2803203
## 2345                1 1171365.6 2803203
## 2346                1 1171365.6 2803203
## 2347                1 1171365.6 2803203
## 2348                1 1171365.6 2803203
## 2349                1 1171365.6 2803203
## 2350                1 1171365.6 2803203
## 2351                1 1171365.6 2803203
## 2352                1 1171365.6 2803203
## 2353                1 1171365.6 2803203
## 2354                1 1171365.6 2803203
## 2355                0 1171365.6 2803203
## 2356                1 1171365.6 2803203
## 2357                1 1171365.6 2803203
## 2358                1 1171365.6 2803203
## 2359                1 1171365.6 2803203
## 2360                0 1171365.6 2803203
## 2361                1 1171365.6 2803203
## 2362                1 1171365.6 2803203
## 2363                1 1171365.6 2803203
## 2364                1 1171365.6 2803203
## 2365                0 1171365.6 2803203
## 2366                1 1171365.6 2803203
## 2367                0 1171365.6 2803203
## 2368                0 1171365.6 2803203
## 2369                0 1150184.3 2776463
## 2370                1 1150184.3 2776463
## 2371                0 1150184.3 2776463
## 2372                1 1150184.3 2776463
## 2373                1 1150184.3 2776463
## 2374                1 1150184.3 2776463
## 2375                0 1150184.3 2776463
## 2376                0 1150184.3 2776463
## 2377                0 1150184.3 2776463
## 2378                0 1150184.3 2776463
## 2379                0 1150184.3 2776463
## 2380                1 1150184.3 2776463
## 2381                0 1150184.3 2776463
## 2382                0 1150184.3 2776463
## 2383                0 1150184.3 2776463
## 2384                0 1150184.3 2776463
## 2385                0 1150184.3 2776463
## 2386                0 1150184.3 2776463
## 2387                0 1150184.3 2776463
## 2388                1 1150184.3 2776463
## 2389                0 1150184.3 2776463
## 2390                1 1150184.3 2776463
## 2391                1 1150184.3 2776463
## 2392                0 1150184.3 2776463
## 2393                0 1150184.3 2776463
## 2394                1 1150184.3 2776463
## 2395                1 1150184.3 2776463
## 2396                0 1150184.3 2776463
## 2397                0 1150184.3 2776463
## 2398                0 1150184.3 2776463
## 2399                0 1150184.3 2776463
## 2400                1 1150184.3 2776463
## 2401                0 1150184.3 2776463
## 2402                0 1150184.3 2776463
## 2403                1  950518.7 3290379
## 2404                1  950518.7 3290379
## 2405                1  950518.7 3290379
## 2406                1  950518.7 3290379
## 2407                1  950518.7 3290379
## 2408                1  950518.7 3290379
## 2409                1  950518.7 3290379
## 2410                1  950518.7 3290379
## 2411                1  950518.7 3290379
## 2412                1  950518.7 3290379
## 2413                1  950518.7 3290379
## 2414                1  950518.7 3290379
## 2415                0  950518.7 3290379
## 2416                0  950518.7 3290379
## 2417                1  950518.7 3290379
## 2418                1  950518.7 3290379
## 2419                1 1155617.4 2835511
## 2420                1 1155617.4 2835511
## 2421                1 1155617.4 2835511
## 2422                1 1155617.4 2835511
## 2423                1 1155617.4 2835511
## 2424                1 1155617.4 2835511
## 2425                1 1155617.4 2835511
## 2426                1 1155617.4 2835511
## 2427                1 1155617.4 2835511
## 2428                1 1155617.4 2835511
## 2429                1 1155617.4 2835511
## 2430                1 1155617.4 2835511
## 2431                1 1155617.4 2835511
## 2432                1 1155617.4 2835511
## 2433                1 1155617.4 2835511
## 2434                0 1155617.4 2835511
## 2435                1 1155617.4 2835511
## 2436                1 1155617.4 2835511
## 2437                1 1155617.4 2835511
## 2438                1 1155617.4 2835511
## 2439                1 1155617.4 2835511
## 2440                1 1155617.4 2835511
## 2441                1 1155617.4 2835511
## 2442                1 1155617.4 2835511
## 2443                1 1155617.4 2835511
## 2444                1 1155617.4 2835511
## 2445                1 1155617.4 2835511
## 2446                1 1155617.4 2835511
## 2447                1 1155617.4 2835511
## 2448                1 1155617.4 2835511
## 2449                1 1155617.4 2835511
## 2450                1 1155617.4 2835511
## 2451                1 1155617.4 2835511
## 2452                1 1155617.4 2835511
## 2453                1 1155617.4 2835511
## 2454                1 1171365.6 2803203
## 2455                1 1171365.6 2803203
## 2456                0 1171365.6 2803203
## 2457                1 1171365.6 2803203
## 2458                1 1171365.6 2803203
## 2459                1 1171365.6 2803203
## 2460                0 1171365.6 2803203
## 2461                1 1171365.6 2803203
## 2462                1 1171365.6 2803203
## 2463                1 1171365.6 2803203
## 2464                1 1171365.6 2803203
## 2465                1 1171365.6 2803203
## 2466                1 1171365.6 2803203
## 2467                1 1171365.6 2803203
## 2468                1 1171365.6 2803203
## 2469                1 1171365.6 2803203
## 2470                1 1058006.9 3032124
## 2471                1 1058006.9 3032124
## 2472                1 1058006.9 3032124
## 2473                1 1058006.9 3032124
## 2474                1 1058006.9 3032124
## 2475                1 1058006.9 3032124
## 2476                1 1058006.9 3032124
## 2477                1 1058006.9 3032124
## 2478                1 1058006.9 3032124
## 2479                1 1058006.9 3032124
## 2480                1 1058006.9 3032124
## 2481                1 1058006.9 3032124
## 2482                1 1058006.9 3032124
## 2483                1 1058006.9 3032124
## 2484                1 1058006.9 3032124
## 2485                1 1058006.9 3032124
## 2486                1 1058006.9 3032124
## 2487                1 1058006.9 3032124
## 2488                1 1058006.9 3032124
## 2489                1 1058006.9 3032124
## 2490                1 1058006.9 3032124
## 2491                1 1058006.9 3032124
## 2492                1 1058006.9 3032124
## 2493                1 1058006.9 3032124
## 2494                1 1058006.9 3032124
## 2495                1 1058006.9 3032124
## 2496                1 1058006.9 3032124
## 2497                1 1058006.9 3032124
## 2498                1 1058006.9 3032124
## 2499                1 1058006.9 3032124
## 2500                1 1058006.9 3032124
## 2501                1 1058006.9 3032124
## 2502                1 1058006.9 3032124
## 2503                1 1058006.9 3032124
## 2504                1 1058006.9 3032124
## 2505                1 1058006.9 3032124
## 2506                1 1058006.9 3032124
## 2507                1 1058006.9 3032124
## 2508                1 1058006.9 3032124
## 2509                1 1058006.9 3032124
## 2510                1 1058006.9 3032124
## 2511                1 1058006.9 3032124
## 2512                1 1058006.9 3032124
## 2513                1 1032899.7 3098293
## 2514                1 1032899.7 3098293
## 2515                1 1032899.7 3098293
## 2516                1 1032899.7 3098293
## 2517                1 1032899.7 3098293
## 2518                1 1032899.7 3098293
## 2519                1 1032899.7 3098293
## 2520                1 1032899.7 3098293
## 2521                1 1032899.7 3098293
## 2522                1 1032899.7 3098293
## 2523                1 1032899.7 3098293
## 2524                1 1032899.7 3098293
## 2525                1 1032899.7 3098293
## 2526                1 1032899.7 3098293
## 2527                1 1032899.7 3098293
## 2528                1 1032899.7 3098293
## 2529                1 1032899.7 3098293
## 2530                1 1032899.7 3098293
## 2531                1 1032899.7 3098293
## 2532                0 1032899.7 3098293
## 2533                1 1032899.7 3098293
## 2534                1 1032899.7 3098293
## 2535                1 1032899.7 3098293
## 2536                1 1000147.1 3198059
## 2537                1 1000147.1 3198059
## 2538                1 1000147.1 3198059
## 2539                1 1000147.1 3198059
## 2540                1 1000147.1 3198059
## 2541                0 1000147.1 3198059
## 2542                1 1000147.1 3198059
## 2543                1 1000147.1 3198059
## 2544                1 1000147.1 3198059
## 2545                1 1000147.1 3198059
## 2546                1 1000147.1 3198059
## 2547                1 1000147.1 3198059
## 2548                1  999718.1 3198295
## 2549                1  999718.1 3198295
## 2550                1  999718.1 3198295
## 2551                1  999718.1 3198295
## 2552                1  999718.1 3198295
## 2553                1  999718.1 3198295
## 2554                1  999718.1 3198295
## 2555                1  999718.1 3198295
## 2556                1  999718.1 3198295
## 2557                1  999718.1 3198295
## 2558                1  999718.1 3198295
## 2559                1  999718.1 3198295
## 2560                1  999718.1 3198295
## 2561                1  999718.1 3198295
## 2562                1 1171365.6 2803203
## 2563                1 1171365.6 2803203
## 2564                1 1171365.6 2803203
## 2565                1 1171365.6 2803203
## 2566                1 1171365.6 2803203
## 2567                1 1171365.6 2803203
## 2568                0 1171365.6 2803203
## 2569                1 1171365.6 2803203
## 2570                1 1171365.6 2803203
## 2571                1 1171365.6 2803203
## 2572                1 1171365.6 2803203
## 2573                1 1171365.6 2803203
## 2574                1 1171365.6 2803203
## 2575                0 1171365.6 2803203
## 2576                1 1171365.6 2803203
## 2577                1 1171365.6 2803203
## 2578                0 1171365.6 2803203
## 2579                0 1171365.6 2803203
## 2580                1 1171365.6 2803203
## 2581                1 1171365.6 2803203
## 2582                0 1171365.6 2803203
## 2583                1 1171365.6 2803203
## 2584                1 1171365.6 2803203
## 2585                0 1171365.6 2803203
## 2586                1 1171365.6 2803203
## 2587                1 1171365.6 2803203
## 2588                1 1171365.6 2803203
## 2589                1 1171365.6 2803203
## 2590                1 1171365.6 2803203
## 2591                0 1171365.6 2803203
## 2592                1 1171365.6 2803203
## 2593                1 1171365.6 2803203
## 2594                1 1171365.6 2803203
## 2595                1 1171365.6 2803203
## 2596                1 1171365.6 2803203
## 2597                1 1171365.6 2803203
## 2598                1 1171365.6 2803203
## 2599                1 1171365.6 2803203
## 2600                1 1171365.6 2803203
## 2601                1 1171365.6 2803203
## 2602                0 1171365.6 2803203
## 2603                1 1171365.6 2803203
## 2604                1 1171365.6 2803203
## 2605                0 1171365.6 2803203
## 2606                1 1171365.6 2803203
## 2607                1 1171365.6 2803203
## 2608                1 1171365.6 2803203
## 2609                1 1171365.6 2803203
## 2610                1 1171365.6 2803203
## 2611                1 1171365.6 2803203
## 2612                1 1171365.6 2803203
## 2613                1 1171365.6 2803203
## 2614                1 1171365.6 2803203
## 2615                1 1171365.6 2803203
## 2616                1 1171365.6 2803203
## 2617                1 1171365.6 2803203
## 2618                1 1171365.6 2803203
## 2619                1 1171365.6 2803203
## 2620                1 1171365.6 2803203
## 2621                1 1171365.6 2803203
## 2622                1 1171365.6 2803203
## 2623                1 1171365.6 2803203
## 2624                1 1171365.6 2803203
## 2625                1 1171365.6 2803203
## 2626                1 1171365.6 2803203
## 2627                1 1171365.6 2803203
## 2628                1 1171365.6 2803203
## 2629                1 1171365.6 2803203
## 2630                1 1171365.6 2803203
## 2631                1 1171365.6 2803203
## 2632                1 1171365.6 2803203
## 2633                1 1171365.6 2803203
## 2634                0 1171365.6 2803203
## 2635                0 1171365.6 2803203
## 2636                1 1171365.6 2803203
## 2637                0 1171365.6 2803203
## 2638                1 1171365.6 2803203
## 2639                1 1171365.6 2803203
## 2640                0 1171365.6 2803203
## 2641                0 1171365.6 2803203
## 2642                0 1171365.6 2803203
## 2643                0 1152131.0 2778862
## 2644                0 1152131.0 2778862
## 2645                1 1152131.0 2778862
## 2646                1 1152131.0 2778862
## 2647                1 1152131.0 2778862
## 2648                1 1152131.0 2778862
## 2649                0 1152131.0 2778862
## 2650                0 1152131.0 2778862
## 2651                0 1152131.0 2778862
## 2652                1 1152131.0 2778862
## 2653                1 1152131.0 2778862
## 2654                1 1152131.0 2778862
## 2655                0 1152131.0 2778862
## 2656                1 1152131.0 2778862
## 2657                1 1152131.0 2778862
## 2658                1  950508.0 3290398
## 2659                1  950508.0 3290398
## 2660                1  950508.0 3290398
## 2661                1  950508.0 3290398
## 2662                1  950508.0 3290398
## 2663                1  950508.0 3290398
## 2664                1  950508.0 3290398
## 2665                1  950508.0 3290398
## 2666                1  950508.0 3290398
## 2667                1  950508.0 3290398
## 2668                1  950508.0 3290398
## 2669                1  950508.0 3290398
## 2670                1  950508.0 3290398
## 2671                1  950508.0 3290398
## 2672                1  950508.0 3290398
## 2673                1  950508.0 3290398
## 2674                1  950508.0 3290398
## 2675                1  950508.0 3290401
## 2676                1  950508.0 3290401
## 2677                1  950508.0 3290401
## 2678                1  950508.0 3290401
## 2679                1  950508.0 3290401
## 2680                1  950508.0 3290401
## 2681                1  950508.0 3290401
## 2682                1  950508.0 3290401
## 2683                1  950508.0 3290401
## 2684                1  950508.0 3290401
## 2685                1  950508.0 3290401
## 2686                1  950508.0 3290401
## 2687                1  950508.0 3290401
## 2688                1  950508.0 3290401
## 2689                1  950508.0 3290401
## 2690                1  950508.0 3290401
## 2691                1  950508.0 3290401
## 2692                1  950508.0 3290401
## 2693                1  950508.0 3290401
## 2694                1 1155600.4 2835443
## 2695                1 1155600.4 2835443
## 2696                1 1155600.4 2835443
## 2697                1 1155600.4 2835443
## 2698                1 1155600.4 2835443
## 2699                1 1155600.4 2835443
## 2700                1 1155600.4 2835443
## 2701                1 1155600.4 2835443
## 2702                1 1155600.4 2835443
## 2703                1 1155600.4 2835443
## 2704                1 1155600.4 2835443
## 2705                1 1155600.4 2835443
## 2706                1 1155600.4 2835443
## 2707                1 1155600.4 2835443
## 2708                1 1155600.4 2835443
## 2709                1 1155600.4 2835443
## 2710                1 1155600.4 2835443
## 2711                1 1155600.4 2835443
## 2712                1 1155600.4 2835443
## 2713                1 1155600.4 2835443
## 2714                1 1155600.4 2835443
## 2715                1 1155600.4 2835443
## 2716                1 1155600.4 2835443
## 2717                1 1155600.4 2835443
## 2718                1 1155600.4 2835443
## 2719                1 1155600.4 2835443
## 2720                1 1155600.4 2835443
## 2721                1 1155600.4 2835443
## 2722                0 1155600.4 2835443
## 2723                0 1155600.4 2835443
## 2724                0 1155600.4 2835443
## 2725                1 1155600.4 2835443
## 2726                1 1155600.4 2835443
## 2727                0 1155600.4 2835443
## 2728                0 1155600.4 2835443
## 2729                0 1155600.4 2835443
## 2730                0 1155600.4 2835443
## 2731                1 1155600.4 2835443
## 2732                1 1155600.4 2835443
## 2733                1 1155600.4 2835443
## 2734                1 1155600.4 2835443
## 2735                1 1155600.4 2835443
## 2736                1 1162614.0 2792167
## 2737                1 1162614.0 2792167
## 2738                1 1162614.0 2792167
## 2739                1 1162614.0 2792167
## 2740                1 1165438.9 2795475
## 2741                1 1165438.9 2795475
## 2742                1 1165438.9 2795475
## 2743                1 1165438.9 2795475
## 2744                1 1165438.9 2795475
## 2745                1 1165438.9 2795475
## 2746                1 1162614.0 2792167
## 2747                1 1162614.0 2792167
## 2748                1 1162614.0 2792167
## 2749                1 1162614.0 2792167
## 2750                1 1165438.9 2795475
## 2751                1 1165438.9 2795475
## 2752                1 1165438.9 2795475
## 2753                1 1165438.9 2795475
## 2754                1 1162614.0 2792167
## 2755                1 1162614.0 2792167
## 2756                1 1162614.0 2792167
## 2757                1 1162614.0 2792167
## 2758                1 1162614.0 2792167
## 2759                1 1165438.9 2795475
## 2760                1 1165438.9 2795475
## 2761                1 1165438.9 2795475
## 2762                1 1165438.9 2795475
## 2763                1 1162614.0 2792167
## 2764                1 1162614.0 2792167
## 2765                1 1162614.0 2792167
## 2766                1 1162614.0 2792167
## 2767                1 1162614.0 2792167
## 2768                1 1165438.9 2795475
## 2769                1 1165438.9 2795475
## 2770                1 1165438.9 2795475
## 2771                1 1165438.9 2795475
## 2772                1 1162614.0 2792167
## 2773                1 1162614.0 2792167
## 2774                1 1162614.0 2792167
## 2775                1 1162614.0 2792167
## 2776                1 1162614.0 2792167
## 2777                1 1165438.9 2795475
## 2778                1 1165438.9 2795475
## 2779                1 1165438.9 2795475
## 2780                0 1165438.3 2795489
## 2781                0 1165438.3 2795489
## 2782                0 1165438.3 2795489
## 2783                0 1165438.3 2795489
## 2784                0 1165438.3 2795489
## 2785                0 1165438.3 2795489
## 2786                0 1165438.3 2795489
## 2787                0 1165438.3 2795489
## 2788                0 1165438.3 2795489
## 2789                0 1165438.3 2795489
## 2790                0 1165438.3 2795489
## 2791                0 1165438.3 2795489
## 2792                0 1165438.3 2795489
## 2793                0 1165438.3 2795489
## 2794                0 1165438.3 2795489
## 2795                0 1165438.3 2795489
## 2796                0 1165438.3 2795489
## 2797                0 1165438.3 2795489
## 2798                0 1165438.3 2795489
## 2799                0 1165438.3 2795489
## 2800                0 1165438.3 2795489
## 2801                0 1165438.3 2795489
## 2802                0 1165438.3 2795489
## 2803                1 1165438.3 2795489
## 2804                0 1165438.3 2795489
## 2805                0 1165438.3 2795489
## 2806                0 1165438.3 2795489
## 2807                0 1165438.3 2795489
## 2808                1 1165438.3 2795489
## 2809                0 1165438.3 2795489
## 2810                1 1165438.3 2795489
## 2811                1 1165438.3 2795489
## 2812                1 1058006.9 3032124
## 2813                1 1058006.9 3032124
## 2814                1 1058006.9 3032124
## 2815                1 1058006.9 3032124
## 2816                1 1058006.9 3032124
## 2817                1 1058006.9 3032124
## 2818                1 1058006.9 3032124
## 2819                1 1058006.9 3032124
## 2820                1 1058006.9 3032124
## 2821                1 1058006.9 3032124
## 2822                1 1058006.9 3032124
## 2823                1 1058006.9 3032124
## 2824                1 1058006.9 3032124
## 2825                1 1058006.9 3032124
## 2826                1 1058006.9 3032124
## 2827                1 1058006.9 3032124
## 2828                1 1058006.9 3032124
## 2829                1 1058006.9 3032124
## 2830                1 1058006.9 3032124
## 2831                1 1058006.9 3032124
## 2832                1 1058006.9 3032124
## 2833                1 1058006.9 3032124
## 2834                1 1058006.9 3032124
## 2835                1 1058006.9 3032124
## 2836                1 1058006.9 3032124
## 2837                1 1058006.9 3032124
## 2838                1 1058006.9 3032124
## 2839                1 1058006.9 3032124
## 2840                1 1058006.9 3032124
## 2841                1 1058006.9 3032124
## 2842                1 1058006.9 3032124
## 2843                1 1058006.9 3032124
## 2844                1 1058006.9 3032124
## 2845                1 1058006.9 3032124
## 2846                1 1058006.9 3032124
## 2847                1 1058006.9 3032124
## 2848                1 1058006.9 3032124
## 2849                1 1058006.9 3032124
## 2850                1 1058006.9 3032124
## 2851                1 1058006.9 3032124
## 2852                1 1058006.9 3032124
## 2853                1 1058006.9 3032124
## 2854                1 1058006.9 3032124
## 2855                1 1033819.8 3097599
## 2856                1 1033819.8 3097599
## 2857                1 1033819.8 3097599
## 2858                1 1033819.8 3097599
## 2859                1 1033819.8 3097599
## 2860                1 1033819.8 3097599
## 2861                1 1033819.8 3097599
## 2862                1 1033819.8 3097599
## 2863                1 1033819.8 3097599
## 2864                1 1033819.8 3097599
## 2865                1 1033819.8 3097599
## 2866                1 1033819.8 3097599
## 2867                1 1033819.8 3097599
## 2868                1 1033819.8 3097599
## 2869                1 1033819.8 3097599
## 2870                1 1033819.8 3097599
## 2871                1 1033819.8 3097599
## 2872                1 1033819.8 3097599
## 2873                1 1033819.8 3097599
## 2874                1 1033819.8 3097599
## 2875                1 1033819.8 3097599
## 2876                1 1033819.8 3097599
## 2877                1 1033819.8 3097599
## 2878                1 1033819.8 3097599
## 2879                1 1033819.8 3097599
## 2880                1 1033819.8 3097599
## 2881                1 1033819.8 3097599
## 2882                1 1033819.8 3097599
## 2883                1 1033819.8 3097599
## 2884                1 1033819.8 3097599
## 2885                1 1033819.8 3097599
## 2886                1 1033819.8 3097599
## 2887                1 1033819.8 3097599
## 2888                0 1033819.8 3097599
## 2889                1 1033819.8 3097599
## 2890                1 1033819.8 3097599
## 2891                1 1033819.8 3097599
## 2892                1 1033819.8 3097599
## 2893                1 1033819.8 3097599
## 2894                1 1033819.8 3097599
## 2895                1 1033819.8 3097599
## 2896                1 1033819.8 3097599
## 2897                1 1033819.8 3097599
## 2898                1 1033819.8 3097599
## 2899                1 1033819.8 3097599
## 2900                1 1033819.8 3097599
## 2901                1 1033819.8 3097599
## 2902                1 1033819.8 3097599
## 2903                1 1033819.8 3097599
## 2904                1 1033819.8 3097599
## 2905                1 1000227.9 3196212
## 2906                1 1000227.9 3196212
## 2907                1 1000227.9 3196212
## 2908                1 1000227.9 3196212
## 2909                1 1000227.9 3196212
## 2910                1 1000227.9 3196212
## 2911                1 1000227.9 3196212
## 2912                1 1000227.9 3196212
## 2913                1 1000227.9 3196212
## 2914                1 1000227.9 3196212
## 2915                1 1000227.9 3196212
## 2916                1 1000227.9 3196212
## 2917                1 1000227.9 3196212
## 2918                1 1000227.9 3196212
## 2919                0 1000227.9 3196212
## 2920                1 1000227.9 3196212
## 2921                1 1000227.9 3196212
## 2922                1 1000227.9 3196212
## 2923                1 1000227.9 3196212
## 2924                1 1000227.9 3196212
## 2925                1 1000227.9 3196212
## 2926                1 1000227.9 3196212
## 2927                1 1000227.9 3196212
## 2928                1 1000227.9 3196212
## 2929                1 1000227.9 3196212
## 2930                1 1000227.9 3196212
## 2931                0 1000227.9 3196212
## 2932                1 1000227.9 3196212
## 2933                1 1000227.9 3196212
## 2934                1 1171365.6 2803203
## 2935                1 1171365.6 2803203
## 2936                1 1171365.6 2803203
## 2937                1 1171365.6 2803203
## 2938                1 1171365.6 2803203
## 2939                1 1171365.6 2803203
## 2940                1 1171365.6 2803203
## 2941                1 1171365.6 2803203
## 2942                1 1171365.6 2803203
## 2943                1 1171365.6 2803203
## 2944                1 1171365.6 2803203
## 2945                1 1171365.6 2803203
## 2946                1 1171365.6 2803203
## 2947                1 1171365.6 2803203
## 2948                1 1171365.6 2803203
## 2949                1 1171365.6 2803203
## 2950                1 1171365.6 2803203
## 2951                1 1171365.6 2803203
## 2952                1 1171365.6 2803203
## 2953                1 1171365.6 2803203
## 2954                1 1171365.6 2803203
## 2955                1 1171365.6 2803203
## 2956                1 1171365.6 2803203
## 2957                1 1171365.6 2803203
## 2958                1 1171365.6 2803203
## 2959                1 1171365.6 2803203
## 2960                1 1171365.6 2803203
## 2961                1 1171365.6 2803203
## 2962                1 1171365.6 2803203
## 2963                1 1171365.6 2803203
## 2964                1 1171365.6 2803203
## 2965                1 1171365.6 2803203
## 2966                1 1171365.6 2803203
## 2967                1 1171365.6 2803203
## 2968                1 1171365.6 2803203
## 2969                1 1171365.6 2803203
## 2970                1 1171365.6 2803203
## 2971                1 1171365.6 2803203
## 2972                1 1171365.6 2803203
## 2973                1 1171365.6 2803203
## 2974                1 1171365.6 2803203
## 2975                1 1171365.6 2803203
## 2976                1 1171365.6 2803203
## 2977                1 1171365.6 2803203
## 2978                1 1171365.6 2803203
## 2979                1 1171365.6 2803203
## 2980                1 1171365.6 2803203
## 2981                1 1171365.6 2803203
## 2982                1 1171365.6 2803203
## 2983                1 1171365.6 2803203
## 2984                1 1171365.6 2803203
## 2985                1 1171365.6 2803203
## 2986                1 1171365.6 2803203
## 2987                1 1171365.6 2803203
## 2988                1 1171365.6 2803203
## 2989                1 1171365.6 2803203
## 2990                1 1171365.6 2803203
## 2991                1 1171365.6 2803203
## 2992                1 1171365.6 2803203
## 2993                1 1171365.6 2803203
## 2994                1 1171365.6 2803203
## 2995                1 1171365.6 2803203
## 2996                1 1171365.6 2803203
## 2997                1 1171365.6 2803203
## 2998                1 1171365.6 2803203
## 2999                1 1171365.6 2803203
## 3000                1 1171365.6 2803203
## 3001                1 1171365.6 2803203
## 3002                1 1171365.6 2803203
## 3003                1 1171365.6 2803203
## 3004                1 1171365.6 2803203
## 3005                1 1171365.6 2803203
## 3006                1 1171365.6 2803203
## 3007                1 1171365.6 2803203
## 3008                1 1171365.6 2803203
## 3009                1 1171365.6 2803203
## 3010                1 1171365.6 2803203
## 3011                1 1171365.6 2803203
## 3012                1 1171365.6 2803203
## 3013                1 1171365.6 2803203
## 3014                1 1171365.6 2803203
## 3015                1 1171365.6 2803203
## 3016                1 1171365.6 2803203
## 3017                1 1171365.6 2803203
## 3018                1 1171365.6 2803203
## 3019                1 1171365.6 2803203
## 3020                1 1171365.6 2803203
## 3021                1 1171365.6 2803203
## 3022                1 1171365.6 2803203
## 3023                1 1171365.6 2803203
## 3024                1 1171365.6 2803203
## 3025                1 1171365.6 2803203
## 3026                1 1171365.6 2803203
## 3027                1 1171365.6 2803203
## 3028                1 1171365.6 2803203
## 3029                0 1171365.6 2803203
## 3030                1 1171365.6 2803203
## 3031                1 1171365.6 2803203
## 3032                1 1171365.6 2803203
## 3033                1 1171365.6 2803203
## 3034                1 1171365.6 2803203
## 3035                1 1171365.6 2803203
## 3036                1 1171365.6 2803203
## 3037                1 1171365.6 2803203
## 3038                1 1171365.6 2803203
## 3039                1 1171365.6 2803203
## 3040                1 1171365.6 2803203
## 3041                1 1171365.6 2803203
## 3042                1 1171365.6 2803203
## 3043                1 1171365.6 2803203
## 3044                1 1171365.6 2803203
## 3045                1 1171365.6 2803203
## 3046                1 1171365.6 2803203
## 3047                1 1171365.6 2803203
## 3048                1 1171365.6 2803203
## 3049                1 1171365.6 2803203
## 3050                1 1171365.6 2803203
## 3051                1 1171365.6 2803203
## 3052                1 1171365.6 2803203
## 3053                1 1171365.6 2803203
## 3054                1 1171365.6 2803203
## 3055                1 1171365.6 2803203
## 3056                1 1171365.6 2803203
## 3057                1 1171365.6 2803203
## 3058                1 1171365.6 2803203
## 3059                1 1171365.6 2803203
## 3060                1 1171365.6 2803203
## 3061                1 1171365.6 2803203
## 3062                1 1171365.6 2803203
## 3063                1 1171365.6 2803203
## 3064                1 1171365.6 2803203
## 3065                1 1171365.6 2803203
## 3066                1 1171365.6 2803203
## 3067                1 1171365.6 2803203
## 3068                1 1171365.6 2803203
## 3069                1 1171365.6 2803203
## 3070                1 1171365.6 2803203
## 3071                1 1171365.6 2803203
## 3072                1 1171365.6 2803203
## 3073                1 1171365.6 2803203
## 3074                1 1171365.6 2803203
## 3075                1 1171365.6 2803203
## 3076                0 1171365.6 2803203
## 3077                1 1171365.6 2803203
## 3078                0 1171365.6 2803203
## 3079                1 1171365.6 2803203
## 3080                0 1171365.6 2803203
## 3081                0 1171365.6 2803203
## 3082                0 1171365.6 2803203
## 3083                0 1171365.6 2803203
## 3084                1 1171365.6 2803203
## 3085                0 1171365.6 2803203
## 3086                0 1171365.6 2803203
## 3087                0 1171365.6 2803203
## 3088                0 1171365.6 2803203
## 3089                0 1171365.6 2803203
## 3090                0 1171365.6 2803203
## 3091                1 1171365.6 2803203
## 3092                1 1171365.6 2803203
## 3093                1 1171365.6 2803203
## 3094                1 1171365.6 2803203
## 3095                1 1171365.6 2803203
## 3096                0 1171365.6 2803203
## 3097                0 1171365.6 2803203
## 3098                0 1171365.6 2803203
## 3099                0 1171365.6 2803203
## 3100                1 1171365.6 2803203
## 3101                1 1171365.6 2803203
## 3102                1 1171365.6 2803203
## 3103                1 1171365.6 2803203
## 3104                0 1171365.6 2803203
## 3105                0 1171365.6 2803203
## 3106                0 1171365.6 2803203
## 3107                0 1171365.6 2803203
## 3108                0 1171365.6 2803203
## 3109                0 1171365.6 2803203
## 3110                0 1171365.6 2803203
## 3111                0 1171365.6 2803203
## 3112                0 1171365.6 2803203
## 3113                0 1171365.6 2803203
## 3114                0 1171365.6 2803203
## 3115                0 1171365.6 2803203
## 3116                0 1171365.6 2803203
## 3117                0 1171365.6 2803203
## 3118                0 1171365.6 2803203
## 3119                0 1171365.6 2803203
## 3120                0 1171365.6 2803203
## 3121                0 1171365.6 2803203
## 3122                0 1171365.6 2803203
## 3123                0 1171365.6 2803203
## 3124                0 1171365.6 2803203
## 3125                0 1171365.6 2803203
## 3126                0 1171365.6 2803203
## 3127                0 1171365.6 2803203
## 3128                0 1171365.6 2803203
## 3129                0 1171365.6 2803203
## 3130                0 1171365.6 2803203
## 3131                1 1171365.6 2803203
## 3132                0 1171365.6 2803203
## 3133                0 1171365.6 2803203
## 3134                0 1171365.6 2803203
## 3135                0 1171365.6 2803203
## 3136                1 1171365.6 2803203
## 3137                0 1171365.6 2803203
## 3138                0 1171365.6 2803203
## 3139                0 1171365.6 2803203
## 3140                0 1171365.6 2803203
## 3141                0 1171365.6 2803203
## 3142                0 1171365.6 2803203
## 3143                1 1171365.6 2803203
## 3144                0 1171365.6 2803203
## 3145                0 1171365.6 2803203
## 3146                1 1171365.6 2803203
## 3147                0 1171365.6 2803203
## 3148                1 1171365.6 2803203
## 3149                0 1171365.6 2803203
## 3150                1 1171365.6 2803203
## 3151                1 1171365.6 2803203
## 3152                1 1171365.6 2803203
## 3153                1 1171365.6 2803203
## 3154                1 1171365.6 2803203
## 3155                1 1151501.0 2777539
## 3156                1 1151501.0 2777539
## 3157                1 1151501.0 2777539
## 3158                1 1151501.0 2777539
## 3159                1 1151501.0 2777539
## 3160                1 1150191.4 2776436
## 3161                1 1150191.4 2776436
## 3162                1 1150191.4 2776436
## 3163                1 1150191.4 2776436
## 3164                1 1150191.4 2776436
## 3165                1 1151501.0 2777539
## 3166                1 1151501.0 2777539
## 3167                1 1151501.0 2777539
## 3168                1 1151501.0 2777539
## 3169                1 1151501.0 2777539
## 3170                1 1150191.4 2776436
## 3171                1 1150191.4 2776436
## 3172                1 1150191.4 2776436
## 3173                1 1150191.4 2776436
## 3174                1 1150191.4 2776436
## 3175                1 1151501.0 2777539
## 3176                1 1151501.0 2777539
## 3177                1 1151501.0 2777539
## 3178                1 1151501.0 2777539
## 3179                1 1151501.0 2777539
## 3180                1 1150191.4 2776436
## 3181                1 1150191.4 2776436
## 3182                1 1150191.4 2776436
## 3183                1 1150191.4 2776436
## 3184                1 1151501.0 2777539
## 3185                1 1151501.0 2777539
## 3186                1 1151501.0 2777539
## 3187                1 1150191.4 2776436
## 3188                1 1150191.4 2776436
## 3189                1 1150191.4 2776436
## 3190                1 1150191.4 2776436
## 3191                1 1150191.4 2776436
## 3192                1 1150191.4 2776436
## 3193                1 1150191.4 2776436
## 3194                1 1150191.4 2776436
## 3195                1 1150191.4 2776436
## 3196                1 1150191.4 2776436
## 3197                1 1150191.4 2776436
## 3198                1 1150191.4 2776436
## 3199                1 1150191.4 2776436
## 3200                1 1150191.4 2776436
## 3201                1 1150191.4 2776436
## 3202                1 1150191.4 2776436
## 3203                1 1150191.4 2776436
## 3204                1 1150191.4 2776436
## 3205                1 1150191.4 2776436
## 3206                0 1150191.4 2776436
## 3207                0 1150191.4 2776436
## 3208                0 1150191.4 2776436
## 3209                0 1150191.4 2776436
## 3210                0 1150191.4 2776436
## 3211                1 1150191.4 2776436
## 3212                1 1150191.4 2776436
## 3213                0 1150191.4 2776436
## 3214                0 1150191.4 2776436
## 3215                0 1150191.4 2776436
## 3216                1 1150191.4 2776436
## 3217                0 1150191.4 2776436
## 3218                0 1150191.4 2776436
## 3219                0 1150191.4 2776436
## 3220                0 1150191.4 2776436
## 3221                0 1150191.4 2776436
## 3222                0 1150191.4 2776436
## 3223                1 1150191.4 2776436
## 3224                1 1151501.0 2777539
## 3225                1 1151501.0 2777539
## 3226                1 1150191.4 2776436
## 3227                1 1150191.4 2776436
## 3228                1 1150191.4 2776436
## 3229                1 1150191.4 2776436
## 3230                1 1150191.4 2776436
## 3231                1 1150191.4 2776436
## 3232                1 1150191.4 2776436
## 3233                1 1150191.4 2776436
## 3234                0 1150191.4 2776436
## 3235                1 1150191.4 2776436
## 3236                1 1150191.4 2776436
## 3237                1 1150191.4 2776436
## 3238                1 1150191.4 2776436
## 3239                1 1150191.4 2776436
## 3240                0 1150191.4 2776436
## 3241                0 1150191.4 2776436
## 3242                1 1150191.4 2776436
## 3243                1 1150191.4 2776436
## 3244                0 1150191.4 2776436
## 3245                1 1150191.4 2776436
## 3246                1 1150191.4 2776436
## 3247                1 1150191.4 2776436
## 3248                1 1150191.4 2776436
## 3249                1 1150191.4 2776436
## 3250                1 1150191.4 2776436
## 3251                1 1155600.4 2835443
## 3252                1 1155600.4 2835443
## 3253                1 1155600.4 2835443
## 3254                1 1155600.4 2835443
## 3255                1 1155600.4 2835443
## 3256                1 1155600.4 2835443
## 3257                1 1155600.4 2835443
## 3258                1 1155600.4 2835443
## 3259                1 1155600.4 2835443
## 3260                0 1155600.4 2835443
## 3261                1 1155600.4 2835443
## 3262                1 1155600.4 2835443
## 3263                1 1171365.6 2803203
## 3264                1 1171365.6 2803203
## 3265                1 1171365.6 2803203
## 3266                1 1171365.6 2803203
## 3267                1 1171365.6 2803203
## 3268                1 1171365.6 2803203
## 3269                1 1171365.6 2803203
## 3270                1 1171365.6 2803203
## 3271                1 1171365.6 2803203
## 3272                1 1171365.6 2803203
## 3273                1 1171365.6 2803203
## 3274                1 1171365.6 2803203
## 3275                0 1171365.6 2803203
## 3276                1 1171365.6 2803203
## 3277                1 1171365.6 2803203
## 3278                1 1171365.6 2803203
## 3279                1 1171365.6 2803203
## 3280                1 1171365.6 2803203
## 3281                1 1171365.6 2803203
## 3282                1 1171365.6 2803203
## 3283                1 1171365.6 2803203
## 3284                1 1171365.6 2803203
## 3285                1 1171365.6 2803203
## 3286                1 1171365.6 2803203
## 3287                1 1171365.6 2803203
## 3288                1 1171365.6 2803203
## 3289                1 1058003.6 3032121
## 3290                1 1058003.6 3032121
## 3291                1 1058003.6 3032121
## 3292                1 1058003.6 3032121
## 3293                1 1058003.6 3032121
## 3294                1 1058003.6 3032121
## 3295                1 1058003.6 3032121
## 3296                0 1058003.6 3032121
## 3297                1 1058003.6 3032121
## 3298                1 1058003.6 3032121
## 3299                1 1058003.6 3032121
## 3300                1 1058003.6 3032121
## 3301                1 1058003.6 3032121
## 3302                1 1058003.6 3032121
## 3303                1 1058003.6 3032121
## 3304                1 1058003.6 3032121
## 3305                1 1058003.6 3032121
## 3306                1 1058003.6 3032121
## 3307                1 1058003.6 3032121
## 3308                1 1058003.6 3032121
## 3309                1 1058003.6 3032121
## 3310                1 1171365.6 2803203
## 3311                1 1171365.6 2803203
## 3312                1 1171365.6 2803203
## 3313                1 1171365.6 2803203
## 3314                1 1161803.2 2842386
## 3315                0 1161803.2 2842386
## 3316                0 1161803.2 2842386
## 3317                0 1161803.2 2842386
## 3318                1 1165438.9 2795475
## 3319                1 1165438.9 2795475
## 3320                1 1165438.9 2795475
## 3321                1 1165438.9 2795475
## 3322                1 1165438.9 2795475
## 3323                1 1165438.9 2795475
## 3324                1 1165438.9 2795475
## 3325                1 1171365.6 2803203
## 3326                1 1171365.6 2803203
## 3327                1 1171365.6 2803203
## 3328                0 1171365.6 2803203
## 3329                1 1171365.6 2803203
## 3330                0 1171365.6 2803203
## 3331                1 1165494.9 2795481
## 3332                1 1165494.9 2795481
## 3333                1 1165494.9 2795481
## 3334                1 1171365.6 2803203
## 3335                1 1171365.6 2803203
## 3336                1 1171365.6 2803203
## 3337                1 1171365.6 2803203
## 3338                1 1171365.6 2803203
## 3339                1 1171365.6 2803203
## 3340                1 1033803.4 3097587
## 3341                0 1033803.4 3097587
## 3342                1 1033803.4 3097587
## 3343                1 1033803.4 3097587
## 3344                1 1033803.4 3097587
## 3345                1 1033803.4 3097587
## 3346                1 1033803.4 3097587
## 3347                1 1033803.4 3097587
## 3348                1 1033803.4 3097587
## 3349                1 1033803.4 3097587
## 3350                1 1033803.4 3097587
## 3351                1 1033803.4 3097587
## 3352                1 1033803.4 3097587
## 3353                1 1033803.4 3097587
## 3354                1 1033803.4 3097587
## 3355                1 1033803.4 3097587
## 3356                1 1033803.4 3097587
## 3357                1 1033803.4 3097587
## 3358                1 1033803.4 3097587
## 3359                1 1033803.4 3097587
## 3360                1 1033803.4 3097587
## 3361                1 1033803.4 3097587
## 3362                1 1033803.4 3097587
## 3363                1 1033803.4 3097587
## 3364                1 1033803.4 3097587
## 3365                1 1033803.4 3097587
## 3366                1 1033803.4 3097587
## 3367                1 1033803.4 3097587
## 3368                1 1033803.4 3097587
## 3369                1 1033803.4 3097587
## 3370                1 1033803.4 3097587
## 3371                1 1033803.4 3097587
## 3372                1 1033803.4 3097587
## 3373                1 1033803.4 3097587
## 3374                1 1033803.4 3097587
## 3375                1 1033803.4 3097587
## 3376                1 1033803.4 3097587
## 3377                1 1033803.4 3097587
## 3378                1 1033803.4 3097587
## 3379                1 1033803.4 3097587
## 3380                1 1033803.4 3097587
## 3381                1 1033803.4 3097587
## 3382                1 1033803.4 3097587
## 3383                1 1033803.4 3097587
## 3384                1 1033803.4 3097587
## 3385                1 1033803.4 3097587
## 3386                1 1033803.4 3097587
## 3387                1 1033803.4 3097587
## 3388                1 1033803.4 3097587
## 3389                1 1033803.4 3097587
## 3390                1 1033803.4 3097587
## 3391                1 1033803.4 3097587
## 3392                1 1033803.4 3097587
## 3393                1 1033803.4 3097587
## 3394                1 1000224.2 3196220
## 3395                1 1000224.2 3196220
## 3396                1 1000224.2 3196220
## 3397                1 1000224.2 3196220
## 3398                1 1000224.2 3196220
## 3399                1 1000224.2 3196220
## 3400                1 1000224.2 3196220
## 3401                1 1000224.2 3196220
## 3402                1 1000224.2 3196220
## 3403                1 1000224.2 3196220
## 3404                1 1000224.2 3196220
## 3405                1 1000224.2 3196220
## 3406                1 1000224.2 3196220
## 3407                1 1000224.2 3196220
## 3408                1 1000224.2 3196220
## 3409                1 1000224.2 3196220
## 3410                1 1000224.2 3196220
## 3411                1 1000224.2 3196220
## 3412                1 1000224.2 3196220
## 3413                1 1000224.2 3196220
## 3414                1 1000224.2 3196220
## 3415                1 1000224.2 3196220
## 3416                1 1000224.2 3196220
## 3417                1 1000224.2 3196220
## 3418                1 1000224.2 3196220
## 3419                1 1000224.2 3196220
## 3420                1 1000224.2 3196220
## 3421                1 1000224.2 3196220
## 3422                1 1000224.2 3196220
## 3423                1 1000224.2 3196220
## 3424                1 1000224.2 3196220
## 3425                1 1000224.2 3196220
## 3426                1 1000224.2 3196220
## 3427                1 1000224.2 3196220
## 3428                1 1000224.2 3196220
## 3429                1 1000224.2 3196220
## 3430                1 1000224.2 3196220
## 3431                1 1000224.2 3196220
## 3432                1 1000224.2 3196220
## 3433                1 1000224.2 3196220
## 3434                1 1000224.2 3196220
## 3435                1 1000224.2 3196220
## 3436                1 1000224.2 3196220
## 3437                1 1000224.2 3196220
## 3438                1 1000224.2 3196220
## 3439                1 1000224.2 3196220
## 3440                1 1000224.2 3196220
## 3441                1 1000224.2 3196220
## 3442                1 1000224.2 3196220
## 3443                1 1000224.2 3196220
## 3444                1 1000224.2 3196220
## 3445                0 1000224.2 3196220
## 3446                1 1000224.2 3196220
## 3447                1 1000224.2 3196220
## 3448                1 1155612.7 2835421
## 3449                1 1155612.7 2835421
## 3450                1 1155612.7 2835421
## 3451                1 1155612.7 2835421
## 3452                1 1155612.7 2835421
## 3453                1 1155612.7 2835421
## 3454                1 1155612.7 2835421
## 3455                1 1155612.7 2835421
## 3456                1 1155612.7 2835421
## 3457                1 1155612.7 2835421
## 3458                1 1155612.7 2835421
## 3459                1 1155612.7 2835421
## 3460                1 1155612.7 2835421
## 3461                1 1155612.7 2835421
## 3462                1 1155612.7 2835421
## 3463                1 1155612.7 2835421
## 3464                1 1155612.7 2835421
## 3465                1 1155612.7 2835421
## 3466                1 1155612.7 2835421
## 3467                1 1155612.7 2835421
## 3468                1 1155612.7 2835421
## 3469                1 1155612.7 2835421
## 3470                1 1155612.7 2835421
## 3471                1 1155612.7 2835421
## 3472                1 1155612.7 2835421
## 3473                1 1155612.7 2835421
## 3474                1 1155612.7 2835421
## 3475                1 1155612.7 2835421
## 3476                1 1155612.7 2835421
## 3477                1 1155612.7 2835421
## 3478                0 1155612.7 2835421
## 3479                1 1155612.7 2835421
## 3480                0 1155612.7 2835421
## 3481                1 1155612.7 2835421
## 3482                1 1155612.7 2835421
## 3483                1 1155612.7 2835421
## 3484                1 1155612.7 2835421
## 3485                0 1155612.7 2835421

A variogram is used to display the variability between data points as a function of distance. Here, from distances 0 to 4000 m, the variability between points starts high and then decreases (the points become more similar) until it levels out because at some point the distance between data points will be great enough that the points are no longer considered to be related to each other. The variability will flatten out into a “sill”.

No spatial dependencies for wing morph.

Best fit: Modeling all important covariates

model_script = paste0(source_path,"generic models-gaussian glm 4-FF.R")
model_comparisonsAIC(model_script)
##        [,1]      [,2]      [,3]      [,4]     
## AICs   3199.444  3200.118  3200.972  3201.607 
## models 110       98        112       107      
## probs  0.3416081 0.2438092 0.1591071 0.1158448
## 
## m110     glm(formula = R ~ A * B + A * D + B * C + B * D + C * D, family = gaussian, 
##     data = data)
## m98  glm(formula = R ~ A * B + A * D + B * C + C * D, family = gaussian, 
##     data = data)
## m112     glm(formula = R ~ A * B + A * C + A * D + B * C + B * D + C * 
##     D, family = gaussian, data = data)
## m107     glm(formula = R ~ A * B + A * C + A * D + B * C + C * D, family = gaussian, 
##     data = data)
anova(m98, m110, test="Chisq") # adding B*D does not improve fit
anova(m84, m98, test="Chisq") # adding A*B improves fit

anova(m63, m84, test="Chisq") # Adding C*D improves fit
anova(m51, m63, test="Chisq") # Adding B improves fit
## Analysis of Deviance Table
## 
## Model 1: R ~ A * B + A * D + B * C + C * D
## Model 2: R ~ A * B + A * D + B * C + B * D + C * D
##   Resid. Df Resid. Dev Df Deviance Pr(>Chi)
## 1      3476     508.19                     
## 2      3475     507.80  1  0.38986   0.1024
## Analysis of Deviance Table
## 
## Model 1: R ~ A * D + B * C + C * D
## Model 2: R ~ A * B + A * D + B * C + C * D
##   Resid. Df Resid. Dev Df Deviance Pr(>Chi)   
## 1      3477     509.64                        
## 2      3476     508.19  1   1.4483 0.001647 **
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## Analysis of Deviance Table
## 
## Model 1: R ~ A * D + C * D + B
## Model 2: R ~ A * D + B * C + C * D
##   Resid. Df Resid. Dev Df Deviance  Pr(>Chi)    
## 1      3478     511.66                          
## 2      3477     509.64  1   2.0211 0.0002046 ***
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## Analysis of Deviance Table
## 
## Model 1: R ~ A * D + C * D
## Model 2: R ~ A * D + C * D + B
##   Resid. Df Resid. Dev Df Deviance  Pr(>Chi)    
## 1      3479     569.30                          
## 2      3478     511.66  1   57.636 < 2.2e-16 ***
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
m = glm(wing_morph_binom ~ sex_binom * pophost_binom + sex_binom * months_since_start + pophost_binom * month_of_year + month_of_year * months_since_start, data=raw_data, family="binomial") # m98 top model
tidy_regression(m, is_color=FALSE)
## glm wing_morph_binom ~ sex_binom * pophost_binom + sex_binom * months_since_start + pophost_binom * month_of_year + month_of_year * months_since_start binomial raw_data 
## AIC:  3173.032 
## (Intercept)                          coeff:  0.7420895   Pr(>|t|):  5.207138e-05 *
## sex_binom                            coeff:  -0.2706994  Pr(>|t|):  0.002618832 *
## pophost_binom                        coeff:  1.1107917   Pr(>|t|):  9.999362e-23 *
## months_since_start                   coeff:  0.0106835   Pr(>|t|):  0.0002869606 *
## month_of_year                        coeff:  0.1004066   Pr(>|t|):  8.030013e-05 *
## sex_binom:pophost_binom              coeff:  0.09893 Pr(>|t|):  0.04409693 *
## sex_binom:months_since_start         coeff:  0.003887    Pr(>|t|):  0.01091935 *
## pophost_binom:month_of_year          coeff:  -0.0371429  Pr(>|t|):  0.01294977 *
## months_since_start:month_of_year     coeff:  -0.0014746  Pr(>|t|):  0.001144355 *
  • Males are more likely to be long-winged.

  • K.elegans more likely to be long-winged.

  • (+) effect of getting later in the season (month_of_year), such that long wing morphs become increasingly likely later in the year.

  • (+) effect of months_since_start, such that long wing morphs become increasingly likely across the decade.

  • (+) effect of sex*host where if F and from K.elegans then more likely to be long-winged

  • (+) effect of sex*months_since_start where if F and later in the decade then more likely to be long-winged

  • (-) effect of pophost*month_of_year where if from C.corindum and later in the season, then more likely long wing morphs will be present

  • weak (-) effect of month_of_year*months_since_start where the later in the year and later in the decade, the more likely short wing morphs will be present.

# m = glm(wing_morph_binom ~ sex_binom*months_since_start + month_of_year*months_since_start + pophost_binom*month_of_year, data=raw_data, family="binomial") # m84 was the top model
temp = raw_data %>%
  filter(!is.na(wing_morph_binom)) # filter out NA's that glm did automatically

check_spatial_dependencies(m, temp, temp$long, temp$lat, zone = 16, cutoff=14000, is_glm=TRUE)
## Warning in showSRID(uprojargs, format = "PROJ", multiline = "NO", prefer_proj
## = prefer_proj): Discarded datum Unknown based on WGS84 ellipsoid in Proj4
## definition
## Warning in proj4string(res): CRS object has comment, which is lost in output
## [1] "m"

##         pophost      population sex beak thorax  wing  body     month   year
## 1     K.elegans        Ft.Myers   M 5.24   2.86  7.98 10.92     April 2013.0
## 2     K.elegans        Ft.Myers   M 5.72   3.09  8.27 11.58     April 2013.0
## 3     K.elegans        Ft.Myers   M 5.81   3.10  8.72 11.54     April 2013.0
## 4     K.elegans        Ft.Myers   M 4.60   2.51  6.57  8.95     April 2013.0
## 5     K.elegans        Ft.Myers   M 5.75   2.97  8.38 11.38     April 2013.0
## 6     K.elegans        Ft.Myers   M 5.42   2.96  7.85 10.80     April 2013.0
## 7     K.elegans        Ft.Myers   M 5.64   2.87  8.02 10.67     April 2013.0
## 8     K.elegans        Ft.Myers   M 5.22   2.60  7.36 10.14     April 2013.0
## 9     K.elegans        Ft.Myers   M 5.17   2.87  7.81 10.42     April 2013.0
## 10    K.elegans        Ft.Myers   F 6.99   3.78  9.93 13.50     April 2013.0
## 11    K.elegans        Ft.Myers   F 7.38   3.35  9.07 12.45     April 2013.0
## 12    K.elegans        Ft.Myers   M 5.09   2.81  7.77 10.45     April 2013.0
## 13    K.elegans        Ft.Myers   M 5.55   3.19  8.57 11.57     April 2013.0
## 14    K.elegans        Ft.Myers   M 5.81   3.33  8.51 11.58     April 2013.0
## 15    K.elegans        Ft.Myers   F 6.22   3.03  5.20    NA     April 2013.0
## 16    K.elegans        Ft.Myers   M 5.73   3.05  8.09 10.73     April 2013.0
## 17    K.elegans        Ft.Myers   M 5.26   3.05  8.09 10.96     April 2013.0
## 18    K.elegans        Ft.Myers   F 6.41   3.74 10.26 13.27     April 2013.0
## 19    K.elegans        Ft.Myers   M 5.50   3.05  8.45 11.37     April 2013.0
## 20    K.elegans        Ft.Myers   F 6.12   3.16  8.73 11.83     April 2013.0
## 21    K.elegans        Ft.Myers   F 7.99   3.47 10.02 13.48     April 2013.0
## 22    K.elegans        Ft.Myers   M 5.24   3.05  7.58 10.45     April 2013.0
## 23    K.elegans        Ft.Myers   F 7.29   3.49  9.94 13.33     April 2013.0
## 24    K.elegans        Ft.Myers   M 5.66   2.83  7.67 10.51     April 2013.0
## 25    K.elegans        Ft.Myers   F 7.87   3.52  9.79 13.35     April 2013.0
## 26    K.elegans        Ft.Myers   M 5.27   2.80  7.89 10.55     April 2013.0
## 27    K.elegans        Ft.Myers   F 8.09   3.58  9.73    NA       May 2013.0
## 28    K.elegans        Ft.Myers   F 7.40   3.42  9.52    NA       May 2013.0
## 29    K.elegans        Ft.Myers   F 5.54   2.45  4.18    NA       May 2013.0
## 30    K.elegans        Ft.Myers   M 5.51   2.49  4.38    NA       May 2013.0
## 31    K.elegans        Ft.Myers   F 6.74   3.44  9.28    NA       May 2013.0
## 32    K.elegans        Ft.Myers   M 6.06   3.05  8.12    NA       May 2013.0
## 33    K.elegans        Ft.Myers   M 6.05   3.22  8.67    NA       May 2013.0
## 34    K.elegans        Ft.Myers   M 5.74   3.15  8.40    NA       May 2013.0
## 35    K.elegans        Ft.Myers   F 5.90   2.71  5.49    NA       May 2013.0
## 36    K.elegans        Ft.Myers   M 5.37   2.93  7.97    NA       May 2013.0
## 37    K.elegans        Ft.Myers   F 7.72   3.28  9.24    NA       May 2013.0
## 38    K.elegans        Ft.Myers   M 5.62   2.85  7.71    NA       May 2013.0
## 39    K.elegans        Ft.Myers   M 6.30   2.84  7.22    NA       May 2013.0
## 40    K.elegans        Ft.Myers   M 6.26   3.20  8.93    NA       May 2013.0
## 41    K.elegans        Ft.Myers   M 5.35   2.97  7.88    NA       May 2013.0
## 42    K.elegans        Ft.Myers   F 6.65   2.84  7.85    NA       May 2013.0
## 43    K.elegans        Ft.Myers   M 5.43   3.09  8.93    NA       May 2013.0
## 44    K.elegans        Ft.Myers   F 6.26   2.95  6.10    NA       May 2013.0
## 45    K.elegans        Ft.Myers   M 5.43   2.82  7.63    NA       May 2013.0
## 46    K.elegans        Ft.Myers   F 7.85   3.71  9.80    NA       May 2013.0
## 47    K.elegans        Ft.Myers   M 5.69   2.87  8.42    NA       May 2013.0
## 48    K.elegans        Ft.Myers   F 5.87   2.80  4.96    NA       May 2013.0
## 49    K.elegans        Ft.Myers   F 6.67   3.62  9.47    NA       May 2013.0
## 50    K.elegans        Ft.Myers   M 5.36   2.70  7.12    NA       May 2013.0
## 51    K.elegans        Ft.Myers   F 6.49   2.94  7.46    NA       May 2013.0
## 52    K.elegans        Ft.Myers   M 5.62   3.13  8.31    NA       May 2013.0
## 53    K.elegans        Ft.Myers   M 5.80   3.17  8.46    NA       May 2013.0
## 54    K.elegans        Ft.Myers   F 6.50   3.67  9.39    NA       May 2013.0
## 55    K.elegans        Ft.Myers   M 5.66   2.83  8.34    NA       May 2013.0
## 56    K.elegans        Ft.Myers   F 7.79   3.34  8.79    NA       May 2013.0
## 57    K.elegans        Ft.Myers   M 5.24   2.73  7.62    NA       May 2013.0
## 58    K.elegans        Ft.Myers   M 5.33   2.83  7.89    NA       May 2013.0
## 59    K.elegans        Ft.Myers   F 7.97   3.88 10.66    NA       May 2013.0
## 60    K.elegans        Ft.Myers   F 7.03   2.90  8.15    NA       May 2013.0
## 61    K.elegans        Ft.Myers   F 7.67   3.41  9.37    NA       May 2013.0
## 62    K.elegans        Ft.Myers   M 5.68   3.14  8.95    NA       May 2013.0
## 63    K.elegans        Ft.Myers   F 7.78   3.51  9.02    NA       May 2013.0
## 64    K.elegans        Ft.Myers   M 5.27   2.89  7.12    NA       May 2013.0
## 65    K.elegans        Ft.Myers   F 6.74   3.64  9.66    NA       May 2013.0
## 66    K.elegans        Ft.Myers   F 8.13   3.77  9.53    NA       May 2013.0
## 67    K.elegans        Ft.Myers   M 5.58   3.03  8.52    NA       May 2013.0
## 68    K.elegans        Ft.Myers   F 7.16   3.34  9.57    NA       May 2013.0
## 69    K.elegans        Ft.Myers   F 7.32   2.96  8.80    NA       May 2013.0
## 70    K.elegans        Ft.Myers   M 5.54   2.93  7.26    NA       May 2013.0
## 71    K.elegans        Ft.Myers   F 7.94   3.56 10.07    NA       May 2013.0
## 72    K.elegans        Ft.Myers   F 6.00   2.69  6.82    NA       May 2013.0
## 73    K.elegans        Ft.Myers   F 8.34   3.67  9.34    NA       May 2013.0
## 74    K.elegans        Ft.Myers   M 5.54   3.23  8.74    NA       May 2013.0
## 75    K.elegans        Ft.Myers   M 5.34   2.91  7.68    NA       May 2013.0
## 76   C.corindum       Homestead   F 6.54   3.05  5.20    NA     April 2013.0
## 77   C.corindum       Homestead   M 5.36   2.61  7.68    NA     April 2013.0
## 78   C.corindum       Homestead   F 7.82   3.51  9.93    NA     April 2013.0
## 79   C.corindum       Homestead   M 5.59   2.78  7.54    NA     April 2013.0
## 80   C.corindum       Homestead   F 6.87   3.18  5.43    NA     April 2013.0
## 81   C.corindum       Homestead   M 5.39   3.00  7.56    NA     April 2013.0
## 82   C.corindum       Homestead   M 5.02   2.37  4.33    NA     April 2013.0
## 83   C.corindum       Homestead   M 5.49   2.69  4.41    NA     April 2013.0
## 84   C.corindum       Homestead   F 6.92   3.27  8.19    NA     April 2013.0
## 85   C.corindum       Homestead   F 6.00   2.95  5.66    NA     April 2013.0
## 86   C.corindum       Homestead   M 5.35   2.57  4.04    NA     April 2013.0
## 87   C.corindum       Homestead   M 4.68   2.28  3.94    NA     April 2013.0
## 88   C.corindum       Homestead   M 5.20   2.53  4.55    NA     April 2013.0
## 89   C.corindum       Homestead   M 5.32   2.44  4.30    NA     April 2013.0
## 90   C.corindum       Homestead   F 5.75   2.63  4.66    NA     April 2013.0
## 91   C.corindum       Homestead   M 5.10   2.58  4.31    NA     April 2013.0
## 92   C.corindum       Homestead   M 5.38   2.57  4.92    NA     April 2013.0
## 93   C.corindum       Homestead   M 6.07   3.15  8.46    NA     April 2013.0
## 94   C.corindum       Homestead   F 7.54   3.25  9.25    NA     April 2013.0
## 95   C.corindum       Homestead   M 4.95   2.60  4.26    NA     April 2013.0
## 96   C.corindum       Homestead   F 6.89   3.70  9.35    NA     April 2013.0
## 97   C.corindum       Homestead   F 6.89   3.59  9.35    NA     April 2013.0
## 98   C.corindum       Homestead   F 6.95   3.43  8.30    NA     April 2013.0
## 99   C.corindum       Homestead   F 8.15   3.84  9.65    NA     April 2013.0
## 100  C.corindum       Homestead   F 5.86   3.03  5.05    NA     April 2013.0
## 101  C.corindum       Homestead   F 7.75   3.38  8.77    NA     April 2013.0
## 102  C.corindum       Homestead   F 7.72   3.42  8.67    NA     April 2013.0
## 103  C.corindum       Homestead   M 5.45   2.66  5.64  8.48       May 2013.0
## 104  C.corindum       Homestead   F 7.15   3.10  8.35 11.93       May 2013.0
## 105  C.corindum       Homestead   M 5.94   3.27  8.92 12.12       May 2013.0
## 106  C.corindum       Homestead   F 6.45   3.21  8.71 11.85       May 2013.0
## 107  C.corindum       Homestead   F 6.55   2.80  3.97    NA       May 2013.0
## 108  C.corindum       Homestead   F 7.51   3.16  9.01 12.33       May 2013.0
## 109  C.corindum       Homestead   M 5.83   3.22  8.59 12.39       May 2013.0
## 110  C.corindum       Homestead   M 5.08   2.90  8.13 11.20       May 2013.0
## 111  C.corindum       Homestead   M 5.61   3.19  8.76 11.72       May 2013.0
## 112  C.corindum       Homestead   M 5.38   2.58  4.84    NA       May 2013.0
## 113  C.corindum       Homestead   M 5.61   3.45  8.45 11.49       May 2013.0
## 114   K.elegans       Homestead   F 7.77   3.84  9.59    NA       May 2013.0
## 115   K.elegans       Homestead   F 8.19   3.61  9.05    NA       May 2013.0
## 116   K.elegans       Homestead   F 7.82   3.43 10.57    NA       May 2013.0
## 117   K.elegans       Homestead   F 7.97   3.51  9.91    NA       May 2013.0
## 118   K.elegans       Homestead   M 5.95   3.16  8.31    NA       May 2013.0
## 119   K.elegans       Homestead   F 7.60   3.44  9.59    NA       May 2013.0
## 120   K.elegans       Homestead   M 5.94   3.18  8.73    NA       May 2013.0
## 121   K.elegans       Homestead   F 7.73   3.73  9.94    NA       May 2013.0
## 122   K.elegans       Homestead   F 7.31   3.50  9.21    NA       May 2013.0
## 123   K.elegans       Homestead   M 5.64   2.99  7.93    NA       May 2013.0
## 124   K.elegans       Homestead   F 7.96   3.45  9.23    NA       May 2013.0
## 125   K.elegans       Homestead   M 5.56   3.00  7.86    NA       May 2013.0
## 126   K.elegans       Homestead   M 5.75   3.14  8.26    NA       May 2013.0
## 127   K.elegans       Homestead   M 5.80   3.02  8.44    NA       May 2013.0
## 128   K.elegans       Homestead   F 7.93   3.64  9.87    NA       May 2013.0
## 129   K.elegans       Homestead   M 5.70   3.19  8.57    NA       May 2013.0
## 130   K.elegans       Homestead   M 6.04   3.38  9.51    NA       May 2013.0
## 131   K.elegans       Homestead   M 5.68   3.01  8.10    NA       May 2013.0
## 132   K.elegans       Homestead   M 5.63   3.00  8.29    NA       May 2013.0
## 133   K.elegans       Homestead   F 8.40   3.68 10.02    NA       May 2013.0
## 134   K.elegans       Homestead   F 7.81   3.75 10.23    NA       May 2013.0
## 135   K.elegans       Homestead   M 6.20   3.10  9.31    NA       May 2013.0
## 136   K.elegans       Homestead   M 5.83   2.91  8.44    NA       May 2013.0
## 137   K.elegans       Homestead   F 7.85   3.58  9.90    NA       May 2013.0
## 138   K.elegans       Homestead   F 7.05   3.25  8.98    NA       May 2013.0
## 139   K.elegans       Homestead   M 6.04   3.00  8.87    NA       May 2013.0
## 140  C.corindum North_Key_Largo   M 5.86   2.84  7.99 11.25     April 2013.0
## 141  C.corindum North_Key_Largo   M 6.69   3.14  8.41 11.48     April 2013.0
## 142  C.corindum North_Key_Largo   F 9.25   3.95  9.99 13.55     April 2013.0
## 143  C.corindum North_Key_Largo   M 6.43   3.18  8.61 11.57     April 2013.0
## 144  C.corindum North_Key_Largo   M 5.35   2.53  4.62    NA     April 2013.0
## 145  C.corindum North_Key_Largo   M 6.77   3.41  8.70 11.63     April 2013.0
## 146  C.corindum North_Key_Largo   F 7.83   3.68  9.78 13.31     April 2013.0
## 147  C.corindum North_Key_Largo   M 5.98   3.16  9.40 12.50     April 2013.0
## 148  C.corindum North_Key_Largo   M 6.18   2.96  8.21 10.94     April 2013.0
## 149  C.corindum North_Key_Largo   M 5.46   3.25  8.74 11.76     April 2013.0
## 150  C.corindum North_Key_Largo   M 5.15   2.32  4.23    NA     April 2013.0
## 151  C.corindum North_Key_Largo   M 5.14   2.59  7.25  9.64     April 2013.0
## 152  C.corindum North_Key_Largo   M 6.30   3.15  8.50 11.78     April 2013.0
## 153  C.corindum North_Key_Largo   M 5.79   3.14  8.37    NA       May 2013.0
## 154  C.corindum North_Key_Largo   F 8.09   3.40  8.61    NA       May 2013.0
## 155  C.corindum North_Key_Largo   F 8.84   3.43  9.29    NA       May 2013.0
## 156  C.corindum North_Key_Largo   M 6.01   3.26  9.17    NA       May 2013.0
## 157  C.corindum North_Key_Largo   F 8.81   3.95  9.91    NA       May 2013.0
## 158  C.corindum North_Key_Largo   M 6.35   2.98  8.22    NA       May 2013.0
## 159  C.corindum North_Key_Largo   F 7.20   3.70  7.35    NA       May 2013.0
## 160  C.corindum North_Key_Largo   M 6.84   3.23  8.57    NA       May 2013.0
## 161  C.corindum North_Key_Largo   F 6.17   2.84  4.47    NA       May 2013.0
## 162  C.corindum North_Key_Largo   F 9.18   3.69  9.62    NA       May 2013.0
## 163  C.corindum North_Key_Largo   F 9.12   3.99 10.73    NA       May 2013.0
## 164  C.corindum North_Key_Largo   F 9.47   3.94 10.09    NA       May 2013.0
## 165  C.corindum North_Key_Largo   F 9.15   3.78 10.17    NA       May 2013.0
## 166  C.corindum North_Key_Largo   M 6.24   3.21  8.74    NA       May 2013.0
## 167  C.corindum North_Key_Largo   M 6.07   3.22  8.53    NA       May 2013.0
## 168  C.corindum North_Key_Largo   F 9.37   3.94 10.07    NA       May 2013.0
## 169  C.corindum North_Key_Largo   M 6.41   3.23  8.51    NA       May 2013.0
## 170  C.corindum North_Key_Largo   M 6.13   3.22  9.02    NA       May 2013.0
## 171  C.corindum North_Key_Largo   F 9.20   3.64  9.77    NA       May 2013.0
## 172  C.corindum North_Key_Largo   M 6.42   3.01  8.24    NA       May 2013.0
## 173  C.corindum North_Key_Largo   M 6.20   3.21  8.41    NA       May 2013.0
## 174  C.corindum North_Key_Largo   M 6.30   2.92  7.93    NA       May 2013.0
## 175  C.corindum North_Key_Largo   F 6.34   2.87  4.82    NA       May 2013.0
## 176  C.corindum North_Key_Largo   M 6.40   3.15  8.46    NA       May 2013.0
## 177  C.corindum North_Key_Largo   F 8.55   3.52  9.34    NA       May 2013.0
## 178  C.corindum North_Key_Largo   M 6.74   3.40  8.45    NA       May 2013.0
## 179  C.corindum North_Key_Largo   F 9.50   4.08 10.59    NA       May 2013.0
## 180  C.corindum North_Key_Largo   M 5.72   3.01  8.40    NA       May 2013.0
## 181  C.corindum North_Key_Largo   M 6.66   3.15  8.69    NA       May 2013.0
## 182  C.corindum North_Key_Largo   F 5.53   2.43  4.21    NA       May 2013.0
## 183  C.corindum North_Key_Largo   M 6.48   3.31  8.73    NA       May 2013.0
## 184  C.corindum North_Key_Largo   M 5.37   2.39  4.87    NA       May 2013.0
## 185  C.corindum North_Key_Largo   F 9.17   3.79  9.76    NA       May 2013.0
## 186  C.corindum North_Key_Largo   M 6.28   3.27  8.96    NA       May 2013.0
## 187  C.corindum North_Key_Largo   F 7.62   3.41  9.10    NA       May 2013.0
## 188  C.corindum North_Key_Largo   M 6.12   3.42  8.83    NA       May 2013.0
## 189  C.corindum North_Key_Largo   F 6.75   2.98  4.80    NA       May 2013.0
## 190  C.corindum North_Key_Largo   F 7.15   3.28  5.33    NA       May 2013.0
## 191  C.corindum North_Key_Largo   F 8.72   3.47  9.97    NA       May 2013.0
## 192  C.corindum North_Key_Largo   F 7.83   2.98  8.04    NA       May 2013.0
## 193  C.corindum North_Key_Largo   F 7.06   3.17  5.71    NA       May 2013.0
## 194  C.corindum North_Key_Largo   M 5.83   2.77  5.47    NA       May 2013.0
## 195  C.corindum North_Key_Largo   M 7.17   3.56  9.01    NA       May 2013.0
## 196  C.corindum North_Key_Largo   M 6.39   3.28  9.18    NA       May 2013.0
## 197  C.corindum North_Key_Largo   M 6.47   3.33  9.09    NA       May 2013.0
## 198  C.corindum North_Key_Largo   M 6.49   3.38  8.78    NA       May 2013.0
## 199  C.corindum North_Key_Largo   F 8.83   3.78 10.03    NA       May 2013.0
## 200  C.corindum North_Key_Largo   F 7.15   3.10  8.00    NA       May 2013.0
## 201   K.elegans      Lake_Wales   M 5.42   3.11  7.96 10.93     April 2013.0
## 202   K.elegans      Lake_Wales   M 5.41   2.58  6.25  9.22     April 2013.0
## 203   K.elegans      Lake_Wales   M 5.35   3.13  8.25 11.79     April 2013.0
## 204   K.elegans      Lake_Wales   F 6.78   3.12  9.25 12.07     April 2013.0
## 205   K.elegans      Lake_Wales   M 5.32   2.71  7.66 10.66     April 2013.0
## 206   K.elegans      Lake_Wales   M 5.05   2.49  7.04  9.80     April 2013.0
## 207   K.elegans      Lake_Wales   F 7.63   3.35  9.12 12.38     April 2013.0
## 208   K.elegans      Lake_Wales   M 5.17   2.76  8.25 11.17     April 2013.0
## 209   K.elegans      Lake_Wales   M 5.48   2.51  6.23  9.12     April 2013.0
## 210   K.elegans      Lake_Wales   M 5.19   3.06  7.75 10.76     April 2013.0
## 211   K.elegans      Lake_Wales   F 6.81   3.49  9.76 13.51     April 2013.0
## 212   K.elegans      Lake_Wales   M 5.02   2.80  7.27 10.41     April 2013.0
## 213   K.elegans      Lake_Wales   F 7.56   3.20  8.07 11.65     April 2013.0
## 214   K.elegans      Lake_Wales   M 5.22   2.63  4.96    NA     April 2013.0
## 215   K.elegans      Lake_Wales   M 5.47   3.08  7.38 10.46     April 2013.0
## 216   K.elegans      Lake_Wales   M 4.80   2.35  4.63    NA     April 2013.0
## 217   K.elegans      Lake_Wales   F 6.18   2.91  7.77 11.11     April 2013.0
## 218   K.elegans      Lake_Wales   M 5.15   2.76  5.26    NA     April 2013.0
## 219   K.elegans      Lake_Wales   M 5.03   2.62  7.19  9.84     April 2013.0
## 220   K.elegans      Lake_Wales   M 5.68   2.79  7.41 10.24     April 2013.0
## 221   K.elegans      Lake_Wales   M 5.60   3.32  8.64 11.70     April 2013.0
## 222   K.elegans      Lake_Wales   M 5.28   2.98  8.16 11.12     April 2013.0
## 223   K.elegans      Lake_Wales   M 5.50   2.83  8.09 10.65     April 2013.0
## 224   K.elegans      Lake_Wales   F 6.47   3.02  8.00 11.03     April 2013.0
## 225   K.elegans      Lake_Wales   M 5.19   2.47  4.78    NA     April 2013.0
## 226   K.elegans      Lake_Wales   M 5.28   3.17  8.68 11.62     April 2013.0
## 227   K.elegans      Lake_Wales   M 5.53   3.14  8.19 11.18     April 2013.0
## 228   K.elegans      Lake_Wales   M 5.56   2.98  7.89 10.90     April 2013.0
## 229   K.elegans      Lake_Wales   M 5.15   2.74  4.56    NA     April 2013.0
## 230   K.elegans      Lake_Wales   M 5.40   2.60  7.23    NA       May 2013.0
## 231   K.elegans      Lake_Wales   M 5.31   2.97  8.10    NA       May 2013.0
## 232   K.elegans      Lake_Wales   F 6.48   3.17  8.64    NA       May 2013.0
## 233   K.elegans      Lake_Wales   F 6.59   3.27  9.18    NA       May 2013.0
## 234   K.elegans      Lake_Wales   M 5.25   2.77  7.91    NA       May 2013.0
## 235   K.elegans      Lake_Wales   M 5.37   2.88  8.09    NA       May 2013.0
## 236   K.elegans      Lake_Wales   F 7.12   3.52  9.23    NA       May 2013.0
## 237   K.elegans      Lake_Wales   F 7.22   3.30  9.01    NA       May 2013.0
## 238   K.elegans      Lake_Wales   M 5.52   2.73  8.05    NA       May 2013.0
## 239   K.elegans      Lake_Wales   F 6.40   2.90  8.01    NA       May 2013.0
## 240   K.elegans      Lake_Wales   F 6.28   2.72  7.65    NA       May 2013.0
## 241   K.elegans      Lake_Wales   M 5.13   2.68  7.03    NA       May 2013.0
## 242   K.elegans      Lake_Wales   M 4.95   2.62  4.52    NA       May 2013.0
## 243   K.elegans      Lake_Wales   F 6.51   3.51  9.02    NA       May 2013.0
## 244   K.elegans      Lake_Wales   M 5.72   3.14  8.40    NA       May 2013.0
## 245   K.elegans      Lake_Wales   F 7.69   3.29  9.71    NA       May 2013.0
## 246   K.elegans      Lake_Wales   F 6.77   3.30  9.85    NA       May 2013.0
## 247   K.elegans      Lake_Wales   F 6.60   2.93  8.70    NA       May 2013.0
## 248   K.elegans      Lake_Wales   F 6.34   3.02  8.18    NA       May 2013.0
## 249   K.elegans      Lake_Wales   F 7.35   3.20  8.75    NA       May 2013.0
## 250   K.elegans      Lake_Wales   M 5.51   3.04  8.48    NA       May 2013.0
## 251   K.elegans      Lake_Wales   M 5.15   3.04  8.22    NA       May 2013.0
## 252   K.elegans      Lake_Wales   M 5.49   2.69  7.16    NA       May 2013.0
## 253   K.elegans      Lake_Wales   M 6.51   3.04  8.23    NA       May 2013.0
## 254   K.elegans      Lake_Wales   M 5.22   2.58  6.82    NA       May 2013.0
## 255   K.elegans      Lake_Wales   M 5.11   2.48  7.28    NA       May 2013.0
## 256   K.elegans      Lake_Wales   M 5.17   2.63  7.47    NA       May 2013.0
## 257   K.elegans      Lake_Wales   F 6.73   3.53 10.06    NA       May 2013.0
## 258   K.elegans      Lake_Wales   M 5.29   2.62  5.35    NA       May 2013.0
## 259   K.elegans      Lake_Wales   F 6.94   3.70  9.88    NA       May 2013.0
## 260   K.elegans      Lake_Wales   M 5.44   2.58  7.68    NA       May 2013.0
## 261   K.elegans        Leesburg   M 5.13   2.56  5.34    NA       May 2013.0
## 262   K.elegans        Leesburg   M 5.35   2.59  5.00    NA       May 2013.0
## 263   K.elegans        Leesburg   F 6.25   3.80  9.33    NA       May 2013.0
## 264   K.elegans        Leesburg   M 5.13   2.64  4.63    NA       May 2013.0
## 265   K.elegans        Leesburg   F 6.17   2.97  7.20    NA       May 2013.0
## 266   K.elegans        Leesburg   M 4.69   2.20  4.22    NA       May 2013.0
## 267   K.elegans        Leesburg   M 5.21   2.69  7.37    NA       May 2013.0
## 268   K.elegans        Leesburg   F 6.63   3.08  8.28    NA       May 2013.0
## 269   K.elegans        Leesburg   M 6.07   3.04  8.80    NA       May 2013.0
## 270   K.elegans        Leesburg   M 5.62   2.82  8.59    NA       May 2013.0
## 271   K.elegans        Leesburg   F 7.60   3.45  9.20    NA       May 2013.0
## 272   K.elegans        Leesburg   M 5.66   2.97  8.71    NA       May 2013.0
## 273   K.elegans        Leesburg   F 6.29   3.28  8.58    NA       May 2013.0
## 274   K.elegans        Leesburg   M 5.09   2.81  5.39    NA       May 2013.0
## 275   K.elegans        Leesburg   M 5.00   2.42  7.03    NA       May 2013.0
## 276   K.elegans        Leesburg   F 7.44   3.32  8.99    NA       May 2013.0
## 277   K.elegans        Leesburg   M 5.70   2.90  7.74    NA       May 2013.0
## 278   K.elegans        Leesburg   M 5.52   2.97  8.38    NA       May 2013.0
## 279   K.elegans        Leesburg   F 7.41   3.36  9.00    NA       May 2013.0
## 280   K.elegans        Leesburg   M 5.80   3.21  8.52    NA       May 2013.0
## 281   K.elegans        Leesburg   F 6.20   3.14  5.60    NA       May 2013.0
## 282   K.elegans        Leesburg   M 6.95   3.19  8.37    NA       May 2013.0
## 283   K.elegans        Leesburg   F 7.52   3.43  8.91    NA       May 2013.0
## 284   K.elegans        Leesburg   F 5.90   2.77  5.22    NA       May 2013.0
## 285   K.elegans        Leesburg   F 5.54   2.72  6.84    NA       May 2013.0
## 286  C.corindum  Plantation_Key   M 6.31   3.13  8.50    NA       May 2013.0
## 287  C.corindum  Plantation_Key   F 6.99   3.13  5.39    NA       May 2013.0
## 288  C.corindum  Plantation_Key   M 6.03   3.10  8.85    NA       May 2013.0
## 289  C.corindum  Plantation_Key   M 5.84   3.10  8.70    NA       May 2013.0
## 290  C.corindum  Plantation_Key   M 6.41   3.15  8.88    NA       May 2013.0
## 291  C.corindum  Plantation_Key   F 8.36   3.14  8.97    NA       May 2013.0
## 292  C.corindum  Plantation_Key   M 5.19   2.98  8.59    NA       May 2013.0
## 293  C.corindum  Plantation_Key   M 5.59   2.60  4.58    NA       May 2013.0
## 294  C.corindum  Plantation_Key   M 5.82   2.85  7.65    NA       May 2013.0
## 295  C.corindum  Plantation_Key   F 7.02   3.07  6.45    NA       May 2013.0
## 296  C.corindum  Plantation_Key   F 6.56   2.83  4.45    NA       May 2013.0
## 297  C.corindum  Plantation_Key   M 5.31   2.60  4.22    NA       May 2013.0
## 298  C.corindum  Plantation_Key   M 5.72   2.69  6.65    NA       May 2013.0
## 299  C.corindum  Plantation_Key   F 6.68   2.99  5.16    NA       May 2013.0
## 300  C.corindum  Plantation_Key   M 6.55   3.24  8.89    NA       May 2013.0
## 301  C.corindum  Plantation_Key   M 5.81   2.70  7.17    NA       May 2013.0
## 302  C.corindum  Plantation_Key   M 5.53   2.83  6.99    NA       May 2013.0
## 303  C.corindum  Plantation_Key   M 5.63   2.94  7.60    NA       May 2013.0
## 304  C.corindum  Plantation_Key   M 5.90   2.73  5.33    NA       May 2013.0
## 305  C.corindum  Plantation_Key   F 8.64   3.72 10.00    NA       May 2013.0
## 306  C.corindum  Plantation_Key   M 5.95   3.07  8.13    NA       May 2013.0
## 307  C.corindum  Plantation_Key   F 6.60   2.89  5.29    NA       May 2013.0
## 308  C.corindum  Plantation_Key   F 7.03   3.44  5.56    NA       May 2013.0
## 309  C.corindum  Plantation_Key   F 8.08   3.31  8.68    NA       May 2013.0
## 310  C.corindum  Plantation_Key   F 7.87   3.29  6.48    NA       May 2013.0
## 311  C.corindum  Plantation_Key   M 5.53   2.63  5.50    NA       May 2013.0
## 312  C.corindum  Plantation_Key   F 7.15   3.20  6.29    NA       May 2013.0
## 313  C.corindum  Plantation_Key   M 5.80   2.85  7.19    NA       May 2013.0
## 314  C.corindum  Plantation_Key   M 6.31   3.23  8.61    NA       May 2013.0
## 315  C.corindum  Plantation_Key   M 6.17   3.21  8.01    NA       May 2013.0
## 316  C.corindum  Plantation_Key   F 7.64   3.46  8.75    NA       May 2013.0
## 317  C.corindum  Plantation_Key   F 7.86   3.31  6.52    NA       May 2013.0
## 318  C.corindum  Plantation_Key   F 7.56   3.11  6.08    NA       May 2013.0
## 319  C.corindum  Plantation_Key   M 6.13   2.97  8.26    NA       May 2013.0
## 320  C.corindum  Plantation_Key   F 7.55   3.35  5.47    NA       May 2013.0
## 321  C.corindum  Plantation_Key   M 6.38   2.92  7.74    NA       May 2013.0
## 322   K.elegans        Ft.Myers   M 5.61   3.27  8.21    NA  December 2013.6
## 323   K.elegans        Ft.Myers   F 7.89   3.85 10.60    NA  December 2013.6
## 324   K.elegans        Ft.Myers   F 7.00   3.93  9.80    NA  December 2013.6
## 325   K.elegans        Ft.Myers   F 6.97   3.71  9.66    NA  December 2013.6
## 326   K.elegans        Ft.Myers   F 7.78   3.68 10.01    NA  December 2013.6
## 327   K.elegans        Ft.Myers   M 5.74   3.19  8.29    NA  December 2013.6
## 328   K.elegans        Ft.Myers   F 7.99   3.75  9.52    NA  December 2013.6
## 329   K.elegans        Ft.Myers   F 8.44   3.68  9.83    NA  December 2013.6
## 330   K.elegans        Ft.Myers   F 7.35   3.82 10.34    NA  December 2013.6
## 331   K.elegans        Ft.Myers   M 5.55   3.31  8.94    NA  December 2013.6
## 332   K.elegans        Ft.Myers   F 6.73   3.48  9.70    NA  December 2013.6
## 333   K.elegans        Ft.Myers   F 6.23   3.98  7.21    NA  December 2013.6
## 334   K.elegans        Ft.Myers   M 5.57   3.51  9.16    NA  December 2013.6
## 335   K.elegans        Ft.Myers   F 7.38   3.48  9.51    NA  December 2013.6
## 336   K.elegans        Ft.Myers   F 7.74   3.59  9.71    NA  December 2013.6
## 337   K.elegans        Ft.Myers   M 5.38   3.25  8.87    NA  December 2013.6
## 338   K.elegans        Ft.Myers   M 4.96   3.08  7.92    NA  December 2013.6
## 339   K.elegans        Ft.Myers   F 7.57   3.49  9.29    NA  December 2013.6
## 340   K.elegans        Ft.Myers   F 7.94   3.92  9.82    NA  December 2013.6
## 341   K.elegans        Ft.Myers   F 6.85   3.76 10.04    NA  December 2013.6
## 342   K.elegans        Ft.Myers   F 6.57   3.71  9.58    NA  December 2013.6
## 343   K.elegans        Ft.Myers   F 7.70   3.74 10.23    NA  December 2013.6
## 344   K.elegans        Ft.Myers   F 6.43   4.11  9.85    NA  December 2013.6
## 345   K.elegans        Ft.Myers   F 7.54   3.61 10.24    NA  December 2013.6
## 346   K.elegans        Ft.Myers   M 5.48   2.93  8.49    NA  December 2013.6
## 347   K.elegans        Ft.Myers   F 8.20   3.51  8.76    NA  December 2013.6
## 348   K.elegans        Ft.Myers   F 7.45   3.58  9.17    NA  December 2013.6
## 349   K.elegans        Ft.Myers   F 6.96   3.61  9.94    NA  December 2013.6
## 350   K.elegans        Ft.Myers   F 7.73   3.77 10.19    NA  December 2013.6
## 351   K.elegans        Ft.Myers   F 6.77   3.53 10.18    NA  December 2013.6
## 352   K.elegans        Ft.Myers   F 7.17   3.46  9.29    NA  December 2013.6
## 353   K.elegans        Ft.Myers   F 8.09   3.50  9.63    NA  December 2013.6
## 354   K.elegans        Ft.Myers   F 8.13   3.69  9.94    NA  December 2013.6
## 355   K.elegans        Ft.Myers   F 7.98   3.85  9.81    NA  December 2013.6
## 356   K.elegans        Ft.Myers   M 5.59   3.13  8.60    NA  December 2013.6
## 357   K.elegans        Ft.Myers   F 6.35   3.47  9.51    NA  December 2013.6
## 358   K.elegans        Ft.Myers   M 5.96   2.99  8.44    NA  December 2013.6
## 359   K.elegans        Ft.Myers   F 7.43   3.58  9.26    NA  December 2013.6
## 360   K.elegans        Ft.Myers   M 5.66   2.88  8.40    NA  December 2013.6
## 361   K.elegans        Ft.Myers   F 7.76   3.62  9.42    NA  December 2013.6
## 362   K.elegans        Ft.Myers   F 7.77   3.73  9.87    NA  December 2013.6
## 363   K.elegans        Ft.Myers   F 7.18   3.52  9.96    NA  December 2013.6
## 364   K.elegans        Ft.Myers   F 6.76   3.68  9.85    NA  December 2013.6
## 365   K.elegans        Ft.Myers   F 7.51   3.86 10.25    NA  December 2013.6
## 366   K.elegans        Ft.Myers   M 5.95   3.14  8.55    NA  December 2013.6
## 367   K.elegans        Ft.Myers   F 8.61   3.92 10.35    NA  December 2013.6
## 368   K.elegans        Ft.Myers   M 5.72   2.97  8.51    NA  December 2013.6
## 369   K.elegans        Ft.Myers   F 8.31   3.62  9.70    NA  December 2013.6
## 370   K.elegans        Ft.Myers   M 5.30   2.82  8.16    NA  December 2013.6
## 371   K.elegans        Ft.Myers   M 5.94   2.94  8.67    NA  December 2013.6
## 372   K.elegans        Ft.Myers   M 5.31   3.29  8.87    NA  December 2013.6
## 373   K.elegans        Ft.Myers   F 7.72   3.55 10.09    NA  December 2013.6
## 374   K.elegans        Ft.Myers   F 7.14   3.53  9.39    NA  December 2013.6
## 375   K.elegans        Ft.Myers   F 8.35   3.61  9.66    NA  December 2013.6
## 376   K.elegans        Ft.Myers   M 5.91   3.20  8.87    NA  December 2013.6
## 377   K.elegans        Ft.Myers   F 7.14   3.69 10.11    NA  December 2013.6
## 378   K.elegans        Ft.Myers   F 7.51   3.63 10.53    NA  December 2013.6
## 379   K.elegans        Ft.Myers   F 7.98   3.58  9.69    NA  December 2013.6
## 380   K.elegans        Ft.Myers   M 5.89   3.14  8.36    NA  December 2013.6
## 381   K.elegans        Ft.Myers   F 8.11   3.76 10.40    NA  December 2013.6
## 382   K.elegans        Ft.Myers   M 5.77   3.04  8.16    NA  December 2013.6
## 383   K.elegans        Ft.Myers   F 7.59   3.63 10.28    NA  December 2013.6
## 384   K.elegans        Ft.Myers   F 8.46   3.87 10.21    NA  December 2013.6
## 385   K.elegans        Ft.Myers   F 8.05   3.44  9.83    NA  December 2013.6
## 386   K.elegans        Ft.Myers   F 7.19   3.67  9.74    NA  December 2013.6
## 387   K.elegans        Ft.Myers   F 7.09   3.67  9.87    NA  December 2013.6
## 388   K.elegans        Ft.Myers   M 5.19   2.74  7.71    NA  December 2013.6
## 389   K.elegans        Ft.Myers   M 5.73   3.12  8.30    NA  December 2013.6
## 390   K.elegans        Ft.Myers   F 7.07   3.72 10.43    NA  December 2013.6
## 391   K.elegans        Ft.Myers   F 7.15   3.66  9.96    NA  December 2013.6
## 392   K.elegans        Ft.Myers   F 7.46   3.53  9.28    NA  December 2013.6
## 393   K.elegans        Ft.Myers   F 8.05   3.81 10.15    NA  December 2013.6
## 394   K.elegans        Ft.Myers   F 7.21   3.78 10.17    NA  December 2013.6
## 395   K.elegans        Ft.Myers   F 7.19   3.25  9.50    NA  December 2013.6
## 396   K.elegans        Ft.Myers   F 6.89   3.75  9.57    NA  December 2013.6
## 397   K.elegans     Gainesville   M 5.89   3.05  8.32    NA  December 2013.6
## 398   K.elegans     Gainesville   M 5.66   3.22  8.79    NA  December 2013.6
## 399   K.elegans     Gainesville   F 8.38   3.59  9.78    NA  December 2013.6
## 400   K.elegans     Gainesville   M 5.62   3.20  8.32    NA  December 2013.6
## 401   K.elegans     Gainesville   M 5.64   2.96  8.22    NA  December 2013.6
## 402   K.elegans     Gainesville   M 5.70   3.12  8.30    NA  December 2013.6
## 403   K.elegans     Gainesville   M 5.38   3.08  7.91    NA  December 2013.6
## 404   K.elegans     Gainesville   M 5.74   2.73  7.48    NA  December 2013.6
## 405   K.elegans     Gainesville   M 6.46   3.10  8.13    NA  December 2013.6
## 406   K.elegans     Gainesville   M 6.69   3.02  8.44    NA  December 2013.6
## 407   K.elegans     Gainesville   F 7.84   3.45  9.33    NA  December 2013.6
## 408   K.elegans     Gainesville   M 5.60   2.96  8.64    NA  December 2013.6
## 409   K.elegans     Gainesville   F 8.14   3.42  9.08    NA  December 2013.6
## 410   K.elegans     Gainesville   F 7.46   3.38  9.13    NA  December 2013.6
## 411  C.corindum       Homestead   F 6.75   3.33  6.07    NA  December 2013.6
## 412  C.corindum       Homestead   F 6.76   3.40  6.22    NA  December 2013.6
## 413  C.corindum       Homestead   F 7.10   3.75  9.06    NA  December 2013.6
## 414  C.corindum       Homestead   F 6.82   3.63  8.91    NA  December 2013.6
## 415  C.corindum       Homestead   M 5.13   2.84  5.64    NA  December 2013.6
## 416  C.corindum       Homestead   F 6.42   3.22  5.74    NA  December 2013.6
## 417  C.corindum       Homestead   M 5.34   3.24  9.26    NA  December 2013.6
## 418  C.corindum       Homestead   F 7.14   3.63  9.23    NA  December 2013.6
## 419  C.corindum       Homestead   F 6.74   3.36  5.53    NA  December 2013.6
## 420  C.corindum       Homestead   F 6.73   3.84  9.56    NA  December 2013.6
## 421  C.corindum       Homestead   F 6.61   3.64  7.79    NA  December 2013.6
## 422  C.corindum       Homestead   M 5.28   3.23  7.83    NA  December 2013.6
## 423  C.corindum       Homestead   F 7.11   3.35  6.58    NA  December 2013.6
## 424  C.corindum       Homestead   F 6.25   3.32  5.41    NA  December 2013.6
## 425  C.corindum       Homestead   M 5.99   3.21  8.94    NA  December 2013.6
## 426  C.corindum       Homestead   F 6.49   3.59  9.37    NA  December 2013.6
## 427  C.corindum       Homestead   F 6.67   3.46  6.01    NA  December 2013.6
## 428  C.corindum       Homestead   M 5.49   2.84  4.83    NA  December 2013.6
## 429  C.corindum       Homestead   F 6.36   3.48  6.22    NA  December 2013.6
## 430  C.corindum       Homestead   M 5.56   3.25  8.21    NA  December 2013.6
## 431  C.corindum       Homestead   M 5.33   3.05  8.21    NA  December 2013.6
## 432  C.corindum       Homestead   M 5.49   2.99  8.27    NA  December 2013.6
## 433  C.corindum       Homestead   F 7.96   3.96  9.73    NA  December 2013.6
## 434   K.elegans       Homestead   M 5.49   2.93  7.06    NA  December 2013.6
## 435   K.elegans       Homestead   F 6.23   3.36  5.70    NA  December 2013.6
## 436   K.elegans       Homestead   M 5.24   2.90  7.64    NA  December 2013.6
## 437   K.elegans       Homestead   F 6.59   3.33  6.98    NA  December 2013.6
## 438   K.elegans       Homestead   F 6.44   3.48  7.00    NA  December 2013.6
## 439   K.elegans       Homestead   M 5.79   3.15  8.90    NA  December 2013.6
## 440   K.elegans       Homestead   F 6.92   3.67  8.95    NA  December 2013.6
## 441   K.elegans       Homestead   M 5.72   3.18  8.02    NA  December 2013.6
## 442   K.elegans       Homestead   M 5.47   3.12  8.04    NA  December 2013.6
## 443   K.elegans       Homestead   M 5.82   3.24  7.94    NA  December 2013.6
## 444   K.elegans       Homestead   F 6.20   3.20  6.28    NA  December 2013.6
## 445   K.elegans       Homestead   F 7.45   3.83 10.15    NA  December 2013.6
## 446   K.elegans       Homestead   M 5.67   3.35  9.08    NA  December 2013.6
## 447   K.elegans       Homestead   F 7.28   3.85 10.20    NA  December 2013.6
## 448   K.elegans       Homestead   M 5.12   2.95  5.64    NA  December 2013.6
## 449   K.elegans       Homestead   F 6.58   3.60  7.28    NA  December 2013.6
## 450   K.elegans       Homestead   M 5.88   3.23  8.97    NA  December 2013.6
## 451   K.elegans       Homestead   F 5.98   3.19  5.69    NA  December 2013.6
## 452   K.elegans       Homestead   M 5.34   2.92  5.92    NA  December 2013.6
## 453   K.elegans       Homestead   M 5.66   3.18  8.93    NA  December 2013.6
## 454   K.elegans       Homestead   F 7.35   3.91 10.00    NA  December 2013.6
## 455   K.elegans       Homestead   F 7.18   3.72  8.10    NA  December 2013.6
## 456   K.elegans       Homestead   M 5.17   2.98  7.42    NA  December 2013.6
## 457   K.elegans       Homestead   F 7.28   3.76  9.51    NA  December 2013.6
## 458   K.elegans       Homestead   M 6.21   3.33  5.69    NA  December 2013.6
## 459   K.elegans       Homestead   F 7.45   3.88 10.30    NA  December 2013.6
## 460   K.elegans       Homestead   F 6.86   3.63 10.13    NA  December 2013.6
## 461   K.elegans       Homestead   F 7.16   3.36  8.81    NA  December 2013.6
## 462   K.elegans       Homestead   M 5.92   3.17  8.61    NA  December 2013.6
## 463  C.corindum       Key_Largo   M 6.38   3.07  8.20    NA  December 2013.6
## 464  C.corindum       Key_Largo   F 9.82   3.78  9.86    NA  December 2013.6
## 465  C.corindum       Key_Largo   F 7.17   3.20  5.04    NA  December 2013.6
## 466  C.corindum       Key_Largo   M 5.96   2.80  7.59    NA  December 2013.6
## 467  C.corindum       Key_Largo   F 8.94   3.96 10.23    NA  December 2013.6
## 468  C.corindum       Key_Largo   F 8.06   3.24  8.29    NA  December 2013.6
## 469  C.corindum       Key_Largo   M 6.60   3.00  8.28    NA  December 2013.6
## 470  C.corindum       Key_Largo   F 6.77   2.84  4.96    NA  December 2013.6
## 471  C.corindum       Key_Largo   F 8.97   3.83  9.86    NA  December 2013.6
## 472  C.corindum       Key_Largo   M 5.93   2.80  4.80    NA  December 2013.6
## 473  C.corindum       Key_Largo   M 6.26   3.03  8.02    NA  December 2013.6
## 474  C.corindum       Key_Largo   F 9.44   3.74  9.88    NA  December 2013.6
## 475  C.corindum       Key_Largo   M 6.07   3.04  7.34    NA  December 2013.6
## 476  C.corindum       Key_Largo   M 6.56   3.01  7.90    NA  December 2013.6
## 477  C.corindum       Key_Largo   M 6.15   3.15  8.26    NA  December 2013.6
## 478  C.corindum       Key_Largo   F 7.40   3.05  5.15    NA  December 2013.6
## 479  C.corindum       Key_Largo   M 6.02   2.81  5.32    NA  December 2013.6
## 480  C.corindum       Key_Largo   F 9.06   3.55  8.90    NA  December 2013.6
## 481  C.corindum       Key_Largo   M 6.56   3.21  7.89    NA  December 2013.6
## 482  C.corindum       Key_Largo   M 6.81   3.31  8.51    NA  December 2013.6
## 483  C.corindum       Key_Largo   F 7.90   3.25  8.78    NA  December 2013.6
## 484  C.corindum       Key_Largo   M 6.56   2.99  8.11    NA  December 2013.6
## 485  C.corindum       Key_Largo   F 7.92   3.36  8.71    NA  December 2013.6
## 486  C.corindum       Key_Largo   M 5.53   3.29  8.64    NA  December 2013.6
## 487  C.corindum       Key_Largo   F 7.20   3.90 10.34    NA  December 2013.6
## 488  C.corindum       Key_Largo   F 7.75   3.63  9.98    NA  December 2013.6
## 489  C.corindum       Key_Largo   F 7.66   3.39  9.49    NA  December 2013.6
## 490  C.corindum       Key_Largo   M 5.65   3.13  8.94    NA  December 2013.6
## 491  C.corindum       Key_Largo   F 8.15   3.73  9.46    NA  December 2013.6
## 492  C.corindum       Key_Largo   F 7.61   3.39  8.89    NA  December 2013.6
## 493  C.corindum       Key_Largo   M 5.90   2.76  4.51    NA  December 2013.6
## 494  C.corindum       Key_Largo   F 7.86   3.78  9.82    NA  December 2013.6
## 495   K.elegans      Lake_Wales   F 7.24   3.15  8.80    NA  December 2013.6
## 496   K.elegans      Lake_Wales   M 6.18   2.92  8.41    NA  December 2013.6
## 497   K.elegans      Lake_Wales   F 7.48   3.21  8.92    NA  December 2013.6
## 498   K.elegans      Lake_Wales   F 7.34   3.30  8.97    NA  December 2013.6
## 499   K.elegans      Lake_Wales   F 7.86   3.59  9.21    NA  December 2013.6
## 500   K.elegans      Lake_Wales   M 5.39   2.96  8.09    NA  December 2013.6
## 501   K.elegans      Lake_Wales   F 8.37   3.52  9.95    NA  December 2013.6
## 502   K.elegans      Lake_Wales   M 5.58   2.99  7.85    NA  December 2013.6
## 503   K.elegans      Lake_Wales   F 7.21   2.99  7.93    NA  December 2013.6
## 504   K.elegans      Lake_Wales   F 7.99   3.54  9.23    NA  December 2013.6
## 505   K.elegans      Lake_Wales   M 5.68   3.06  7.84    NA  December 2013.6
## 506   K.elegans      Lake_Wales   F 6.90   3.25  8.91    NA  December 2013.6
## 507   K.elegans      Lake_Wales   M 5.88   3.19  8.63    NA  December 2013.6
## 508   K.elegans      Lake_Wales   F 7.48   3.42  9.94    NA  December 2013.6
## 509   K.elegans      Lake_Wales   M 5.58   2.71  8.02    NA  December 2013.6
## 510   K.elegans      Lake_Wales   M 6.02   3.17  8.11    NA  December 2013.6
## 511   K.elegans      Lake_Wales   M 5.74   3.16  8.17    NA  December 2013.6
## 512   K.elegans      Lake_Wales   F 7.25   3.64  9.70    NA  December 2013.6
## 513   K.elegans      Lake_Wales   M 5.80   2.92  8.24    NA  December 2013.6
## 514   K.elegans      Lake_Wales   M 5.72   3.11  8.58    NA  December 2013.6
## 515   K.elegans      Lake_Wales   M 5.83   2.87  8.31    NA  December 2013.6
## 516   K.elegans      Lake_Wales   F 8.16   3.65 10.65    NA  December 2013.6
## 517   K.elegans      Lake_Wales   F 8.38   3.68 10.06    NA  December 2013.6
## 518   K.elegans      Lake_Wales   F 7.14   3.43  9.42    NA  December 2013.6
## 519   K.elegans      Lake_Wales   M 5.74   3.12  8.29    NA  December 2013.6
## 520   K.elegans      Lake_Wales   M 5.75   2.97  7.66    NA  December 2013.6
## 521   K.elegans      Lake_Wales   M 5.65   2.94  8.44    NA  December 2013.6
## 522   K.elegans      Lake_Wales   M 5.79   3.07  8.51    NA  December 2013.6
## 523   K.elegans      Lake_Wales   M 5.29   3.09  7.97    NA  December 2013.6
## 524   K.elegans      Lake_Wales   F 7.43   3.87 10.44    NA  December 2013.6
## 525   K.elegans      Lake_Wales   M 5.77   3.06  8.37    NA  December 2013.6
## 526   K.elegans      Lake_Wales   M 5.27   2.72  7.93    NA  December 2013.6
## 527   K.elegans      Lake_Wales   F 6.91   3.66  9.75    NA  December 2013.6
## 528   K.elegans      Lake_Wales   M 5.27   2.84  7.88    NA  December 2013.6
## 529   K.elegans      Lake_Wales   M 5.70   2.99  8.73    NA  December 2013.6
## 530   K.elegans      Lake_Wales   M 5.57   2.96  8.59    NA  December 2013.6
## 531   K.elegans      Lake_Wales   M 5.51   2.87  7.90    NA  December 2013.6
## 532   K.elegans      Lake_Wales   M 5.46   3.04  8.30    NA  December 2013.6
## 533   K.elegans      Lake_Wales   F 7.24   3.36  9.19    NA  December 2013.6
## 534   K.elegans      Lake_Wales   M 5.63   2.74  7.77    NA  December 2013.6
## 535   K.elegans      Lake_Wales   F 7.61   3.43  9.11    NA  December 2013.6
## 536   K.elegans      Lake_Wales   M 6.49   3.24  8.82    NA  December 2013.6
## 537   K.elegans      Lake_Wales   F 8.53   3.48  8.92    NA  December 2013.6
## 538   K.elegans      Lake_Wales   F 7.97   3.34  8.98    NA  December 2013.6
## 539   K.elegans      Lake_Wales   F 7.38   3.35  8.50    NA  December 2013.6
## 540   K.elegans      Lake_Wales   M 5.53   3.08  8.03    NA  December 2013.6
## 541   K.elegans      Lake_Wales   M 5.86   3.06  7.78    NA  December 2013.6
## 542   K.elegans      Lake_Wales   M 5.44   2.79  6.72    NA  December 2013.6
## 543   K.elegans      Lake_Wales   F 6.86   3.19  8.83    NA  December 2013.6
## 544   K.elegans      Lake_Wales   M 6.13   2.87  8.16    NA  December 2013.6
## 545   K.elegans      Lake_Wales   F 7.36   3.27  8.74    NA  December 2013.6
## 546   K.elegans      Lake_Wales   M 5.49   2.75  7.60    NA  December 2013.6
## 547   K.elegans      Lake_Wales   F 7.45   2.37  7.86    NA  December 2013.6
## 548   K.elegans      Lake_Wales   F 7.28   3.54  8.51    NA  December 2013.6
## 549   K.elegans      Lake_Wales   F 8.05   3.82  9.27    NA  December 2013.6
## 550   K.elegans      Lake_Wales   M 5.23   2.92  7.47    NA  December 2013.6
## 551   K.elegans      Lake_Wales   M 5.66   3.07  7.64    NA  December 2013.6
## 552   K.elegans      Lake_Wales   F 7.51   3.56  9.20    NA  December 2013.6
## 553   K.elegans      Lake_Wales   M 5.63   2.80  7.92    NA  December 2013.6
## 554   K.elegans      Lake_Wales   M 5.64   2.91  7.95    NA  December 2013.6
## 555   K.elegans      Lake_Wales   M 5.78   3.27  8.64    NA  December 2013.6
## 556   K.elegans      Lake_Wales   F 7.36   2.88  8.40    NA  December 2013.6
## 557   K.elegans      Lake_Wales   F 7.43   3.21  7.62    NA  December 2013.6
## 558   K.elegans      Lake_Wales   M 5.90   3.10  7.85    NA  December 2013.6
## 559   K.elegans      Lake_Wales   M 5.63   3.24  8.97    NA  December 2013.6
## 560   K.elegans      Lake_Wales   F 8.67   3.61  9.20    NA  December 2013.6
## 561   K.elegans      Lake_Wales   M 5.56   2.82  8.03    NA  December 2013.6
## 562   K.elegans      Lake_Wales   M 5.91   3.05  8.13    NA  December 2013.6
## 563   K.elegans      Lake_Wales   M 6.09   3.37  8.08    NA  December 2013.6
## 564   K.elegans      Lake_Wales   M 5.35   2.86  7.53    NA  December 2013.6
## 565   K.elegans      Lake_Wales   M 6.20   3.27  8.40    NA  December 2013.6
## 566   K.elegans      Lake_Wales   M 5.55   3.21  8.64    NA  December 2013.6
## 567   K.elegans      Lake_Wales   M 5.73   2.85  7.11    NA  December 2013.6
## 568   K.elegans      Lake_Wales   M 5.43   2.94  8.49    NA  December 2013.6
## 569   K.elegans      Lake_Wales   M 5.53   3.03  7.77    NA  December 2013.6
## 570   K.elegans      Lake_Wales   F 8.30   3.61  8.95    NA  December 2013.6
## 571   K.elegans      Lake_Wales   M 5.79   2.81  7.58    NA  December 2013.6
## 572   K.elegans      Lake_Wales   M 5.62   2.90  7.19    NA  December 2013.6
## 573   K.elegans      Lake_Wales   F 8.12   3.45  9.65    NA  December 2013.6
## 574   K.elegans      Lake_Wales   M 6.04   3.15  8.74    NA  December 2013.6
## 575   K.elegans      Lake_Wales   M 5.68   2.95  7.50    NA  December 2013.6
## 576   K.elegans      Lake_Wales   F 7.09   3.51  8.53    NA  December 2013.6
## 577   K.elegans      Lake_Wales   M 5.96   3.08  8.12    NA  December 2013.6
## 578   K.elegans      Lake_Wales   M 5.98   2.94  7.66    NA  December 2013.6
## 579   K.elegans        Leesburg   F 7.34   3.42  8.59    NA  December 2013.6
## 580   K.elegans        Leesburg   F 8.19   3.66  8.95    NA  December 2013.6
## 581   K.elegans        Leesburg   F 7.05   3.44  8.24    NA  December 2013.6
## 582   K.elegans        Leesburg   F 7.74   3.55  9.05    NA  December 2013.6
## 583   K.elegans        Leesburg   M 5.34   3.11  8.59    NA  December 2013.6
## 584   K.elegans        Leesburg   M 5.71   2.97  7.84    NA  December 2013.6
## 585   K.elegans        Leesburg   F 7.67   3.14  8.01    NA  December 2013.6
## 586   K.elegans        Leesburg   F 7.79   3.66  8.90    NA  December 2013.6
## 587   K.elegans        Leesburg   M 5.75   3.02  8.08    NA  December 2013.6
## 588   K.elegans        Leesburg   M 6.16   3.28  7.89    NA  December 2013.6
## 589   K.elegans        Leesburg   F 6.82   3.49  9.02    NA  December 2013.6
## 590   K.elegans        Leesburg   M 6.06   3.34  8.17    NA  December 2013.6
## 591   K.elegans        Leesburg   F 6.97   3.49  9.94    NA  December 2013.6
## 592   K.elegans        Leesburg   F 7.40   3.35  9.25    NA  December 2013.6
## 593   K.elegans        Leesburg   M 5.30   3.32  8.84    NA  December 2013.6
## 594   K.elegans        Leesburg   M 5.81   2.66  8.19    NA  December 2013.6
## 595   K.elegans        Leesburg   F 7.94   3.45  8.26    NA  December 2013.6
## 596   K.elegans        Leesburg   F 7.46   3.12  9.10    NA  December 2013.6
## 597   K.elegans        Leesburg   F 7.87   3.64  9.72    NA  December 2013.6
## 598   K.elegans        Leesburg   F 7.72   3.35  7.99    NA  December 2013.6
## 599   K.elegans        Leesburg   F 8.28   3.88  9.88    NA  December 2013.6
## 600   K.elegans        Leesburg   F 8.06   3.55  8.44    NA  December 2013.6
## 601   K.elegans        Leesburg   M 6.27   2.95  8.89    NA  December 2013.6
## 602   K.elegans        Leesburg   F 7.67   3.62  8.78    NA  December 2013.6
## 603   K.elegans        Leesburg   F 8.42   3.54  8.76    NA  December 2013.6
## 604   K.elegans        Leesburg   M 6.05   3.17  8.05    NA  December 2013.6
## 605   K.elegans        Leesburg   M 6.01   3.11  7.97    NA  December 2013.6
## 606   K.elegans        Leesburg   M 5.49   3.02  7.67    NA  December 2013.6
## 607   K.elegans        Leesburg   M 5.69   3.14  8.81    NA  December 2013.6
## 608   K.elegans        Leesburg   F 7.64   3.57  9.38    NA  December 2013.6
## 609   K.elegans        Leesburg   F 6.49   3.21  7.94    NA  December 2013.6
## 610   K.elegans        Leesburg   M 5.78   3.08  8.45    NA  December 2013.6
## 611   K.elegans        Leesburg   F 7.65   3.51  9.34    NA  December 2013.6
## 612   K.elegans        Leesburg   F 8.17   3.45  8.39    NA  December 2013.6
## 613   K.elegans        Leesburg   F 7.56   2.98  8.72    NA  December 2013.6
## 614   K.elegans        Leesburg   F 7.29   3.57 10.10    NA  December 2013.6
## 615   K.elegans        Leesburg   F 6.78   3.49  8.33    NA  December 2013.6
## 616   K.elegans        Leesburg   M 5.76   3.06  8.10    NA  December 2013.6
## 617   K.elegans        Leesburg   M 5.84   2.82  7.75    NA  December 2013.6
## 618   K.elegans        Leesburg   M 4.99   2.89  7.35    NA  December 2013.6
## 619   K.elegans        Leesburg   F 7.95   3.43  8.86    NA  December 2013.6
## 620   K.elegans        Leesburg   F 8.01   3.27  9.54    NA  December 2013.6
## 621   K.elegans        Leesburg   M 5.32   2.89  7.60    NA  December 2013.6
## 622   K.elegans        Leesburg   M 6.09   3.00  8.61    NA  December 2013.6
## 623   K.elegans        Leesburg   M 5.89   3.32  8.07    NA  December 2013.6
## 624   K.elegans        Leesburg   M 5.82   3.11  8.03    NA  December 2013.6
## 625   K.elegans        Leesburg   M 5.57   2.87  7.12    NA  December 2013.6
## 626   K.elegans        Leesburg   M 6.10   2.86  8.28    NA  December 2013.6
## 627   K.elegans        Leesburg   F 5.94   3.48  7.44    NA  December 2013.6
## 628   K.elegans        Leesburg   F 7.48   3.36  8.32    NA  December 2013.6
## 629   K.elegans        Leesburg   F 7.89   3.27  8.19    NA  December 2013.6
## 630   K.elegans        Leesburg   M 5.65   3.34  8.62    NA  December 2013.6
## 631   K.elegans        Leesburg   M 5.80   2.91  8.83    NA  December 2013.6
## 632   K.elegans        Leesburg   F 7.96   3.47  8.72    NA  December 2013.6
## 633   K.elegans        Leesburg   M 5.85   2.96  8.32    NA  December 2013.6
## 634   K.elegans        Leesburg   M 5.68   3.05  8.05    NA  December 2013.6
## 635   K.elegans        Leesburg   F 7.56   3.33  9.16    NA  December 2013.6
## 636   K.elegans        Leesburg   M 5.91   3.17  8.65    NA  December 2013.6
## 637   K.elegans        Leesburg   M 5.43   3.08  8.00    NA  December 2013.6
## 638   K.elegans        Leesburg   M 5.74   3.03  8.12    NA  December 2013.6
## 639   K.elegans        Leesburg   F 7.78   3.21  9.21    NA  December 2013.6
## 640   K.elegans        Leesburg   M 5.55   2.88  7.67    NA  December 2013.6
## 641   K.elegans        Leesburg   F 8.19   3.64  9.13    NA  December 2013.6
## 642   K.elegans        Leesburg   M 6.04   2.89  8.07    NA  December 2013.6
## 643   K.elegans        Leesburg   M 5.08   2.98  7.52    NA  December 2013.6
## 644   K.elegans        Leesburg   M 4.94   2.79  7.43    NA  December 2013.6
## 645   K.elegans        Leesburg   M 5.53   3.02  7.82    NA  December 2013.6
## 646   K.elegans        Leesburg   F 7.37   2.98  8.66    NA  December 2013.6
## 647   K.elegans        Leesburg   M 5.97   2.85  7.75    NA  December 2013.6
## 648   K.elegans        Leesburg   M 6.31   2.99  7.62    NA  December 2013.6
## 649   K.elegans        Leesburg   M 5.67   2.86  7.73    NA  December 2013.6
## 650   K.elegans        Leesburg   F 8.04   3.52  8.73    NA  December 2013.6
## 651   K.elegans        Leesburg   F 7.31   3.30  7.82    NA  December 2013.6
## 652   K.elegans        Leesburg   F 6.91   3.37  9.80    NA  December 2013.6
## 653   K.elegans        Leesburg   M 5.66   2.95  7.83    NA  December 2013.6
## 654   K.elegans        Leesburg   M 5.77   3.11  7.67    NA  December 2013.6
## 655   K.elegans        Leesburg   M 5.74   3.23  7.99    NA  December 2013.6
## 656   K.elegans        Leesburg   M 5.68   2.97  7.95    NA  December 2013.6
## 657   K.elegans        Leesburg   M 5.63   2.82  8.00    NA  December 2013.6
## 658   K.elegans        Leesburg   M 5.60   3.09  8.07    NA  December 2013.6
## 659   K.elegans        Leesburg   M 5.74   2.81  7.42    NA  December 2013.6
## 660   K.elegans        Leesburg   M 5.61   2.65  7.53    NA  December 2013.6
## 661   K.elegans        Leesburg   F 7.77   3.13  8.82    NA  December 2013.6
## 662   K.elegans        Leesburg   M 6.36   3.10  7.44    NA  December 2013.6
## 663   K.elegans        Leesburg   F 7.45   3.34  8.61    NA  December 2013.6
## 664   K.elegans        Leesburg   F 7.63   3.58  9.46    NA  December 2013.6
## 665   K.elegans        Leesburg   M 5.33   2.34  4.59    NA  December 2013.6
## 666   K.elegans        Leesburg   M 6.21   2.83  7.22    NA  December 2013.6
## 667   K.elegans        Leesburg   F 7.33   3.75  9.43    NA  December 2013.6
## 668   K.elegans        Leesburg   M 5.68   3.13  8.52    NA  December 2013.6
## 669   K.elegans        Leesburg   M 5.72   2.85  7.53    NA  December 2013.6
## 670  C.corindum  Plantation_Key   M 6.40   3.23  8.29    NA  December 2013.6
## 671  C.corindum  Plantation_Key   F 7.13   3.24  8.68    NA  December 2013.6
## 672  C.corindum  Plantation_Key   F 7.23   3.09  8.38    NA  December 2013.6
## 673  C.corindum  Plantation_Key   M 5.50   2.86  7.84    NA  December 2013.6
## 674  C.corindum  Plantation_Key   M 6.22   2.94  8.46    NA  December 2013.6
## 675  C.corindum  Plantation_Key   F 8.87   3.87  9.81    NA  December 2013.6
## 676  C.corindum  Plantation_Key   M 6.00   3.03  8.16    NA  December 2013.6
## 677  C.corindum  Plantation_Key   F 7.77   3.45  9.76    NA  December 2013.6
## 678  C.corindum  Plantation_Key   F 8.28   3.51  9.19    NA  December 2013.6
## 679  C.corindum  Plantation_Key   M 5.74   2.70  5.45    NA  December 2013.6
## 680  C.corindum  Plantation_Key   F 6.64   3.05  8.28    NA  December 2013.6
## 681  C.corindum  Plantation_Key   F 8.06   3.41  9.03    NA  December 2013.6
## 682  C.corindum  Plantation_Key   F 7.52   3.36  8.83    NA  December 2013.6
## 683  C.corindum  Plantation_Key   M 6.03   2.81  8.39    NA  December 2013.6
## 684  C.corindum  Plantation_Key   M 5.94   2.84  8.11    NA  December 2013.6
## 685  C.corindum  Plantation_Key   M 5.80   2.93  7.92    NA  December 2013.6
## 686  C.corindum  Plantation_Key   F 7.65   3.46  9.21    NA  December 2013.6
## 687  C.corindum  Plantation_Key   F 7.31   3.57  9.54    NA  December 2013.6
## 688  C.corindum  Plantation_Key   F 9.35   3.82 10.58    NA  December 2013.6
## 689  C.corindum  Plantation_Key   F 9.29   3.74  9.85    NA  December 2013.6
## 690  C.corindum  Plantation_Key   F 8.28   4.03 11.06    NA  December 2013.6
## 691  C.corindum  Plantation_Key   M 5.42   2.73  7.61    NA  December 2013.6
## 692  C.corindum  Plantation_Key   F 6.68   3.20  8.49    NA  December 2013.6
## 693  C.corindum  Plantation_Key   M 6.09   2.94  8.56    NA  December 2013.6
## 694  C.corindum  Plantation_Key   F 6.76   3.22  8.79    NA  December 2013.6
## 695  C.corindum  Plantation_Key   M 6.12   3.12  8.26    NA  December 2013.6
## 696  C.corindum  Plantation_Key   M 5.34   2.57  4.32    NA  December 2013.6
## 697  C.corindum  Plantation_Key   F 7.97   3.58  9.88    NA  December 2013.6
## 698  C.corindum  Plantation_Key   M 5.74   2.76  8.73    NA  December 2013.6
## 699  C.corindum  Plantation_Key   M 5.98   3.02  8.31    NA  December 2013.6
## 700  C.corindum  Plantation_Key   F 7.29   3.25  8.61    NA  December 2013.6
## 701  C.corindum  Plantation_Key   M 5.67   2.88  5.71    NA  December 2013.6
## 702  C.corindum  Plantation_Key   M 5.96   2.90  8.57    NA  December 2013.6
## 703  C.corindum  Plantation_Key   M 5.39   2.37  4.41    NA  December 2013.6
## 704  C.corindum  Plantation_Key   F 7.45   3.41 10.25    NA  December 2013.6
## 705   K.elegans     Gainesville   F 6.30   3.40  8.82    NA     April 2014.0
## 706   K.elegans     Gainesville   M 5.15   2.78  7.41    NA     April 2014.0
## 707   K.elegans     Gainesville   M 5.38   3.04  8.15    NA     April 2014.0
## 708   K.elegans     Gainesville   M 5.01   3.05  8.09    NA     April 2014.0
## 709   K.elegans     Gainesville   F 6.34   3.24  9.06    NA     April 2014.0
## 710   K.elegans     Gainesville   F 6.68   3.66  9.54    NA     April 2014.0
## 711   K.elegans     Gainesville   F 6.25   3.47  9.65    NA     April 2014.0
## 712   K.elegans     Gainesville   F 6.05   3.62  9.41    NA     April 2014.0
## 713   K.elegans     Gainesville   M 5.66   2.86  8.42    NA     April 2014.0
## 714   K.elegans     Gainesville   F 5.99   3.25  9.21    NA     April 2014.0
## 715   K.elegans     Gainesville   M 5.47   2.88  7.86    NA     April 2014.0
## 716   K.elegans     Gainesville   F 7.42   3.30  9.09    NA     April 2014.0
## 717   K.elegans     Gainesville   F 6.20   3.10  8.26    NA     April 2014.0
## 718   K.elegans     Gainesville   M 5.07   2.99  7.50    NA     April 2014.0
## 719   K.elegans     Gainesville   F 6.69   3.36  9.07    NA     April 2014.0
## 720   K.elegans     Gainesville   F 5.06   2.88  8.07    NA     April 2014.0
## 721   K.elegans     Gainesville   M 5.18   3.03  8.01    NA     April 2014.0
## 722   K.elegans     Gainesville   F 5.69   3.01  7.72    NA     April 2014.0
## 723   K.elegans     Gainesville   F 6.46   3.18  8.39    NA     April 2014.0
## 724   K.elegans     Gainesville   F 7.45   3.53  9.19    NA     April 2014.0
## 725   K.elegans     Gainesville   M 4.64   2.72  7.27    NA     April 2014.0
## 726   K.elegans     Gainesville   M 5.26   2.53  4.63    NA     April 2014.0
## 727   K.elegans     Gainesville   F 6.37   3.35  8.75    NA     April 2014.0
## 728   K.elegans     Gainesville   F 6.26   3.43  8.65    NA     April 2014.0
## 729   K.elegans     Gainesville   M 5.36   2.94  8.22    NA     April 2014.0
## 730   K.elegans     Gainesville   M 5.82   3.14  8.50    NA     April 2014.0
## 731   K.elegans     Gainesville   F 6.60   3.54  9.43    NA     April 2014.0
## 732   K.elegans     Gainesville   F 6.13   3.31  5.98    NA     April 2014.0
## 733   K.elegans     Gainesville   F 6.62   3.42  8.79    NA     April 2014.0
## 734   K.elegans     Gainesville   M 5.73   2.87  8.46    NA     April 2014.0
## 735   K.elegans     Gainesville   F 6.35   3.47  9.15    NA     April 2014.0
## 736   K.elegans     Gainesville   F 6.44   3.34  9.24    NA     April 2014.0
## 737   K.elegans     Gainesville   F 6.88   3.25  9.10    NA     April 2014.0
## 738   K.elegans     Gainesville   M 5.31   2.85  7.68    NA     April 2014.0
## 739   K.elegans     Gainesville   F 6.13   3.10  8.35    NA     April 2014.0
## 740   K.elegans     Gainesville   F 7.04   3.24  8.98    NA     April 2014.0
## 741   K.elegans     Gainesville   F 6.56   2.97  8.06    NA     April 2014.0
## 742   K.elegans     Gainesville   M 5.03   2.96  7.99    NA     April 2014.0
## 743   K.elegans     Gainesville   F 6.33   3.38  8.92    NA     April 2014.0
## 744   K.elegans     Gainesville   M 5.34   2.85  8.18    NA     April 2014.0
## 745   K.elegans     Gainesville   M 5.40   2.89  7.46    NA     April 2014.0
## 746   K.elegans     Gainesville   F 6.66   3.36  9.07    NA     April 2014.0
## 747   K.elegans     Gainesville   M 5.60   3.04  8.27    NA     April 2014.0
## 748   K.elegans     Gainesville   F 6.78   3.09  8.51    NA     April 2014.0
## 749   K.elegans     Gainesville   M 5.25   2.90  7.63    NA     April 2014.0
## 750   K.elegans     Gainesville   F 6.40   3.41  8.83    NA     April 2014.0
## 751   K.elegans     Gainesville   M 5.70   2.99  7.76    NA     April 2014.0
## 752   K.elegans     Gainesville   M 5.31   2.59  7.24    NA     April 2014.0
## 753  C.corindum       Homestead   M 5.25   2.93  8.23    NA     April 2014.0
## 754  C.corindum       Homestead   M 5.74   3.33  8.44    NA     April 2014.0
## 755  C.corindum       Homestead   M 5.63   3.22  8.65    NA     April 2014.0
## 756  C.corindum       Homestead   F 7.43   3.86  9.77    NA     April 2014.0
## 757  C.corindum       Homestead   F 6.64   3.14  9.18    NA     April 2014.0
## 758  C.corindum       Homestead   F 6.63   3.34  5.77    NA     April 2014.0
## 759  C.corindum       Homestead   F 6.73   3.78  6.63    NA     April 2014.0
## 760  C.corindum       Homestead   M 5.42   2.98  4.80    NA     April 2014.0
## 761  C.corindum       Homestead   F 6.95   3.46  7.07    NA     April 2014.0
## 762  C.corindum       Homestead   M 5.53   2.77  4.58    NA     April 2014.0
## 763  C.corindum       Homestead   M 4.89   2.74  4.18    NA     April 2014.0
## 764  C.corindum       Homestead   F 6.84   3.48  6.73    NA     April 2014.0
## 765  C.corindum       Homestead   M 5.35   2.99  7.94    NA     April 2014.0
## 766  C.corindum       Homestead   F 6.76   3.40  8.94    NA     April 2014.0
## 767  C.corindum       Homestead   M 5.84   2.91  8.13    NA     April 2014.0
## 768  C.corindum       Homestead   M 5.67   3.23  8.31    NA     April 2014.0
## 769  C.corindum       Homestead   M 5.01   2.86  4.41    NA     April 2014.0
## 770  C.corindum       Key_Largo   F 7.67   3.61  5.86    NA     April 2014.0
## 771  C.corindum       Key_Largo   F 6.29   2.69  4.30    NA     April 2014.0
## 772  C.corindum       Key_Largo   F 6.45   2.85  5.05    NA     April 2014.0
## 773  C.corindum       Key_Largo   F 8.98   3.71  9.28    NA     April 2014.0
## 774  C.corindum       Key_Largo   F 7.81   3.48  5.45    NA     April 2014.0
## 775  C.corindum       Key_Largo   F 6.83   2.99  5.04    NA     April 2014.0
## 776  C.corindum       Key_Largo   F 7.95   3.37  8.27    NA     April 2014.0
## 777  C.corindum       Key_Largo   F 6.92   3.02  5.70    NA     April 2014.0
## 778  C.corindum       Key_Largo   F 7.35   3.71  9.28    NA     April 2014.0
## 779  C.corindum       Key_Largo   F 6.16   2.96  4.84    NA     April 2014.0
## 780  C.corindum       Key_Largo   F 6.14   2.96  4.23    NA     April 2014.0
## 781  C.corindum       Key_Largo   F 8.75   4.11 10.04    NA     April 2014.0
## 782  C.corindum       Key_Largo   F 6.36   3.20  4.88    NA     April 2014.0
## 783  C.corindum       Key_Largo   F 8.63   3.66  9.07    NA     April 2014.0
## 784  C.corindum       Key_Largo   F 7.68   3.46  8.56    NA     April 2014.0
## 785  C.corindum       Key_Largo   F 6.80   3.15  4.86    NA     April 2014.0
## 786  C.corindum       Key_Largo   F 5.75   2.83  4.24    NA     April 2014.0
## 787  C.corindum       Key_Largo   F 5.54   2.66  3.78    NA     April 2014.0
## 788  C.corindum       Key_Largo   F 7.88   3.40  8.68    NA     April 2014.0
## 789  C.corindum       Key_Largo   F 8.68   3.88 10.08    NA     April 2014.0
## 790  C.corindum       Key_Largo   F 6.30   2.96  5.06    NA     April 2014.0
## 791  C.corindum       Key_Largo   F 7.91   3.64  9.08    NA     April 2014.0
## 792  C.corindum       Key_Largo   F 7.93   3.42  8.97    NA     April 2014.0
## 793  C.corindum       Key_Largo   F 6.72   3.17  4.95    NA     April 2014.0
## 794  C.corindum       Key_Largo   F 7.28   3.37  7.03    NA     April 2014.0
## 795  C.corindum       Key_Largo   F 5.66   2.69  4.09    NA     April 2014.0
## 796  C.corindum       Key_Largo   F 8.33   3.86  9.24    NA     April 2014.0
## 797  C.corindum       Key_Largo   F 6.18   3.19  4.72    NA     April 2014.0
## 798  C.corindum       Key_Largo   F 7.50   3.42  8.07    NA     April 2014.0
## 799  C.corindum       Key_Largo   F 6.96   3.09  5.50    NA     April 2014.0
## 800  C.corindum       Key_Largo   F 6.26   2.87  4.95    NA     April 2014.0
## 801  C.corindum       Key_Largo   M 6.24   3.16  8.43 11.53     April 2014.0
## 802  C.corindum       Key_Largo   F 5.89   2.73  4.28    NA     April 2014.0
## 803  C.corindum       Key_Largo   M 6.33   2.94  7.88 10.42     April 2014.0
## 804  C.corindum       Key_Largo   F 9.10   3.89 10.23 13.93     April 2014.0
## 805  C.corindum       Key_Largo   F 8.80   3.67 10.09 14.11     April 2014.0
## 806  C.corindum       Key_Largo   F 6.93   2.80  4.80    NA     April 2014.0
## 807  C.corindum       Key_Largo   F 6.61   2.83  4.72    NA     April 2014.0
## 808  C.corindum       Key_Largo   M 5.89   2.85  7.94 10.64     April 2014.0
## 809  C.corindum       Key_Largo   M 5.43   2.76  7.23  9.99     April 2014.0
## 810   K.elegans      Lake_Wales   M 5.10   2.42  4.46    NA     April 2014.0
## 811   K.elegans      Lake_Wales   F 7.69   3.35  9.32 12.31     April 2014.0
## 812   K.elegans      Lake_Wales   M 5.48   2.89  7.73 10.89     April 2014.0
## 813   K.elegans      Lake_Wales   M 5.67   2.90  8.19 10.88     April 2014.0
## 814   K.elegans      Lake_Wales   F 7.49   3.23  8.70 12.01     April 2014.0
## 815   K.elegans      Lake_Wales   F 7.23   3.33  9.08 12.21     April 2014.0
## 816   K.elegans      Lake_Wales   M 5.64   3.10  8.21 11.37     April 2014.0
## 817   K.elegans      Lake_Wales   F 6.42   3.67  9.86 13.18     April 2014.0
## 818   K.elegans      Lake_Wales   M 5.60   3.26  8.33 11.17     April 2014.0
## 819   K.elegans      Lake_Wales   M 5.63   3.00  8.12 10.91     April 2014.0
## 820   K.elegans      Lake_Wales   F 6.95   3.07  8.72 11.88     April 2014.0
## 821   K.elegans      Lake_Wales   M 5.52   3.23  8.52 11.29     April 2014.0
## 822   K.elegans      Lake_Wales   M 5.19   3.12  7.88 10.94     April 2014.0
## 823   K.elegans      Lake_Wales   F 7.24   3.27  8.93 12.21     April 2014.0
## 824   K.elegans      Lake_Wales   F 6.57   2.93  8.39 11.45     April 2014.0
## 825   K.elegans      Lake_Wales   M 5.33   2.73  7.72 10.52     April 2014.0
## 826   K.elegans      Lake_Wales   F 6.78   3.29  8.92 11.99     April 2014.0
## 827   K.elegans      Lake_Wales   F 6.39   2.88  5.02    NA     April 2014.0
## 828   K.elegans      Lake_Wales   M 5.56   2.91  7.63 10.40     April 2014.0
## 829   K.elegans      Lake_Wales   F 6.38   3.26  8.47 11.94     April 2014.0
## 830   K.elegans      Lake_Wales   M 5.28   3.03  8.34 11.00     April 2014.0
## 831   K.elegans      Lake_Wales   F 7.65   3.52  9.26 12.82     April 2014.0
## 832   K.elegans      Lake_Wales   F 6.27   3.00  5.52    NA     April 2014.0
## 833   K.elegans      Lake_Wales   F 6.62   3.29  8.77 11.71     April 2014.0
## 834   K.elegans      Lake_Wales   M 5.51   3.04  8.92 11.85     April 2014.0
## 835   K.elegans      Lake_Wales   F 6.87   3.55  8.72 13.09     April 2014.0
## 836   K.elegans      Lake_Wales   F 7.66   3.67  9.99 13.62     April 2014.0
## 837   K.elegans      Lake_Wales   F 6.67   2.94  7.42 10.57     April 2014.0
## 838   K.elegans      Lake_Wales   M 5.78   3.29  9.04 11.88     April 2014.0
## 839   K.elegans      Lake_Wales   F 6.24   2.99  4.73    NA     April 2014.0
## 840   K.elegans      Lake_Wales   F 6.59   2.90  7.91 10.83     April 2014.0
## 841   K.elegans      Lake_Wales   F 6.75   2.94  8.15 11.25     April 2014.0
## 842   K.elegans      Lake_Wales   M 5.49   3.04  8.38 11.59     April 2014.0
## 843   K.elegans      Lake_Wales   F 6.91   3.09  8.56 11.72     April 2014.0
## 844   K.elegans      Lake_Wales   M 5.60   3.15  8.83 12.01     April 2014.0
## 845   K.elegans      Lake_Wales   F 5.56   2.94  7.27 10.51     April 2014.0
## 846   K.elegans      Lake_Wales   F 6.87   3.08  7.48 10.62     April 2014.0
## 847   K.elegans      Lake_Wales   M 5.47   2.99  7.77 10.85     April 2014.0
## 848   K.elegans      Lake_Wales   F 6.41   3.00  5.25    NA     April 2014.0
## 849   K.elegans      Lake_Wales   F 7.07   3.27  8.92 12.21     April 2014.0
## 850   K.elegans      Lake_Wales   M 5.48   2.88  8.48 11.29     April 2014.0
## 851   K.elegans      Lake_Wales   F 5.99   3.01  8.21 11.50     April 2014.0
## 852   K.elegans      Lake_Wales   F 6.62   3.15  8.58 11.77     April 2014.0
## 853   K.elegans      Lake_Wales   F 6.50   3.20  8.42 11.68     April 2014.0
## 854   K.elegans        Leesburg   F 7.09   3.47  9.74    NA     April 2014.0
## 855   K.elegans        Leesburg   M 5.56   2.86  8.21    NA     April 2014.0
## 856   K.elegans        Leesburg   M 5.38   3.10  8.21    NA     April 2014.0
## 857   K.elegans        Leesburg   F 7.60   3.27  8.92    NA     April 2014.0
## 858   K.elegans        Leesburg   M 5.58   2.89  8.05    NA     April 2014.0
## 859   K.elegans        Leesburg   M 5.29   3.05  8.06    NA     April 2014.0
## 860   K.elegans        Leesburg   F 6.92   3.43  9.35    NA     April 2014.0
## 861   K.elegans        Leesburg   F 7.17   3.39  9.19    NA     April 2014.0
## 862   K.elegans        Leesburg   M 5.34   2.89  8.42    NA     April 2014.0
## 863   K.elegans        Leesburg   M 5.49   3.00  8.49    NA     April 2014.0
## 864   K.elegans        Leesburg   F 6.59   3.59  9.48    NA     April 2014.0
## 865   K.elegans        Leesburg   F 6.95   3.33  9.13    NA     April 2014.0
## 866   K.elegans        Leesburg   F 6.86   3.12  8.01    NA     April 2014.0
## 867   K.elegans        Leesburg   F 6.27   3.12  9.10    NA     April 2014.0
## 868  C.corindum  Plantation_Key   F 8.25   3.36  9.37 12.76     April 2014.0
## 869  C.corindum  Plantation_Key   M 5.52   2.56  4.82    NA     April 2014.0
## 870  C.corindum  Plantation_Key   M 5.56   2.88  7.86 10.70     April 2014.0
## 871  C.corindum  Plantation_Key   F 6.55   3.03  5.90    NA     April 2014.0
## 872  C.corindum  Plantation_Key   M 5.44   2.36  4.83    NA     April 2014.0
## 873  C.corindum  Plantation_Key   M 5.23   2.50  4.69    NA     April 2014.0
## 874  C.corindum  Plantation_Key   F 7.76   3.23  8.71 12.22     April 2014.0
## 875  C.corindum  Plantation_Key   M 5.67   3.09  8.06 10.94     April 2014.0
## 876  C.corindum  Plantation_Key   F 6.37   2.83  5.21    NA     April 2014.0
## 877  C.corindum  Plantation_Key   F 6.42   3.01  6.37    NA     April 2014.0
## 878  C.corindum  Plantation_Key   F 8.65   3.00  8.48 11.74     April 2014.0
## 879  C.corindum  Plantation_Key   F 6.15   2.80  6.11    NA     April 2014.0
## 880  C.corindum  Plantation_Key   F 6.98   3.34  8.77 11.98     April 2014.0
## 881  C.corindum  Plantation_Key   F 6.30   2.89  8.07 11.27     April 2014.0
## 882  C.corindum  Plantation_Key   F 6.02   2.61  4.31    NA     April 2014.0
## 883  C.corindum  Plantation_Key   M 6.09   2.99  8.11    NA     April 2014.0
## 884  C.corindum  Plantation_Key   F 8.41   3.56  9.33    NA     April 2014.0
## 885  C.corindum  Plantation_Key   M 5.18   2.33  3.91    NA     April 2014.0
## 886  C.corindum  Plantation_Key   M 5.86   2.93  8.41    NA     April 2014.0
## 887  C.corindum  Plantation_Key   M 5.74   3.08  8.52    NA     April 2014.0
## 888  C.corindum  Plantation_Key   M 5.72   2.67  5.45    NA     April 2014.0
## 889  C.corindum  Plantation_Key   F 7.29   3.28  8.26    NA     April 2014.0
## 890  C.corindum  Plantation_Key   F 7.56   3.13  8.37    NA     April 2014.0
## 891  C.corindum  Plantation_Key   M 6.50   3.23  8.05    NA     April 2014.0
## 892  C.corindum  Plantation_Key   M 6.02   2.93  8.14    NA     April 2014.0
## 893  C.corindum  Plantation_Key   F 6.52   2.99  4.74    NA     April 2014.0
## 894  C.corindum  Plantation_Key   M 5.61   2.77  7.25    NA     April 2014.0
## 895  C.corindum  Plantation_Key   F 6.16   2.66  4.89    NA     April 2014.0
## 896  C.corindum  Plantation_Key   M 5.71   2.91  7.96    NA     April 2014.0
## 897  C.corindum  Plantation_Key   M 6.21   3.13  8.09    NA     April 2014.0
## 898  C.corindum  Plantation_Key   M 5.57   2.70  5.87    NA     April 2014.0
## 899  C.corindum  Plantation_Key   M 5.77   2.91  5.15    NA     April 2014.0
## 900  C.corindum  Plantation_Key   M 5.52   2.47  4.15    NA     April 2014.0
## 901  C.corindum  Plantation_Key   F 6.38   2.82  5.36    NA     April 2014.0
## 902  C.corindum  Plantation_Key   F 6.48   3.04  4.89    NA     April 2014.0
## 903  C.corindum  Plantation_Key   M 6.22   3.20  8.42    NA     April 2014.0
## 904  C.corindum  Plantation_Key   F 8.61   3.34  9.23    NA     April 2014.0
## 905  C.corindum  Plantation_Key   M 5.53   2.68  4.67    NA     April 2014.0
## 906  C.corindum  Plantation_Key   M 5.95   2.77  7.40    NA     April 2014.0
## 907  C.corindum  Plantation_Key   F 8.84   3.54  9.38    NA     April 2014.0
## 908  C.corindum  Plantation_Key   M 6.71   3.33  8.67    NA     April 2014.0
## 909  C.corindum  Plantation_Key   F 5.33   2.42  3.87    NA     April 2014.0
## 910  C.corindum  Plantation_Key   M 5.66   3.15  8.44    NA     April 2014.0
## 911  C.corindum  Plantation_Key   M 5.30   2.73  6.66    NA     April 2014.0
## 912  C.corindum       Key_Largo   F 5.79   2.82  4.38    NA     April 2015.0
## 913  C.corindum       Key_Largo   M 5.55   2.58  4.63    NA     April 2015.0
## 914  C.corindum       Key_Largo   M 5.24   2.59  4.36    NA     April 2015.0
## 915  C.corindum       Key_Largo   F 8.72   3.77  9.74 13.58     April 2015.0
## 916  C.corindum       Key_Largo   M 5.28   2.65  4.94    NA     April 2015.0
## 917  C.corindum       Key_Largo   F 6.81   2.89  4.68    NA     April 2015.0
## 918  C.corindum       Key_Largo   M 6.49   3.10  8.72 12.13     April 2015.0
## 919  C.corindum       Key_Largo   M 5.72   2.68  5.71    NA     April 2015.0
## 920  C.corindum       Key_Largo   M 5.49   2.29  3.89    NA     April 2015.0
## 921  C.corindum       Key_Largo   F 6.45   3.19  5.40    NA     April 2015.0
## 922  C.corindum       Key_Largo   F 6.34   2.85  5.02    NA     April 2015.0
## 923  C.corindum       Key_Largo   F 7.12   3.37  5.77    NA     April 2015.0
## 924  C.corindum       Key_Largo   F 7.10   3.21  5.70    NA     April 2015.0
## 925  C.corindum       Key_Largo   F 6.35   3.08  5.10    NA     April 2015.0
## 926  C.corindum       Key_Largo   F 7.51   3.09  8.36 11.87     April 2015.0
## 927  C.corindum       Key_Largo   F 6.52   2.95  5.12    NA     April 2015.0
## 928  C.corindum       Key_Largo   M 5.11   2.51  4.26    NA     April 2015.0
## 929  C.corindum       Key_Largo   F 5.84   2.87  4.61    NA     April 2015.0
## 930  C.corindum       Key_Largo   M 5.61   2.99  8.00 10.98     April 2015.0
## 931  C.corindum       Key_Largo   F 7.15   3.15  5.80    NA     April 2015.0
## 932  C.corindum       Key_Largo   M 5.62   2.77  4.75    NA     April 2015.0
## 933  C.corindum       Key_Largo   M 6.01   2.89  7.56 10.56     April 2015.0
## 934  C.corindum       Key_Largo   F 6.11   2.85  4.41    NA     April 2015.0
## 935  C.corindum       Key_Largo   M 5.62   2.58  6.48  9.26     April 2015.0
## 936  C.corindum       Key_Largo   F 8.37   3.39  8.73 12.00     April 2015.0
## 937  C.corindum       Key_Largo   M 6.54   2.98  7.88 10.44     April 2015.0
## 938  C.corindum       Key_Largo   M 5.96   2.70  4.62    NA     April 2015.0
## 939  C.corindum       Key_Largo   M 5.25   2.45  4.24    NA     April 2015.0
## 940  C.corindum       Key_Largo   M 5.83   2.68  4.98    NA     April 2015.0
## 941  C.corindum       Key_Largo   M 6.42   3.10  8.05 11.16     April 2015.0
## 942  C.corindum       Key_Largo   F 6.94   3.17  5.32    NA     April 2015.0
## 943  C.corindum       Key_Largo   M 5.72   2.63  4.64    NA     April 2015.0
## 944  C.corindum       Key_Largo   M 5.27   2.61  4.75    NA     April 2015.0
## 945  C.corindum       Key_Largo   F 7.08   2.85  4.94    NA     April 2015.0
## 946  C.corindum       Key_Largo   F 6.81   3.03  4.99    NA     April 2015.0
## 947  C.corindum       Key_Largo   M 5.19   2.46  4.20    NA     April 2015.0
## 948  C.corindum       Key_Largo   F 5.99   2.73  4.94    NA     April 2015.0
## 949  C.corindum       Key_Largo   M 5.04   2.41  4.36    NA     April 2015.0
## 950  C.corindum       Key_Largo   F 5.37   2.41  3.93    NA     April 2015.0
## 951  C.corindum       Key_Largo   F 6.60   3.00  5.40    NA     April 2015.0
## 952  C.corindum       Key_Largo   F 6.26   3.06  8.12 11.84     April 2015.0
## 953  C.corindum       Key_Largo   F 6.18   2.76  5.24 12.11     April 2015.0
## 954  C.corindum       Key_Largo   F 8.38   3.33  8.53    NA     April 2015.0
## 955  C.corindum       Key_Largo   M 5.43   2.34  4.38    NA     April 2015.0
## 956  C.corindum       Key_Largo   F 6.57   3.25  5.21 11.65     April 2015.0
## 957  C.corindum       Key_Largo   M 6.42   3.02  8.22 11.73     April 2015.0
## 958  C.corindum       Key_Largo   F 7.34   3.06  8.00    NA     April 2015.0
## 959  C.corindum       Key_Largo   M 5.57   2.66  4.73    NA     April 2015.0
## 960  C.corindum       Key_Largo   M 5.30   2.52  4.61    NA     April 2015.0
## 961  C.corindum       Key_Largo   F 6.12   2.79  4.93    NA     April 2015.0
## 962  C.corindum       Key_Largo   F 7.04   3.13  5.67    NA     April 2015.0
## 963   K.elegans      Lake_Wales   M 5.69   3.21  8.55 11.70     April 2015.0
## 964   K.elegans      Lake_Wales   M 5.36   3.07  8.30 11.87     April 2015.0
## 965   K.elegans      Lake_Wales   F 7.58   3.72 10.72 13.96     April 2015.0
## 966   K.elegans      Lake_Wales   M 5.72   3.09  8.44 11.72     April 2015.0
## 967   K.elegans      Lake_Wales   F 7.98   3.85  9.90 13.90     April 2015.0
## 968   K.elegans      Lake_Wales   M 5.41   3.27  8.33 11.73     April 2015.0
## 969   K.elegans      Lake_Wales   M 5.71   3.16  8.45 11.75     April 2015.0
## 970   K.elegans      Lake_Wales   F 7.41   3.97 10.22 14.70     April 2015.0
## 971   K.elegans      Lake_Wales   M 5.68   3.07  8.26 11.68     April 2015.0
## 972   K.elegans      Lake_Wales   F 6.58   3.44  9.07 12.32     April 2015.0
## 973   K.elegans      Lake_Wales   M 5.16   3.29  8.39 11.17     April 2015.0
## 974   K.elegans      Lake_Wales   M 5.78   2.91  8.54 11.50     April 2015.0
## 975   K.elegans      Lake_Wales   M 5.39   3.30  8.71 11.77     April 2015.0
## 976   K.elegans      Lake_Wales   F 7.43   3.99  9.71 13.85     April 2015.0
## 977   K.elegans      Lake_Wales   M 5.47   3.00  7.91 11.06     April 2015.0
## 978   K.elegans      Lake_Wales   F 8.04   3.74  9.98 13.34     April 2015.0
## 979   K.elegans      Lake_Wales   F 8.07   3.58  9.80 13.50     April 2015.0
## 980   K.elegans      Lake_Wales   F 7.00   3.58  9.63 12.80     April 2015.0
## 981   K.elegans      Lake_Wales   F 6.12   3.38  8.34 12.07     April 2015.0
## 982   K.elegans      Lake_Wales   M 5.18   3.01  8.07 11.43     April 2015.0
## 983   K.elegans      Lake_Wales   F 6.95   3.57  9.18 12.41     April 2015.0
## 984   K.elegans      Lake_Wales   M 5.08   2.86  7.36 10.51     April 2015.0
## 985   K.elegans      Lake_Wales   M 5.34   3.08  8.07 11.58     April 2015.0
## 986   K.elegans      Lake_Wales   F 6.39   3.39  9.17 12.89     April 2015.0
## 987   K.elegans      Lake_Wales   F 6.96   3.60  9.92 12.90     April 2015.0
## 988   K.elegans      Lake_Wales   F 7.27   3.52 10.37 14.36     April 2015.0
## 989   K.elegans      Lake_Wales   M 5.73   3.28  8.74 11.77     April 2015.0
## 990   K.elegans      Lake_Wales   F 6.44   3.65  9.55 12.93     April 2015.0
## 991   K.elegans      Lake_Wales   M 5.51   3.15  8.52 11.53     April 2015.0
## 992   K.elegans      Lake_Wales   M 5.52   3.13  8.55 12.09     April 2015.0
## 993   K.elegans      Lake_Wales   M 5.74   3.17  8.66 12.32     April 2015.0
## 994   K.elegans      Lake_Wales   M 5.73   3.13  8.35 11.64     April 2015.0
## 995   K.elegans      Lake_Wales   F 6.61   3.79  9.87 13.86     April 2015.0
## 996   K.elegans      Lake_Wales   F 7.83   3.76 10.02 13.39     April 2015.0
## 997   K.elegans      Lake_Wales   F 6.76   3.65  9.83 13.23     April 2015.0
## 998   K.elegans      Lake_Wales   F 6.51   3.55  9.43 12.79     April 2015.0
## 999   K.elegans      Lake_Wales   F 7.41   3.52  9.35 12.72     April 2015.0
## 1000  K.elegans      Lake_Wales   M 5.79   3.27  8.72 11.89     April 2015.0
## 1001  K.elegans      Lake_Wales   F 6.89   3.78  9.65 13.05     April 2015.0
## 1002  K.elegans      Lake_Wales   M 5.52   3.19  8.49 11.61     April 2015.0
## 1003  K.elegans      Lake_Wales   M 5.69   3.20  8.51 12.22     April 2015.0
## 1004  K.elegans      Lake_Wales   F 6.97   3.80 10.40 14.15     April 2015.0
## 1005  K.elegans      Lake_Wales   F 6.15   3.54  9.34 12.69       May 2015.0
## 1006  K.elegans      Lake_Wales   M 5.36   3.04  8.26 11.22       May 2015.0
## 1007  K.elegans      Lake_Wales   F 6.51   3.64  9.63 12.93       May 2015.0
## 1008  K.elegans      Lake_Wales   F 6.33   3.36  9.37 12.57       May 2015.0
## 1009  K.elegans      Lake_Wales   M 5.20   3.23  8.21 11.34       May 2015.0
## 1010  K.elegans      Lake_Wales   F 7.71   3.75  9.77 13.89       May 2015.0
## 1011  K.elegans      Lake_Wales   M 5.85   3.16  8.68 12.14       May 2015.0
## 1012  K.elegans      Lake_Wales   F 6.97   3.78 10.06 13.64       May 2015.0
## 1013  K.elegans      Lake_Wales   M 5.86   3.26  8.90 12.17       May 2015.0
## 1014  K.elegans      Lake_Wales   M 5.70   3.08  8.48 11.41       May 2015.0
## 1015  K.elegans      Lake_Wales   F 7.30   3.63 10.48 14.11       May 2015.0
## 1016  K.elegans        Leesburg   F 6.51   3.62  9.11 13.07     April 2015.0
## 1017  K.elegans        Leesburg   M 5.60   3.15  8.81 12.21     April 2015.0
## 1018  K.elegans        Leesburg   M 5.61   3.27  8.95 12.32     April 2015.0
## 1019  K.elegans        Leesburg   F 6.70   3.59  9.92 13.62     April 2015.0
## 1020  K.elegans        Leesburg   F 6.55   3.31 10.00 13.92     April 2015.0
## 1021  K.elegans        Leesburg   F 6.24   3.03  7.78 11.69     April 2015.0
## 1022  K.elegans        Leesburg   M 5.61   3.24  8.84 12.04     April 2015.0
## 1023  K.elegans        Leesburg   M 5.43   3.10  8.81 11.92     April 2015.0
## 1024  K.elegans        Leesburg   M 5.24   2.99  8.75 11.91     April 2015.0
## 1025  K.elegans        Leesburg   F 7.62   3.90  9.97 14.01     April 2015.0
## 1026  K.elegans        Leesburg   F 6.30   3.25  5.92    NA     April 2015.0
## 1027  K.elegans        Leesburg   M 5.08   2.91  8.48 11.56     April 2015.0
## 1028  K.elegans        Leesburg   M 5.57   2.98  8.34 11.42     April 2015.0
## 1029  K.elegans        Leesburg   M 5.36   3.06  8.61 11.84     April 2015.0
## 1030  K.elegans        Leesburg   F 6.61   3.52  9.48 12.67     April 2015.0
## 1031  K.elegans        Leesburg   M 5.58   3.18  9.14 12.34     April 2015.0
## 1032  K.elegans        Leesburg   M 5.81   2.85  8.06 11.18     April 2015.0
## 1033  K.elegans        Leesburg   F 6.37   3.19  8.79 12.44     April 2015.0
## 1034  K.elegans        Leesburg   M 5.56   3.01  8.32 11.28     April 2015.0
## 1035  K.elegans        Leesburg   F 6.00   3.64  9.33 13.11     April 2015.0
## 1036  K.elegans        Leesburg   F 6.38   3.54  9.14 12.76     April 2015.0
## 1037  K.elegans        Leesburg   F 7.39   3.32  9.34 13.13     April 2015.0
## 1038  K.elegans        Leesburg   M 5.84   3.25  9.04 11.79     April 2015.0
## 1039  K.elegans        Leesburg   F 6.18   3.47  9.20 12.49     April 2015.0
## 1040  K.elegans        Leesburg   M 5.09   2.86  7.79 10.79     April 2015.0
## 1041  K.elegans        Leesburg   F 6.47   3.60  7.30    NA     April 2015.0
## 1042  K.elegans        Leesburg   F 7.10   3.45  9.44 13.45     April 2015.0
## 1043  K.elegans        Leesburg   F 6.49   3.63  9.37 12.63     April 2015.0
## 1044  K.elegans        Leesburg   F 6.57   3.63  8.17 12.03     April 2015.0
## 1045  K.elegans        Leesburg   M 5.31   3.08  8.47 11.77     April 2015.0
## 1046  K.elegans        Leesburg   M 5.53   2.80  7.45 10.40     April 2015.0
## 1047  K.elegans        Leesburg   M 5.67   2.87  8.09 11.34     April 2015.0
## 1048  K.elegans        Leesburg   F 5.76   2.74  4.70    NA     April 2015.0
## 1049  K.elegans        Leesburg   M 5.47   3.09  9.42 11.46     April 2015.0
## 1050  K.elegans        Leesburg   M 5.36   3.05  8.37 11.35     April 2015.0
## 1051  K.elegans        Leesburg   M 5.45   3.06  7.94 10.81     April 2015.0
## 1052 C.corindum  Plantation_Key   F 6.79   3.09  5.22 12.33     April 2015.0
## 1053 C.corindum  Plantation_Key   M 6.12   3.34  8.96    NA     April 2015.0
## 1054 C.corindum  Plantation_Key   F 6.39   3.04  4.87    NA     April 2015.0
## 1055 C.corindum  Plantation_Key   F 6.99   3.36  5.82    NA     April 2015.0
## 1056 C.corindum  Plantation_Key   F 6.48   3.05  7.76 11.35     April 2015.0
## 1057 C.corindum  Plantation_Key   F 7.56   3.69  9.26 13.69     April 2015.0
## 1058 C.corindum  Plantation_Key   F 6.79   3.78 10.13 14.07     April 2015.0
## 1059 C.corindum  Plantation_Key   F 6.21   2.77  4.52    NA     April 2015.0
## 1060 C.corindum  Plantation_Key   F 7.57   3.48  9.05 12.59     April 2015.0
## 1061 C.corindum  Plantation_Key   F 7.61   3.33  8.63 11.71     April 2015.0
## 1062 C.corindum  Plantation_Key   F 6.16   2.89  4.26    NA     April 2015.0
## 1063 C.corindum  Plantation_Key   F 7.87   3.56  9.22 12.86     April 2015.0
## 1064  K.elegans     Gainesville   M 5.50   3.26  8.36 11.36  December 2016.0
## 1065  K.elegans     Gainesville   F 7.43   3.47  9.52 12.91  December 2016.0
## 1066  K.elegans     Gainesville   M 5.75   3.09  9.29 12.33  December 2016.0
## 1067  K.elegans     Gainesville   M 5.60   3.01  8.10 11.15  December 2016.0
## 1068  K.elegans     Gainesville   F 7.71   3.15  8.96 12.43  December 2016.0
## 1069  K.elegans     Gainesville   F 7.84   3.89  9.88 13.32  December 2016.0
## 1070  K.elegans     Gainesville   F 7.93   3.79  9.76 13.09  December 2016.0
## 1071  K.elegans     Gainesville   F 8.02   3.56  9.45 12.86  December 2016.0
## 1072  K.elegans     Gainesville   F 7.54   3.59  9.43 13.10  December 2016.0
## 1073  K.elegans     Gainesville   F 7.62   3.59  9.46 13.32  December 2016.0
## 1074  K.elegans     Gainesville   M 5.54   2.99  7.96 10.99  December 2016.0
## 1075  K.elegans     Gainesville   F 7.64   3.57  9.79 13.28  December 2016.0
## 1076  K.elegans     Gainesville   M 6.06   3.24  8.84 12.09  December 2016.0
## 1077  K.elegans     Gainesville   M   NA   3.18  8.62 11.44  December 2016.0
## 1078  K.elegans     Gainesville   M 5.58   3.26  8.89 11.86  December 2016.0
## 1079  K.elegans     Gainesville   F 7.74   3.55  9.97 13.78  December 2016.0
## 1080  K.elegans     Gainesville   M 5.59   2.84  7.59 10.08  December 2016.0
## 1081  K.elegans     Gainesville   F 8.38   3.66  9.55 12.85  December 2016.0
## 1082  K.elegans     Gainesville   F 7.80   3.66  9.47 13.11  December 2016.0
## 1083  K.elegans     Gainesville   M 5.66   2.93  7.91 10.86  December 2016.0
## 1084  K.elegans     Gainesville   F 8.39   3.82 10.53 14.08  December 2016.0
## 1085  K.elegans     Gainesville   F 8.44   3.55  9.76 12.86  December 2016.0
## 1086  K.elegans     Gainesville   M 5.85   3.28  8.91 12.00  December 2016.0
## 1087  K.elegans     Gainesville   M 5.69   3.34  8.93 11.73  December 2016.0
## 1088  K.elegans     Gainesville   M 5.69   3.11  8.10 11.15  December 2016.0
## 1089  K.elegans     Gainesville   M 5.98   3.39  8.57 11.88  December 2016.0
## 1090  K.elegans     Gainesville   M 5.71   3.17  8.54 11.36  December 2016.0
## 1091  K.elegans     Gainesville   F 7.78   3.53  9.61 13.09  December 2016.0
## 1092  K.elegans     Gainesville   M 5.69   3.25  8.40 11.05  December 2016.0
## 1093  K.elegans     Gainesville   M 5.92   3.26  8.76 12.19  December 2016.0
## 1094  K.elegans     Gainesville   F 7.61   3.76  9.96 13.48  December 2016.0
## 1095  K.elegans     Gainesville   F 7.79   3.41  9.13 12.47  December 2016.0
## 1096  K.elegans     Gainesville   M 5.82   3.14  7.81 10.89  December 2016.0
## 1097  K.elegans     Gainesville   F 7.81   3.52  9.29 12.46  December 2016.0
## 1098  K.elegans     Gainesville   M 5.49   3.03  6.39  9.49  December 2016.0
## 1099  K.elegans     Gainesville   M 6.00   3.40  8.84 12.06  December 2016.0
## 1100  K.elegans     Gainesville   M 5.55   2.86  7.60 10.66  December 2016.0
## 1101  K.elegans     Gainesville   F 8.03   3.73  9.82 13.22  December 2016.0
## 1102  K.elegans     Gainesville   M 5.63   3.13  8.80 12.03  December 2016.0
## 1103  K.elegans     Gainesville   F 7.57   3.50  9.12 12.60  December 2016.0
## 1104  K.elegans     Gainesville   M 5.78   3.09  8.61 11.58  December 2016.0
## 1105  K.elegans     Gainesville   F 7.35   3.31  8.74 12.00  December 2016.0
## 1106  K.elegans     Gainesville   F 7.97   3.30  8.81 11.89  December 2016.0
## 1107  K.elegans     Gainesville   F 6.77   3.05  4.89  8.06  December 2016.0
## 1108  K.elegans     Gainesville   F 8.01   3.82 10.64 13.75  December 2016.0
## 1109  K.elegans     Gainesville   F 7.95   3.51  9.81 13.29  December 2016.0
## 1110  K.elegans     Gainesville   M 5.65   2.57  5.91  8.84  December 2016.0
## 1111  K.elegans     Gainesville   M 6.16   3.07  8.29 12.09  December 2016.0
## 1112  K.elegans     Gainesville   F 7.89   3.60  9.79 13.37  December 2016.0
## 1113  K.elegans     Gainesville   F 7.81   3.42  8.80 12.17  December 2016.0
## 1114  K.elegans     Gainesville   F 7.03   2.96  7.49 10.72  December 2016.0
## 1115  K.elegans     Gainesville   M 5.83   3.01  9.26 12.29  December 2016.0
## 1116  K.elegans     Gainesville   M 6.14   3.14  8.97 11.88  December 2016.0
## 1117  K.elegans     Gainesville   M 5.62   3.00  8.66 11.48  December 2016.0
## 1118  K.elegans     Gainesville   M 5.94   3.45  9.39 11.96  December 2016.0
## 1119  K.elegans     Gainesville   F 7.90   3.51  9.57 13.03  December 2016.0
## 1120  K.elegans     Gainesville   M 5.59   2.88  7.90 10.79  December 2016.0
## 1121  K.elegans       Homestead   M 5.32   3.20  8.96 11.63  December 2016.0
## 1122  K.elegans       Homestead   M 5.16   2.87  4.64    NA  December 2016.0
## 1123  K.elegans       Homestead   M 5.09   2.89  4.92    NA  December 2016.0
## 1124  K.elegans       Homestead   M 5.90   3.28  8.73 11.63  December 2016.0
## 1125  K.elegans       Homestead   M 5.60   3.29  9.05 12.18  December 2016.0
## 1126  K.elegans       Homestead   F 5.91   3.39  5.65    NA  December 2016.0
## 1127  K.elegans       Homestead   F 6.73   3.66 10.21 13.65  December 2016.0
## 1128  K.elegans       Homestead   M 5.42   2.95  8.12 10.88  December 2016.0
## 1129  K.elegans       Homestead   M 5.26   2.85  4.74    NA  December 2016.0
## 1130  K.elegans       Homestead   M 5.18   3.14  8.57 11.31  December 2016.0
## 1131  K.elegans       Homestead   M 5.25   3.16  9.13 11.74  December 2016.0
## 1132  K.elegans       Homestead   M 5.43   3.20  9.02 11.83  December 2016.0
## 1133  K.elegans       Homestead   M 5.45   3.23  8.83 11.76  December 2016.0
## 1134 C.corindum North_Key_Largo   F 8.39   3.65  9.64 13.45  December 2016.0
## 1135 C.corindum North_Key_Largo   F 9.02   3.49  9.08 12.69  December 2016.0
## 1136 C.corindum North_Key_Largo   M 7.09   3.51  9.34 12.27  December 2016.0
## 1137 C.corindum North_Key_Largo   M 5.43   2.76  4.78  7.69  December 2016.0
## 1138 C.corindum North_Key_Largo   M 6.06   2.96  8.25 11.32  December 2016.0
## 1139 C.corindum North_Key_Largo   F 6.88   3.00  5.55  8.81  December 2016.0
## 1140 C.corindum North_Key_Largo   M 5.89   2.96  8.23 11.47  December 2016.0
## 1141 C.corindum North_Key_Largo   F 8.44   3.67  9.36 13.11  December 2016.0
## 1142 C.corindum North_Key_Largo   F 8.02   3.48  9.47 12.89  December 2016.0
## 1143 C.corindum North_Key_Largo   F 8.10   3.24  7.81 11.16  December 2016.0
## 1144 C.corindum North_Key_Largo   F 7.77   3.94 10.13 13.51  December 2016.0
## 1145 C.corindum North_Key_Largo   F 6.96   2.96  5.47  8.81  December 2016.0
## 1146 C.corindum North_Key_Largo   F 6.13   2.74  6.20  9.51  December 2016.0
## 1147 C.corindum North_Key_Largo   M 5.94   2.80  7.88 10.75  December 2016.0
## 1148 C.corindum North_Key_Largo   M 6.60   3.22  8.14 11.48  December 2016.0
## 1149 C.corindum North_Key_Largo   M 6.54   3.34  8.72 11.91  December 2016.0
## 1150 C.corindum North_Key_Largo   M 6.39   3.11  8.44 11.63  December 2016.0
## 1151 C.corindum North_Key_Largo   M 5.87   3.00  7.74 10.71  December 2016.0
## 1152 C.corindum North_Key_Largo   F 7.32   3.56  9.48 12.67  December 2016.0
## 1153 C.corindum North_Key_Largo   M 6.45   3.02  7.67 11.22  December 2016.0
## 1154 C.corindum North_Key_Largo   M 6.21   3.21  8.72 11.74  December 2016.0
## 1155 C.corindum North_Key_Largo   F 6.84   3.12  5.16  8.64  December 2016.0
## 1156 C.corindum North_Key_Largo   M 6.24   3.51  8.32 11.68  December 2016.0
## 1157 C.corindum North_Key_Largo   F 7.23   3.17  5.37  8.72  December 2016.0
## 1158 C.corindum North_Key_Largo   F 8.77   3.47  9.25 12.35  December 2016.0
## 1159 C.corindum North_Key_Largo   M 5.56   2.80  5.64  8.63  December 2016.0
## 1160 C.corindum North_Key_Largo   F 7.70   3.78  9.35 12.94  December 2016.0
## 1161 C.corindum North_Key_Largo   F 6.89   3.68  9.41 12.99  December 2016.0
## 1162 C.corindum North_Key_Largo   M 6.34   3.02  8.09 11.21  December 2016.0
## 1163 C.corindum North_Key_Largo   M 6.36   3.24  8.55 11.83  December 2016.0
## 1164 C.corindum North_Key_Largo   M 6.78   3.41  8.51 11.84  December 2016.0
## 1165 C.corindum North_Key_Largo   M 6.45   3.33  8.36 11.34  December 2016.0
## 1166 C.corindum North_Key_Largo   F 8.79   3.56  9.04 12.25  December 2016.0
## 1167 C.corindum North_Key_Largo   F 6.61   3.60  9.55 13.07  December 2016.0
## 1168 C.corindum North_Key_Largo   F 6.49   2.69  4.59  7.81  December 2016.0
## 1169 C.corindum North_Key_Largo   M 6.46   3.11  8.67 11.52  December 2016.0
## 1170 C.corindum North_Key_Largo   F 7.08   2.89  4.92  7.86  December 2016.0
## 1171 C.corindum North_Key_Largo   M 5.40   2.15  4.80  7.50  December 2016.0
## 1172 C.corindum North_Key_Largo   F 6.85   3.12  5.25  8.55  December 2016.0
## 1173 C.corindum North_Key_Largo   M 6.18   3.27  8.45 11.48  December 2016.0
## 1174 C.corindum North_Key_Largo   F 9.26   3.59  9.31 12.57  December 2016.0
## 1175 C.corindum North_Key_Largo   F 7.59   3.30  7.22 10.41  December 2016.0
## 1176 C.corindum North_Key_Largo   F 7.96   3.35  8.84 12.22  December 2016.0
## 1177 C.corindum North_Key_Largo   F 7.10   3.53  8.77 12.39  December 2016.0
## 1178 C.corindum North_Key_Largo   M 5.56   3.25  8.62 11.38  December 2016.0
## 1179 C.corindum North_Key_Largo   M 5.42   2.84  4.81  7.95  December 2016.0
## 1180 C.corindum North_Key_Largo   M 6.37   3.24  9.04 12.10  December 2016.0
## 1181 C.corindum North_Key_Largo   M 6.05   2.87  6.30  9.29  December 2016.0
## 1182 C.corindum North_Key_Largo   F 7.45   3.32  8.24 11.54  December 2016.0
## 1183 C.corindum North_Key_Largo   M 5.98   2.89  7.77 10.64  December 2016.0
## 1184 C.corindum North_Key_Largo   M 6.25   3.11  8.29 11.44  December 2016.0
## 1185 C.corindum North_Key_Largo   M 5.69   2.80  7.57 10.44  December 2016.0
## 1186 C.corindum North_Key_Largo   M 6.84   3.11  8.11 11.37  December 2016.0
## 1187 C.corindum       Key_Largo   F 8.39   3.69  8.74 12.48  December 2016.0
## 1188 C.corindum       Key_Largo   M 5.92   2.95  8.19 11.18  December 2016.0
## 1189 C.corindum       Key_Largo   M 6.25   3.00  7.84 10.85  December 2016.0
## 1190 C.corindum       Key_Largo   M 6.08   3.02  6.15    NA  December 2016.0
## 1191 C.corindum       Key_Largo   M 6.12   3.17  7.80 10.84  December 2016.0
## 1192 C.corindum       Key_Largo   M 6.82   3.41  8.92 12.31  December 2016.0
## 1193 C.corindum       Key_Largo   F 6.73   3.78  8.17    NA  December 2016.0
## 1194 C.corindum       Key_Largo   F 7.61   3.45  9.18 12.22  December 2016.0
## 1195 C.corindum       Key_Largo   F 7.10   3.70  7.92    NA  December 2016.0
## 1196 C.corindum       Key_Largo   F 8.13   3.30  8.40 11.34  December 2016.0
## 1197 C.corindum       Key_Largo   M 6.81   3.21  8.61 11.55  December 2016.0
## 1198  K.elegans      Lake_Wales   F 7.24   3.30  8.97 12.51  December 2016.0
## 1199  K.elegans      Lake_Wales   F 7.11   3.30  8.52 11.84  December 2016.0
## 1200  K.elegans      Lake_Wales   M 5.59   2.83  7.86 10.91  December 2016.0
## 1201  K.elegans      Lake_Wales   F 7.37   3.22  9.18 12.54  December 2016.0
## 1202  K.elegans      Lake_Wales   M 5.35   2.80  8.07 10.90  December 2016.0
## 1203  K.elegans      Lake_Wales   M 5.64   3.11  8.36 11.22  December 2016.0
## 1204  K.elegans      Lake_Wales   F 7.45   3.45  9.46 12.48  December 2016.0
## 1205  K.elegans      Lake_Wales   F 6.72   3.47  6.50 10.22  December 2016.0
## 1206  K.elegans      Lake_Wales   M 5.58   3.17  8.70 11.49  December 2016.0
## 1207  K.elegans      Lake_Wales   M 5.37   3.06  8.67 11.34  December 2016.0
## 1208  K.elegans      Lake_Wales   F 7.08   3.27  8.67 11.97  December 2016.0
## 1209  K.elegans      Lake_Wales   M 5.36   2.76  7.69 10.28  December 2016.0
## 1210  K.elegans      Lake_Wales   M 5.97   3.01  8.45 11.27  December 2016.0
## 1211  K.elegans      Lake_Wales   M 5.67   2.85  8.04 10.79  December 2016.0
## 1212  K.elegans      Lake_Wales   M 5.68   2.90  7.99 10.83  December 2016.0
## 1213  K.elegans        Leesburg   M 5.91   3.23  8.92 11.90  December 2016.0
## 1214  K.elegans        Leesburg   F 7.76   3.37  9.75 13.01  December 2016.0
## 1215  K.elegans        Leesburg   F 7.25   3.33  8.91 12.45  December 2016.0
## 1216  K.elegans        Leesburg   M 5.28   2.82  8.22 10.79  December 2016.0
## 1217  K.elegans        Leesburg   F 6.42   3.38  9.35 12.13  December 2016.0
## 1218  K.elegans        Leesburg   M 5.69   3.01  8.40 11.07  December 2016.0
## 1219  K.elegans        Leesburg   M 5.47   2.70  8.12 10.89  December 2016.0
## 1220  K.elegans        Leesburg   F 6.87   3.44  9.77 13.39  December 2016.0
## 1221  K.elegans        Leesburg   M 5.54   2.87  8.35 11.27  December 2016.0
## 1222  K.elegans        Leesburg   M 5.43   2.73  8.08 10.65  December 2016.0
## 1223  K.elegans        Leesburg   M 5.61   3.02  8.57 11.34  December 2016.0
## 1224  K.elegans        Leesburg   M 5.32   2.89  8.12 10.62  December 2016.0
## 1225  K.elegans        Leesburg   M 5.84   3.24  9.18 11.99  December 2016.0
## 1226  K.elegans        Leesburg   M 5.62   3.02  9.06 12.18  December 2016.0
## 1227  K.elegans        Leesburg   M 5.82   3.11  9.08 12.40  December 2016.0
## 1228  K.elegans        Leesburg   M 5.19   2.58  8.07 10.78  December 2016.0
## 1229  K.elegans        Leesburg   M 5.69   3.07  8.80 11.87  December 2016.0
## 1230  K.elegans        Leesburg   F 7.25   3.32  9.00 12.03  December 2016.0
## 1231  K.elegans        Leesburg   M 5.36   3.03  8.27 11.44  December 2016.0
## 1232  K.elegans        Leesburg   M 5.58   2.91  8.73 11.47  December 2016.0
## 1233  K.elegans        Leesburg   M 5.83   3.45  8.51 11.70  December 2016.0
## 1234  K.elegans        Leesburg   F 7.66   3.54  9.83 13.52  December 2016.0
## 1235  K.elegans        Leesburg   F 7.81   3.45  9.01 12.58  December 2016.0
## 1236  K.elegans        Leesburg   F 7.62   3.66  9.26 12.79  December 2016.0
## 1237  K.elegans        Leesburg   F 7.63   3.58  9.32 12.70  December 2016.0
## 1238  K.elegans        Leesburg   F 7.37   3.45  9.65 13.04  December 2016.0
## 1239  K.elegans        Leesburg   F 7.47   3.84 10.54 14.37  December 2016.0
## 1240  K.elegans        Leesburg   M 5.64   3.05  8.83 11.81  December 2016.0
## 1241  K.elegans        Leesburg   F 7.67   3.45  9.38 12.64  December 2016.0
## 1242  K.elegans        Leesburg   F 7.54   3.30  9.39 12.72  December 2016.0
## 1243  K.elegans        Leesburg   F 6.91   3.40  9.19 12.07  December 2016.0
## 1244  K.elegans        Leesburg   F 5.87   3.27  5.86  9.44  December 2016.0
## 1245  K.elegans        Leesburg   M 5.78   3.28  8.31 11.40  December 2016.0
## 1246  K.elegans        Leesburg   M 5.94   2.86  8.10 10.60  December 2016.0
## 1247  K.elegans        Leesburg   F 7.38   3.26  9.00 12.16  December 2016.0
## 1248  K.elegans        Leesburg   M 5.71   2.96  8.19 11.03  December 2016.0
## 1249  K.elegans        Leesburg   M 5.56   3.10  7.93 10.61  December 2016.0
## 1250  K.elegans        Leesburg   F 7.57   3.48  9.30 12.87  December 2016.0
## 1251  K.elegans        Leesburg   F 7.84   3.63  9.71 13.17  December 2016.0
## 1252  K.elegans        Leesburg   F 6.96   3.18  9.46 12.48  December 2016.0
## 1253  K.elegans        Leesburg   F 6.59   3.05    NA    NA  December 2016.0
## 1254  K.elegans        Leesburg   M 5.57   3.25  8.13 11.07  December 2016.0
## 1255  K.elegans        Leesburg   M 5.77   3.38  9.54 12.29  December 2016.0
## 1256  K.elegans        Leesburg   F 8.46   3.99 10.60 14.32  December 2016.0
## 1257  K.elegans        Leesburg   M 5.29   2.84  7.65 10.39  December 2016.0
## 1258  K.elegans        Leesburg   M 5.65   3.24  8.16 11.31  December 2016.0
## 1259  K.elegans        Leesburg   F 7.78   3.48  9.32 12.56  December 2016.0
## 1260  K.elegans        Leesburg   F 7.74   3.47  9.79 13.20  December 2016.0
## 1261  K.elegans        Leesburg   F 7.44   3.29  8.65 12.28  December 2016.0
## 1262  K.elegans        Leesburg   F 7.95   3.90  9.89 13.58  December 2016.0
## 1263  K.elegans        Leesburg   F 7.03   3.24  8.41 11.73  December 2016.0
## 1264  K.elegans        Leesburg   M 5.34   3.01  8.24 11.57  December 2016.0
## 1265  K.elegans        Leesburg   F 7.85   3.49  9.56 12.87  December 2016.0
## 1266  K.elegans        Leesburg   M 5.51   3.10  8.46 11.39  December 2016.0
## 1267  K.elegans        Leesburg   M 5.53   2.93  7.87 10.89  December 2016.0
## 1268  K.elegans        Leesburg   F 8.14   3.60  9.86 13.38  December 2016.0
## 1269  K.elegans        Leesburg   F 7.57   3.59  9.45 12.59  December 2016.0
## 1270  K.elegans        Leesburg   M 5.75   2.99  8.31 11.22  December 2016.0
## 1271  K.elegans        Leesburg   F 7.08   3.28  8.82 12.31  December 2016.0
## 1272  K.elegans        Leesburg   M 5.80   3.02  8.09 11.35  December 2016.0
## 1273  K.elegans        Leesburg   M 5.71   3.11  8.65 11.50  December 2016.0
## 1274  K.elegans        Leesburg   M 5.96   3.13  9.04 11.73  December 2016.0
## 1275  K.elegans        Leesburg   M 5.80   3.16  8.35 11.48  December 2016.0
## 1276  K.elegans        Leesburg   M 5.76   3.13  8.55 11.54  December 2016.0
## 1277  K.elegans        Leesburg   M 5.36   3.01  8.16 11.00  December 2016.0
## 1278 C.corindum  Plantation_Key   M 5.74   2.88  5.84  8.81  December 2016.0
## 1279 C.corindum  Plantation_Key   M 6.08   3.07  8.34 11.39  December 2016.0
## 1280 C.corindum  Plantation_Key   M 6.01   2.91  8.53 11.43  December 2016.0
## 1281 C.corindum  Plantation_Key   M 5.52   2.71  4.53  7.49  December 2016.0
## 1282 C.corindum  Plantation_Key   F 7.97   3.46  9.34 12.57  December 2016.0
## 1283 C.corindum  Plantation_Key   M 5.99   3.11  8.52 11.44  December 2016.0
## 1284 C.corindum  Plantation_Key   F 6.38   2.93  5.27  8.78  December 2016.0
## 1285 C.corindum  Plantation_Key   M 5.29   2.81  7.84 10.53  December 2016.0
## 1286 C.corindum  Plantation_Key   F 8.61   3.57  9.31 12.50  December 2016.0
## 1287 C.corindum  Plantation_Key   F 6.55   2.91  5.08  8.44  December 2016.0
## 1288 C.corindum  Plantation_Key   F 7.50   3.12  8.53 11.87  December 2016.0
## 1289 C.corindum  Plantation_Key   F 6.41   3.04  5.56  8.70  December 2016.0
## 1290 C.corindum  Plantation_Key   M 5.67   2.83  4.47  7.95  December 2016.0
## 1291 C.corindum  Plantation_Key   F 6.24   2.86  5.17  8.67  December 2016.0
## 1292 C.corindum  Plantation_Key   F 6.58   3.13  5.72  9.55  December 2016.0
## 1293 C.corindum  Plantation_Key   F 8.05   3.24  8.63 12.11  December 2016.0
## 1294 C.corindum  Plantation_Key   M 5.74   3.03  7.24 10.23  December 2016.0
## 1295 C.corindum  Plantation_Key   F 8.89   3.63  9.78 13.30  December 2016.0
## 1296 C.corindum  Plantation_Key   F 7.93   3.22  9.41 12.58  December 2016.0
## 1297 C.corindum  Plantation_Key   F 7.88   3.61 10.08 13.71  December 2016.0
## 1298 C.corindum  Plantation_Key   F 6.72   3.19  4.89  8.62  December 2016.0
## 1299 C.corindum  Plantation_Key   F 6.28   2.93  5.10  8.38  December 2016.0
## 1300 C.corindum  Plantation_Key   M 5.89   2.82  8.18 11.14  December 2016.0
## 1301 C.corindum  Plantation_Key   F 7.34   3.20  6.99 10.12  December 2016.0
## 1302 C.corindum  Plantation_Key   M 5.58   2.72  4.67  7.77  December 2016.0
## 1303 C.corindum  Plantation_Key   M 5.88   2.65  7.23  9.97  December 2016.0
## 1304 C.corindum  Plantation_Key   M 6.04   3.03  7.82 10.65  December 2016.0
## 1305 C.corindum  Plantation_Key   F 6.54   2.94  6.09  9.37  December 2016.0
## 1306 C.corindum  Plantation_Key   F 7.30   3.30  8.84 12.17  December 2016.0
## 1307 C.corindum  Plantation_Key   M 5.92   2.99  7.88 10.97  December 2016.0
## 1308 C.corindum  Plantation_Key   M 6.73   3.45  8.99 12.31  December 2016.0
## 1309 C.corindum  Plantation_Key   M 5.37   2.69  7.03  9.69  December 2016.0
## 1310 C.corindum  Plantation_Key   M 6.31   3.06  8.33 11.30  December 2016.0
## 1311 C.corindum  Plantation_Key   M 6.11   2.97  7.86 10.74  December 2016.0
## 1312 C.corindum  Plantation_Key   M 5.30   2.29  3.79  6.71  December 2016.0
## 1313 C.corindum  Plantation_Key   F 6.54   3.02  4.94  8.47  December 2016.0
## 1314 C.corindum  Plantation_Key   M 5.90   2.89  7.57 10.37  December 2016.0
## 1315  K.elegans     Gainesville   M 5.92   3.08  8.53 11.48    August 2017.0
## 1316  K.elegans     Gainesville   M 5.57   2.98  8.21 11.43    August 2017.0
## 1317  K.elegans     Gainesville   F 7.84   3.57  9.31 12.80    August 2017.0
## 1318  K.elegans     Gainesville   F 6.76   2.97  6.83 10.16    August 2017.0
## 1319  K.elegans     Gainesville   M 5.73   3.10  8.73 11.91    August 2017.0
## 1320  K.elegans     Gainesville   M 5.59   2.67  7.42 10.22    August 2017.0
## 1321  K.elegans     Gainesville   F 6.62   2.79  6.21  9.58    August 2017.0
## 1322  K.elegans     Gainesville   F 6.40   3.22  8.52 11.83    August 2017.0
## 1323  K.elegans     Gainesville   F 6.84   3.61  9.66 12.85    August 2017.0
## 1324  K.elegans     Gainesville   M 5.80   3.18  8.77 12.05    August 2017.0
## 1325  K.elegans     Gainesville   M 5.69   3.05  8.19 11.34    August 2017.0
## 1326  K.elegans     Gainesville   M 5.44   2.80  7.65 10.58    August 2017.0
## 1327  K.elegans     Gainesville   F 7.53   3.33  8.69 11.96    August 2017.0
## 1328  K.elegans     Gainesville   F 6.69   3.51  9.35 12.90    August 2017.0
## 1329  K.elegans     Gainesville   M 5.67   2.87  8.20 11.05    August 2017.0
## 1330  K.elegans     Gainesville   M 5.48   2.96  7.91 10.97    August 2017.0
## 1331  K.elegans     Gainesville   F 6.75   2.99  6.25  9.72    August 2017.0
## 1332  K.elegans     Gainesville   F 7.34   3.51  9.05 12.46    August 2017.0
## 1333  K.elegans     Gainesville   F 6.73   3.35  8.46 12.03    August 2017.0
## 1334  K.elegans     Gainesville   F 7.18   3.16  8.60 12.03    August 2017.0
## 1335  K.elegans     Gainesville   F 8.99   3.80 10.70 14.25    August 2017.0
## 1336  K.elegans     Gainesville   F 7.06   3.34  8.79 12.06    August 2017.0
## 1337  K.elegans     Gainesville   M 5.39   2.81  7.89 10.62    August 2017.0
## 1338  K.elegans     Gainesville   M 5.56   2.92  7.81 10.51    August 2017.0
## 1339  K.elegans     Gainesville   M 5.66   2.98  8.13 11.11    August 2017.0
## 1340  K.elegans     Gainesville   M 5.67   2.83  6.07  9.21    August 2017.0
## 1341  K.elegans     Gainesville   F 7.65   3.46  9.35 12.88    August 2017.0
## 1342  K.elegans     Gainesville   F 7.47   3.27  7.99 11.70    August 2017.0
## 1343  K.elegans     Gainesville   M 5.60   2.97  8.06 10.96    August 2017.0
## 1344  K.elegans     Gainesville   F 7.11   3.19  8.55 11.78    August 2017.0
## 1345  K.elegans     Gainesville   F 7.03   3.30  8.85 12.31    August 2017.0
## 1346  K.elegans     Gainesville   F 7.48   3.55  9.14 12.64    August 2017.0
## 1347  K.elegans     Gainesville   M 5.87   3.17  8.08 11.19    August 2017.0
## 1348  K.elegans     Gainesville   M 5.50   3.04  8.48 11.37    August 2017.0
## 1349  K.elegans     Gainesville   M 5.95   3.27  8.95 12.13    August 2017.0
## 1350  K.elegans     Gainesville   M 5.25   2.90  7.83 11.04    August 2017.0
## 1351  K.elegans     Gainesville   F 6.84   3.58  9.81 13.52    August 2017.0
## 1352  K.elegans     Gainesville   F 7.43   3.45  9.42 12.99    August 2017.0
## 1353  K.elegans     Gainesville   M 5.46   3.03  8.37 11.48    August 2017.0
## 1354  K.elegans     Gainesville   M 5.92   2.91  7.79 10.71    August 2017.0
## 1355  K.elegans     Gainesville   F 7.82   3.55  9.68 13.31    August 2017.0
## 1356  K.elegans     Gainesville   M 5.68   3.31  8.98 12.32    August 2017.0
## 1357  K.elegans     Gainesville   F 7.85   3.54  9.65 12.38    August 2017.0
## 1358  K.elegans     Gainesville   F 6.38   2.84  4.82  8.36    August 2017.0
## 1359  K.elegans     Gainesville   M 5.37   3.03  8.44 11.02    August 2017.0
## 1360  K.elegans     Gainesville   F 8.10   3.60  9.91 13.67    August 2017.0
## 1361  K.elegans     Gainesville   M 5.48   2.97  8.37 11.40    August 2017.0
## 1362  K.elegans     Gainesville   M 5.62   2.93  8.18 11.02    August 2017.0
## 1363  K.elegans     Gainesville   F 7.08   3.33  8.85 12.11    August 2017.0
## 1364  K.elegans     Gainesville   M 5.44   2.86  7.20  9.91    August 2017.0
## 1365  K.elegans     Gainesville   M 5.47   3.14  8.59 11.77    August 2017.0
## 1366  K.elegans     Gainesville   F 7.67   3.49  9.80 13.48    August 2017.0
## 1367  K.elegans     Gainesville   M 5.67   3.08  8.41 11.17    August 2017.0
## 1368  K.elegans     Gainesville   F 8.56   3.55  9.73 13.25    August 2017.0
## 1369  K.elegans     Gainesville   F 6.92   3.44  8.95 12.66    August 2017.0
## 1370  K.elegans     Gainesville   M 5.83   2.87  7.83 10.82    August 2017.0
## 1371  K.elegans     Gainesville   F 7.11   3.42  8.95 12.28    August 2017.0
## 1372  K.elegans     Gainesville   F 7.46   3.51  9.30 12.71    August 2017.0
## 1373  K.elegans     Gainesville   M 5.28   2.68  7.70 10.47    August 2017.0
## 1374  K.elegans     Gainesville   M 5.34   2.68  5.96  8.92    August 2017.0
## 1375  K.elegans       Homestead   M 5.80   3.21  8.46 11.62    August 2017.0
## 1376  K.elegans       Homestead   F 7.05   3.04  6.30  9.60    August 2017.0
## 1377  K.elegans       Homestead   F 7.39   3.46  9.09 12.39    August 2017.0
## 1378  K.elegans       Homestead   M 6.02   3.24  8.55 11.33    August 2017.0
## 1379  K.elegans       Homestead   F 6.39   2.96  4.93  8.04    August 2017.0
## 1380  K.elegans       Homestead   F 7.83   3.43  9.25 12.60    August 2017.0
## 1381  K.elegans       Homestead   F 8.89   3.90  9.99 13.76    August 2017.0
## 1382  K.elegans       Homestead   F 7.86   3.58  8.99 12.49    August 2017.0
## 1383  K.elegans       Homestead   M 5.68   3.00  8.08 10.99    August 2017.0
## 1384  K.elegans       Homestead   M 5.48   2.79  7.98 10.65    August 2017.0
## 1385  K.elegans       Homestead   M 5.78   2.99  8.22 11.16    August 2017.0
## 1386  K.elegans       Homestead   F 8.81   3.74 10.08 13.82    August 2017.0
## 1387  K.elegans       Homestead   M 5.90   3.18  8.18 11.30    August 2017.0
## 1388  K.elegans       Homestead   F 7.85   3.46  9.00 12.34    August 2017.0
## 1389  K.elegans       Homestead   M 5.99   3.22  8.19 11.34    August 2017.0
## 1390  K.elegans       Homestead   M 5.89   3.14  8.51 11.60    August 2017.0
## 1391  K.elegans       Homestead   M 5.68   2.84  7.25 10.43    August 2017.0
## 1392  K.elegans       Homestead   M 5.71   2.95  7.97 10.84    August 2017.0
## 1393  K.elegans       Homestead   F 6.05   2.96  5.20  8.49    August 2017.0
## 1394  K.elegans       Homestead   M 5.95   3.20  8.29 11.55    August 2017.0
## 1395  K.elegans       Homestead   M 5.88   3.31  9.01 12.33    August 2017.0
## 1396  K.elegans       Homestead   F 7.43   3.14  8.55 11.90    August 2017.0
## 1397  K.elegans       Homestead   M 6.10   3.28  8.68 11.80    August 2017.0
## 1398  K.elegans       Homestead   M 6.02   3.29  8.93 12.16    August 2017.0
## 1399  K.elegans       Homestead   F 7.89   3.54  9.28 12.84    August 2017.0
## 1400  K.elegans       Homestead   M 6.08   3.46  8.94 11.94    August 2017.0
## 1401  K.elegans       Homestead   M 6.29   3.49  9.01 12.29    August 2017.0
## 1402  K.elegans       Homestead   M 5.63   3.10  7.92 10.91    August 2017.0
## 1403  K.elegans       Homestead   M 5.84   2.71  4.63  7.42    August 2017.0
## 1404  K.elegans       Homestead   M 5.95   3.18  8.97 12.01    August 2017.0
## 1405  K.elegans       Homestead   F 7.95   3.48  9.70 13.37    August 2017.0
## 1406  K.elegans       Homestead   F 7.56   3.40  8.15 12.18    August 2017.0
## 1407  K.elegans       Homestead   M 5.38   2.92  6.92  9.71    August 2017.0
## 1408  K.elegans       Homestead   M 5.36   2.74  5.75  8.76    August 2017.0
## 1409  K.elegans       Homestead   F 8.61   3.86 10.35 13.76    August 2017.0
## 1410  K.elegans       Homestead   F 7.69   3.44  9.22 12.66    August 2017.0
## 1411  K.elegans       Homestead   M 6.06   2.83  7.57 10.48    August 2017.0
## 1412  K.elegans       Homestead   M 6.13   3.27  9.02 11.98    August 2017.0
## 1413  K.elegans       Homestead   F 7.26   3.26  8.58 11.58    August 2017.0
## 1414  K.elegans       Homestead   F 8.12   3.49  9.35 13.06    August 2017.0
## 1415  K.elegans       Homestead   M 5.61   2.89  7.78 10.63    August 2017.0
## 1416  K.elegans       Homestead   F 8.63   3.88 10.09 13.61    August 2017.0
## 1417  K.elegans       Homestead   F 7.59   3.72  9.17 12.71    August 2017.0
## 1418  K.elegans       Homestead   F 5.97   2.82  4.48  7.75    August 2017.0
## 1419  K.elegans       Homestead   M 5.42   2.81  7.66 10.58    August 2017.0
## 1420  K.elegans       Homestead   F 7.54   3.30  9.21 12.52    August 2017.0
## 1421  K.elegans       Homestead   F 8.03   3.55  9.33 12.75    August 2017.0
## 1422  K.elegans       Homestead   M 5.71   2.93  7.47 10.63    August 2017.0
## 1423  K.elegans       Homestead   F 8.36   3.54  9.73 13.10    August 2017.0
## 1424  K.elegans       Homestead   F 8.13   3.57  9.59 12.98    August 2017.0
## 1425  K.elegans       Homestead   M 5.96   3.22  8.88 11.78    August 2017.0
## 1426  K.elegans       Homestead   F 7.46   3.39  9.62 12.76    August 2017.0
## 1427  K.elegans       Homestead   M 5.65   3.13  8.47 11.50    August 2017.0
## 1428  K.elegans       Homestead   F 7.49   3.43  9.13 12.26    August 2017.0
## 1429  K.elegans       Homestead   F 8.49   3.95 10.46 14.13    August 2017.0
## 1430  K.elegans       Homestead   F 7.61   3.53  9.00 11.89    August 2017.0
## 1431  K.elegans       Homestead   F 6.95   3.32  8.99 12.18    August 2017.0
## 1432  K.elegans       Homestead   M 5.76   3.12  8.63 11.80    August 2017.0
## 1433  K.elegans       Homestead   F 8.66   3.94 10.97 14.80    August 2017.0
## 1434  K.elegans       Homestead   F 8.79   3.92 10.20 13.80    August 2017.0
## 1435  K.elegans       Homestead   F 8.29   3.95 10.72 14.11    August 2017.0
## 1436  K.elegans       Homestead   M 5.81   3.40  9.35 12.42    August 2017.0
## 1437  K.elegans       Homestead   M 5.88   3.37  8.93 11.73    August 2017.0
## 1438  K.elegans       Homestead   F 8.76   4.02 10.54 14.41    August 2017.0
## 1439  K.elegans       Homestead   M 6.02   3.10  8.54 11.67    August 2017.0
## 1440  K.elegans       Homestead   M 6.07   3.26  8.94 12.04    August 2017.0
## 1441  K.elegans       Homestead   M 6.10   3.25  8.98 12.14    August 2017.0
## 1442  K.elegans       Homestead   M 6.11   3.29  8.55 11.61    August 2017.0
## 1443  K.elegans       Homestead   M 5.71   3.09  8.73 11.55    August 2017.0
## 1444  K.elegans       Homestead   M 5.88   3.11  8.59 11.26    August 2017.0
## 1445  K.elegans       Homestead   F 8.35   4.13 10.51 13.98    August 2017.0
## 1446  K.elegans       Homestead   F 8.46   3.81 10.46 14.05    August 2017.0
## 1447  K.elegans       Homestead   M 5.63   3.03  7.93 10.62    August 2017.0
## 1448  K.elegans       Homestead   M 5.70   3.17  8.76 11.99    August 2017.0
## 1449  K.elegans       Homestead   F 8.05   3.95 10.64 13.99    August 2017.0
## 1450  K.elegans       Homestead   M 5.79   3.21  8.85 12.08    August 2017.0
## 1451  K.elegans       Homestead   F 8.38   3.55 10.41 13.74    August 2017.0
## 1452  K.elegans       Homestead   M 5.78   3.30  8.95 12.07    August 2017.0
## 1453  K.elegans       Homestead   F 8.62   3.70  9.84 13.65    August 2017.0
## 1454  K.elegans       Homestead   M 5.74   2.80  8.00 10.92    August 2017.0
## 1455  K.elegans       Homestead   M 5.64   3.27  8.67 11.82    August 2017.0
## 1456  K.elegans       Homestead   F 7.66   3.72 10.19 13.52    August 2017.0
## 1457  K.elegans       Homestead   M 5.73   3.26  8.71 11.80    August 2017.0
## 1458  K.elegans       Homestead   M 5.73   3.14  8.46 11.66    August 2017.0
## 1459  K.elegans       Homestead   F 8.41   4.06 10.39 14.07    August 2017.0
## 1460  K.elegans       Homestead   F 8.06   3.58  9.77 12.98    August 2017.0
## 1461  K.elegans       Homestead   M 5.62   3.05  8.23 10.99    August 2017.0
## 1462  K.elegans       Homestead   F 8.02   3.69  9.92 14.00    August 2017.0
## 1463  K.elegans       Homestead   M 5.82   3.42  9.26 12.24    August 2017.0
## 1464  K.elegans       Homestead   F 7.96   3.87 10.32 13.76    August 2017.0
## 1465  K.elegans       Homestead   F 8.24   3.63  9.63 13.12    August 2017.0
## 1466  K.elegans       Homestead   F 8.15   3.85 10.44 13.75    August 2017.0
## 1467  K.elegans       Homestead   F 8.17   3.61 10.16 13.78    August 2017.0
## 1468  K.elegans       Homestead   M 5.81   3.22  8.71 11.87    August 2017.0
## 1469  K.elegans       Homestead   F 8.02   3.54  9.53 12.87    August 2017.0
## 1470  K.elegans       Homestead   M 5.69   3.15  8.83 11.59    August 2017.0
## 1471  K.elegans       Homestead   M 5.53   2.78  7.84 10.78    August 2017.0
## 1472  K.elegans       Homestead   M 6.04   3.25  8.95 12.14    August 2017.0
## 1473  K.elegans       Homestead   F 8.48   4.09 10.25 13.57    August 2017.0
## 1474  K.elegans       Homestead   F 8.25   3.75  9.95 13.07    August 2017.0
## 1475  K.elegans       Homestead   M 6.04   3.43  8.84 11.98    August 2017.0
## 1476  K.elegans       Homestead   F 7.96   3.54  9.45 12.63    August 2017.0
## 1477  K.elegans       Homestead   F 8.14   3.76 10.05 13.51    August 2017.0
## 1478  K.elegans       Homestead   F 8.05   3.71  9.58 13.32    August 2017.0
## 1479  K.elegans       Homestead   F 8.42   3.68  9.65 13.50    August 2017.0
## 1480  K.elegans       Homestead   F 7.85   3.82  9.99 13.14    August 2017.0
## 1481  K.elegans       Homestead   M 5.89   3.22  8.52 11.31    August 2017.0
## 1482  K.elegans       Homestead   F 7.97   3.98 10.60 14.21    August 2017.0
## 1483  K.elegans       Homestead   F 8.57   3.78  9.82 13.34    August 2017.0
## 1484  K.elegans       Homestead   F 8.02   3.36  9.43 12.81    August 2017.0
## 1485  K.elegans       Homestead   F 7.97   3.73 10.15 13.65    August 2017.0
## 1486  K.elegans       Homestead   F 8.81   3.85 10.26 13.62    August 2017.0
## 1487  K.elegans       Homestead   M 5.69   2.92  8.13 10.95    August 2017.0
## 1488  K.elegans       Homestead   M 6.14   3.27  9.00 12.19    August 2017.0
## 1489  K.elegans       Homestead   M 5.95   3.23  8.92 12.04    August 2017.0
## 1490  K.elegans       Homestead   F 7.60   3.07  8.50 11.54    August 2017.0
## 1491  K.elegans       Homestead   M 6.06   3.27  8.80 12.00    August 2017.0
## 1492  K.elegans       Homestead   M 5.85   3.26  8.84 11.70    August 2017.0
## 1493  K.elegans       Homestead   F 8.24   3.62  9.87 13.35    August 2017.0
## 1494  K.elegans       Homestead   M 5.85   3.15  8.50 11.34    August 2017.0
## 1495  K.elegans       Homestead   F 8.39   3.73 10.50 14.35    August 2017.0
## 1496  K.elegans       Homestead   M 6.05   3.10  8.79 11.74    August 2017.0
## 1497  K.elegans       Homestead   M 5.65   3.33  9.08 11.91    August 2017.0
## 1498  K.elegans       Homestead   F 8.62   3.78  9.92 13.67    August 2017.0
## 1499  K.elegans       Homestead   M 5.99   3.13  8.54 11.67    August 2017.0
## 1500  K.elegans       Homestead   M 5.99   3.26  9.14 12.08    August 2017.0
## 1501  K.elegans       Homestead   M 5.71   2.97  8.82 11.42    August 2017.0
## 1502 C.corindum       Key_Largo   F 8.89   3.62  9.34 12.55    August 2017.0
## 1503 C.corindum       Key_Largo   M 5.97   3.01  8.30 10.89    August 2017.0
## 1504 C.corindum       Key_Largo   M 6.20   2.90  8.36 11.30    August 2017.0
## 1505 C.corindum       Key_Largo   M 5.63   2.66  4.76  7.86    August 2017.0
## 1506 C.corindum       Key_Largo   F 7.90   3.12  8.64 12.02    August 2017.0
## 1507 C.corindum       Key_Largo   M 6.29   3.10  8.06 11.34    August 2017.0
## 1508 C.corindum       Key_Largo   M 5.79   2.74  7.53 10.50    August 2017.0
## 1509 C.corindum       Key_Largo   M 5.31   2.75  7.39 10.03    August 2017.0
## 1510 C.corindum       Key_Largo   F 8.29   3.47  9.34 12.95    August 2017.0
## 1511 C.corindum       Key_Largo   M 5.86   2.94  7.64 10.65    August 2017.0
## 1512 C.corindum       Key_Largo   F 7.95   3.34  9.20 12.71    August 2017.0
## 1513 C.corindum       Key_Largo   M 5.41   2.71  4.76  7.88    August 2017.0
## 1514 C.corindum       Key_Largo   M 6.08   3.07  8.14 11.48    August 2017.0
## 1515 C.corindum       Key_Largo   M 6.24   3.05  7.92 10.78    August 2017.0
## 1516 C.corindum       Key_Largo   M 6.35   2.89  8.13 11.08    August 2017.0
## 1517 C.corindum       Key_Largo   F 7.33   3.32  8.24 11.52    August 2017.0
## 1518 C.corindum       Key_Largo   M 6.07   3.10  7.99 11.07    August 2017.0
## 1519 C.corindum       Key_Largo   M 5.80   3.08  8.58 11.59    August 2017.0
## 1520 C.corindum       Key_Largo   F 8.03   3.44  9.05 12.44    August 2017.0
## 1521 C.corindum       Key_Largo   F 7.96   3.33  8.46 11.96    August 2017.0
## 1522 C.corindum       Key_Largo   F 8.09   3.43  8.98 12.46    August 2017.0
## 1523 C.corindum       Key_Largo   F 7.86   3.62  9.39 13.27    August 2017.0
## 1524 C.corindum       Key_Largo   M 5.28   2.59  4.69  7.45    August 2017.0
## 1525 C.corindum       Key_Largo   M 5.00   2.52  4.50  7.44    August 2017.0
## 1526 C.corindum       Key_Largo   F 7.96   3.04  8.80 11.94    August 2017.0
## 1527 C.corindum       Key_Largo   F 8.38   3.67 10.16 13.81    August 2017.0
## 1528 C.corindum       Key_Largo   M 5.90   3.21  8.31 11.65    August 2017.0
## 1529 C.corindum       Key_Largo   M 5.50   2.63  6.79  9.59    August 2017.0
## 1530 C.corindum       Key_Largo   F 9.01   3.67  9.96 13.60    August 2017.0
## 1531 C.corindum       Key_Largo   F 7.00   3.54  9.55 12.94    August 2017.0
## 1532 C.corindum       Key_Largo   M 5.90   3.09  8.13 11.13    August 2017.0
## 1533 C.corindum       Key_Largo   M 5.79   2.73  7.36 10.02    August 2017.0
## 1534 C.corindum       Key_Largo   M 6.20   2.82  7.73 10.70    August 2017.0
## 1535 C.corindum       Key_Largo   M 5.38   2.73  5.32  7.98    August 2017.0
## 1536 C.corindum       Key_Largo   M 6.11   2.88  7.90 10.99    August 2017.0
## 1537 C.corindum North_Key_Largo   M 6.85   3.40  9.18 12.30    August 2017.0
## 1538 C.corindum North_Key_Largo   F 8.90   3.48  9.10 12.57    August 2017.0
## 1539 C.corindum North_Key_Largo   M 6.32   3.03  8.02 10.63    August 2017.0
## 1540 C.corindum North_Key_Largo   F 8.16   3.47  9.17 12.60    August 2017.0
## 1541 C.corindum North_Key_Largo   M 5.60   2.65  4.81  7.93    August 2017.0
## 1542 C.corindum North_Key_Largo   M 6.36   3.26  8.97 12.28    August 2017.0
## 1543 C.corindum North_Key_Largo   F 8.04   3.78 10.20 13.79    August 2017.0
## 1544 C.corindum North_Key_Largo   F 7.49   3.14  8.41 11.86    August 2017.0
## 1545 C.corindum North_Key_Largo   F 6.76   2.79  4.87  8.08    August 2017.0
## 1546 C.corindum North_Key_Largo   F 6.31   2.90  4.91  8.42    August 2017.0
## 1547 C.corindum North_Key_Largo   M 6.01   3.29  8.20 11.51    August 2017.0
## 1548 C.corindum North_Key_Largo   F 8.72   3.48  9.27 12.82    August 2017.0
## 1549 C.corindum North_Key_Largo   F 6.86   2.83  4.91  8.11    August 2017.0
## 1550 C.corindum North_Key_Largo   M 6.65   3.04  8.49 11.63    August 2017.0
## 1551 C.corindum North_Key_Largo   M 5.48   2.54  4.81  7.75    August 2017.0
## 1552 C.corindum North_Key_Largo   M 5.20   2.47  4.68  7.55    August 2017.0
## 1553 C.corindum North_Key_Largo   F 9.40   3.65  9.76 13.39    August 2017.0
## 1554 C.corindum North_Key_Largo   M 6.01   3.04  8.89 11.88    August 2017.0
## 1555 C.corindum North_Key_Largo   F 6.70   2.93  4.98  8.52    August 2017.0
## 1556 C.corindum North_Key_Largo   M 6.20   2.99  7.84 10.77    August 2017.0
## 1557 C.corindum North_Key_Largo   M 5.65   2.79  7.59 10.45    August 2017.0
## 1558 C.corindum North_Key_Largo   F 9.17   3.99 10.33 14.32    August 2017.0
## 1559 C.corindum North_Key_Largo   M 5.94   3.00  8.39 11.52    August 2017.0
## 1560 C.corindum North_Key_Largo   F 6.79   2.93  5.15  8.35    August 2017.0
## 1561 C.corindum North_Key_Largo   M 6.88   3.26  9.02 12.12    August 2017.0
## 1562 C.corindum North_Key_Largo   M 5.53   2.62  4.89  7.85    August 2017.0
## 1563 C.corindum North_Key_Largo   M 5.21   2.32  3.98  6.88    August 2017.0
## 1564 C.corindum North_Key_Largo   M 5.26   2.33  4.33  7.29    August 2017.0
## 1565 C.corindum North_Key_Largo   M 5.13   2.56  4.48  7.58    August 2017.0
## 1566 C.corindum North_Key_Largo   M 5.33   2.55  4.31  7.06    August 2017.0
## 1567 C.corindum North_Key_Largo   F 8.15   3.22  6.24  9.71    August 2017.0
## 1568 C.corindum North_Key_Largo   M 5.98   2.64  7.43 10.46    August 2017.0
## 1569 C.corindum North_Key_Largo   M 5.66   2.74  4.67  7.68    August 2017.0
## 1570 C.corindum North_Key_Largo   M 5.68   2.87  7.89 10.77    August 2017.0
## 1571 C.corindum North_Key_Largo   M 5.28   2.43  5.52  8.46    August 2017.0
## 1572 C.corindum North_Key_Largo   F 6.84   2.85  5.20  8.67    August 2017.0
## 1573 C.corindum North_Key_Largo   M 6.01   3.01  8.24 11.47    August 2017.0
## 1574 C.corindum North_Key_Largo   F 8.52   3.71  9.07 12.95    August 2017.0
## 1575 C.corindum North_Key_Largo   F 8.07   3.64 10.06 13.91    August 2017.0
## 1576 C.corindum North_Key_Largo   F 8.40   3.32  8.88 12.19    August 2017.0
## 1577 C.corindum North_Key_Largo   M 5.78   2.89  8.58 11.32    August 2017.0
## 1578 C.corindum North_Key_Largo   F 8.38   3.30  9.07 12.35    August 2017.0
## 1579 C.corindum North_Key_Largo   F 8.47   3.57  9.89 13.69    August 2017.0
## 1580 C.corindum North_Key_Largo   F 7.40   3.14  8.50 11.70    August 2017.0
## 1581 C.corindum North_Key_Largo   M 6.27   3.31  8.77 11.71    August 2017.0
## 1582 C.corindum North_Key_Largo   M 5.51   2.79  7.09 10.07    August 2017.0
## 1583 C.corindum North_Key_Largo   F 8.70   3.58  9.94 13.77    August 2017.0
## 1584 C.corindum North_Key_Largo   M 5.63   3.07  9.36 12.35    August 2017.0
## 1585 C.corindum North_Key_Largo   M 6.37   2.90  7.77 10.61    August 2017.0
## 1586 C.corindum North_Key_Largo   M 5.24   2.49  4.45  7.23    August 2017.0
## 1587 C.corindum North_Key_Largo   M 5.29   2.43  6.82  9.57    August 2017.0
## 1588 C.corindum North_Key_Largo   M 5.26   2.53  4.50  7.49    August 2017.0
## 1589 C.corindum North_Key_Largo   F 7.79   3.24  8.43 11.77    August 2017.0
## 1590 C.corindum North_Key_Largo   M 5.64   2.75  7.54 10.07    August 2017.0
## 1591 C.corindum North_Key_Largo   F 8.38   3.31  9.40 12.82    August 2017.0
## 1592 C.corindum North_Key_Largo   F 6.40   3.00  7.98 11.03    August 2017.0
## 1593 C.corindum North_Key_Largo   M 5.54   2.48  4.60  7.57    August 2017.0
## 1594  K.elegans      Lake_Wales   M 5.60   3.09  8.75 11.98    August 2017.0
## 1595  K.elegans      Lake_Wales   F 7.54   3.79  9.84 13.27    August 2017.0
## 1596  K.elegans      Lake_Wales   F 7.18   3.33  9.00 12.33    August 2017.0
## 1597  K.elegans      Lake_Wales   M 5.52   3.01  7.97 10.92    August 2017.0
## 1598  K.elegans      Lake_Wales   F 7.29   3.36  8.95 12.59    August 2017.0
## 1599  K.elegans      Lake_Wales   M 5.52   3.10  8.26 11.30    August 2017.0
## 1600  K.elegans      Lake_Wales   F 7.53   3.44  9.56 12.97    August 2017.0
## 1601  K.elegans      Lake_Wales   M 5.85   3.06  8.25 11.23    August 2017.0
## 1602  K.elegans      Lake_Wales   F 8.08   3.66  9.70 13.37    August 2017.0
## 1603  K.elegans      Lake_Wales   M 5.58   2.74  7.81 10.65    August 2017.0
## 1604  K.elegans      Lake_Wales   M 5.79   2.87  7.94 10.97    August 2017.0
## 1605  K.elegans      Lake_Wales   M 5.71   3.04  8.45 11.55    August 2017.0
## 1606  K.elegans      Lake_Wales   F 8.23   3.64  9.75 13.28    August 2017.0
## 1607  K.elegans      Lake_Wales   F 7.58   3.53  9.39 12.81    August 2017.0
## 1608  K.elegans      Lake_Wales   F 7.55   3.48  9.09 12.45    August 2017.0
## 1609  K.elegans      Lake_Wales   F 5.96   2.66  4.88  7.94    August 2017.0
## 1610  K.elegans      Lake_Wales   F 7.82   3.49  9.23 12.49    August 2017.0
## 1611  K.elegans      Lake_Wales   M 5.19   2.81  4.99  7.95    August 2017.0
## 1612  K.elegans      Lake_Wales   M 5.32   2.98  7.59 10.58    August 2017.0
## 1613  K.elegans      Lake_Wales   F 7.72   3.47  9.48 13.06    August 2017.0
## 1614  K.elegans      Lake_Wales   M 6.03   3.22  8.52 11.54    August 2017.0
## 1615  K.elegans      Lake_Wales   M 5.68   3.14  8.26 10.91    August 2017.0
## 1616  K.elegans      Lake_Wales   M 5.86   3.12  8.50 11.28    August 2017.0
## 1617  K.elegans      Lake_Wales   F 7.45   3.63  9.27 12.65    August 2017.0
## 1618  K.elegans      Lake_Wales   M 5.69   3.26  8.49 11.99    August 2017.0
## 1619  K.elegans      Lake_Wales   F 6.05   2.84  6.19  9.64    August 2017.0
## 1620  K.elegans      Lake_Wales   F 7.71   3.61  9.40 12.95    August 2017.0
## 1621  K.elegans      Lake_Wales   M 5.63   2.88  7.81 10.49    August 2017.0
## 1622  K.elegans      Lake_Wales   M 5.68   3.26  8.37 11.14    August 2017.0
## 1623  K.elegans      Lake_Wales   M 5.51   2.83  7.89 10.83    August 2017.0
## 1624  K.elegans      Lake_Wales   F 7.21   3.31  9.06 12.56    August 2017.0
## 1625  K.elegans      Lake_Wales   M 5.71   3.30  8.83 12.12    August 2017.0
## 1626  K.elegans      Lake_Wales   F 8.49   3.70 10.05 14.07    August 2017.0
## 1627  K.elegans      Lake_Wales   M 5.47   2.98  8.13 11.14    August 2017.0
## 1628  K.elegans      Lake_Wales   F 7.32   2.84  6.04  9.60    August 2017.0
## 1629  K.elegans      Lake_Wales   F 6.78   3.09  6.87 10.42    August 2017.0
## 1630  K.elegans      Lake_Wales   M 5.51   3.16  8.89 12.16    August 2017.0
## 1631  K.elegans      Lake_Wales   F 7.78   3.51  9.07 12.70    August 2017.0
## 1632  K.elegans      Lake_Wales   F 7.71     NA  9.59 13.19    August 2017.0
## 1633  K.elegans      Lake_Wales   M 5.26   2.65  5.38  8.32    August 2017.0
## 1634  K.elegans      Lake_Wales   F 5.71   2.73  4.71  7.93    August 2017.0
## 1635  K.elegans      Lake_Wales   M 5.48   2.88  8.10 11.41    August 2017.0
## 1636  K.elegans      Lake_Wales   M 5.83   3.18  8.51 11.70    August 2017.0
## 1637  K.elegans      Lake_Wales   M 5.85   2.87  5.82  8.51    August 2017.0
## 1638  K.elegans      Lake_Wales   F 6.59   2.90  5.61  8.87    August 2017.0
## 1639  K.elegans      Lake_Wales   M 5.26   3.03  8.57 11.48    August 2017.0
## 1640  K.elegans      Lake_Wales   M 5.09   2.50  4.73  7.49    August 2017.0
## 1641  K.elegans      Lake_Wales   M 5.75   2.59  5.49  8.38    August 2017.0
## 1642  K.elegans      Lake_Wales   F 8.71   3.87 10.51 14.12    August 2017.0
## 1643  K.elegans      Lake_Wales   F 7.29   3.11  6.69 10.22    August 2017.0
## 1644  K.elegans      Lake_Wales   M 5.60   3.07  8.46 11.46    August 2017.0
## 1645  K.elegans      Lake_Wales   M 5.19   2.65  5.14  7.91    August 2017.0
## 1646  K.elegans      Lake_Wales   F 6.69   3.64  9.40 13.15    August 2017.0
## 1647  K.elegans      Lake_Wales   M 5.83   3.08  8.87 11.86    August 2017.0
## 1648  K.elegans      Lake_Wales   F 7.05   3.22  6.81 10.34    August 2017.0
## 1649  K.elegans      Lake_Wales   M 5.71   3.34  9.49 12.62    August 2017.0
## 1650  K.elegans      Lake_Wales   M 5.62   3.19  8.79 11.93    August 2017.0
## 1651  K.elegans      Lake_Wales   F 6.93   2.94  5.53  9.02    August 2017.0
## 1652  K.elegans      Lake_Wales   F 6.54   3.33  9.59 13.00    August 2017.0
## 1653  K.elegans      Lake_Wales   M 5.24   3.34  8.06 11.17    August 2017.0
## 1654  K.elegans      Lake_Wales   M 4.85   2.54  4.61  7.56    August 2017.0
## 1655  K.elegans      Lake_Wales   F 7.73   3.87  9.78 13.24    August 2017.0
## 1656  K.elegans      Lake_Wales   M 4.93   2.40  5.02  7.89    August 2017.0
## 1657  K.elegans      Lake_Wales   F 6.46   2.83  4.89  8.09    August 2017.0
## 1658  K.elegans      Lake_Wales   M 5.32   2.70  5.31  8.24    August 2017.0
## 1659  K.elegans      Lake_Wales   F 6.68   3.12  6.69 10.35    August 2017.0
## 1660  K.elegans      Lake_Wales   M 5.32   2.95  7.95 11.17    August 2017.0
## 1661  K.elegans      Lake_Wales   F 6.71   3.22  7.08 10.51    August 2017.0
## 1662  K.elegans      Lake_Wales   M 5.26   3.02  8.62 11.69    August 2017.0
## 1663  K.elegans      Lake_Wales   M 5.40   3.06  8.37 11.57    August 2017.0
## 1664  K.elegans      Lake_Wales   M 5.86   2.90  7.61 10.53    August 2017.0
## 1665  K.elegans      Lake_Wales   M 5.65   3.01  8.17 11.16    August 2017.0
## 1666  K.elegans      Lake_Wales   F 6.76   3.12  8.47 11.78    August 2017.0
## 1667  K.elegans      Lake_Wales   F 6.53   2.92  5.80  9.28    August 2017.0
## 1668  K.elegans      Lake_Wales   M 5.31   2.45  4.45  7.35    August 2017.0
## 1669  K.elegans      Lake_Wales   F 7.35   3.32  8.86 12.26    August 2017.0
## 1670  K.elegans      Lake_Wales   F 6.09   2.79  5.46  8.85    August 2017.0
## 1671  K.elegans      Lake_Wales   F 6.32   2.85  4.83  8.10    August 2017.0
## 1672  K.elegans      Lake_Wales   M 5.35   2.71  4.86  7.93    August 2017.0
## 1673  K.elegans      Lake_Wales   M 5.60     NA  8.65 11.87    August 2017.0
## 1674  K.elegans      Lake_Wales   M 5.69   2.88  5.26  8.42    August 2017.0
## 1675  K.elegans      Lake_Wales   M 4.97   2.69  7.22 10.15    August 2017.0
## 1676  K.elegans      Lake_Wales   F 6.44   2.80  5.54  8.70    August 2017.0
## 1677  K.elegans      Lake_Wales   M 5.27   2.76  6.37  9.32    August 2017.0
## 1678  K.elegans      Lake_Wales   M 5.31   2.63  6.03  8.99    August 2017.0
## 1679  K.elegans      Lake_Wales   M 5.37   2.71  5.25  8.20    August 2017.0
## 1680  K.elegans      Lake_Wales   M 5.49   3.03  7.89 10.80    August 2017.0
## 1681  K.elegans      Lake_Wales   F 6.72   3.03  5.44  8.78    August 2017.0
## 1682  K.elegans      Lake_Wales   M 5.81   3.19  8.97 12.09    August 2017.0
## 1683  K.elegans      Lake_Wales   M 5.37   2.54  6.17  9.14    August 2017.0
## 1684  K.elegans      Lake_Wales   M 5.15   2.38  5.22  7.87    August 2017.0
## 1685  K.elegans        Leesburg   M 5.23   3.05  8.75 11.43    August 2017.0
## 1686  K.elegans        Leesburg   F 7.20   3.29  9.05 12.30    August 2017.0
## 1687  K.elegans        Leesburg   F 6.22   3.12  5.57  8.95    August 2017.0
## 1688  K.elegans        Leesburg   F 5.89   2.44  4.28  7.34    August 2017.0
## 1689  K.elegans        Leesburg   F 6.66   2.69  4.63  7.87    August 2017.0
## 1690  K.elegans        Leesburg   M 6.05   3.26  8.61 11.63    August 2017.0
## 1691  K.elegans        Leesburg   F 7.11   3.20  9.13 12.30    August 2017.0
## 1692  K.elegans        Leesburg   M 5.78   2.86  8.16 11.39    August 2017.0
## 1693  K.elegans        Leesburg   M 5.72   2.89  7.89 10.72    August 2017.0
## 1694  K.elegans        Leesburg   M 5.22   2.49  4.59  7.43    August 2017.0
## 1695  K.elegans        Leesburg   M 5.35   2.80  7.71 10.49    August 2017.0
## 1696  K.elegans        Leesburg   F 7.77   3.82 10.22 13.70    August 2017.0
## 1697  K.elegans        Leesburg   F 8.44   3.66  9.83 13.58    August 2017.0
## 1698  K.elegans        Leesburg   M 5.60   2.64  7.39 10.28    August 2017.0
## 1699  K.elegans        Leesburg   F 6.12   2.82  5.54  8.80    August 2017.0
## 1700  K.elegans        Leesburg   M 5.60   2.85  6.24  8.89    August 2017.0
## 1701  K.elegans        Leesburg   F 7.75   3.48  9.70 13.37    August 2017.0
## 1702  K.elegans        Leesburg   M 5.09   2.63  5.04  7.87    August 2017.0
## 1703  K.elegans        Leesburg   F 8.14   3.70  9.78 13.30    August 2017.0
## 1704  K.elegans        Leesburg   M 5.39   2.96  8.40 11.39    August 2017.0
## 1705  K.elegans        Leesburg   M 5.87   3.00  8.18 11.47    August 2017.0
## 1706  K.elegans        Leesburg   M 5.30   2.81  7.67 10.40    August 2017.0
## 1707  K.elegans        Leesburg   M 5.17   2.72  7.45  9.98    August 2017.0
## 1708  K.elegans        Leesburg   M 5.52   2.19  4.76  7.42    August 2017.0
## 1709  K.elegans        Leesburg   M 5.36   2.75  7.85 10.61    August 2017.0
## 1710  K.elegans        Leesburg   F 7.14   3.37  9.21 12.69    August 2017.0
## 1711  K.elegans        Leesburg   F 6.05   2.69  5.12  8.21    August 2017.0
## 1712  K.elegans        Leesburg   M 5.56   2.81  8.31 11.24    August 2017.0
## 1713  K.elegans        Leesburg   F 7.01   3.15  8.52 11.79    August 2017.0
## 1714  K.elegans        Leesburg   M 5.58   2.96  8.22 11.14    August 2017.0
## 1715  K.elegans        Leesburg   M 5.55   3.00  8.20 11.17    August 2017.0
## 1716  K.elegans        Leesburg   F 7.35   3.49  9.39 12.62    August 2017.0
## 1717  K.elegans        Leesburg   M 5.41   3.07  8.53 11.59    August 2017.0
## 1718  K.elegans        Leesburg   M 5.05   2.40  4.72  7.52    August 2017.0
## 1719  K.elegans        Leesburg   F 7.22   2.92  6.21  9.71    August 2017.0
## 1720  K.elegans        Leesburg   M 5.41   2.65  7.65 10.62    August 2017.0
## 1721  K.elegans        Leesburg   M 5.27   2.87  8.08 11.12    August 2017.0
## 1722  K.elegans        Leesburg   M 5.52   2.52  5.08  7.69    August 2017.0
## 1723  K.elegans        Leesburg   M 6.27   2.84  7.42 10.06    August 2017.0
## 1724  K.elegans        Leesburg   F 7.14   3.37  9.52 12.83    August 2017.0
## 1725  K.elegans        Leesburg   M 5.13   2.53  5.36  8.26    August 2017.0
## 1726  K.elegans        Leesburg   M 5.69   2.87  8.18 11.20    August 2017.0
## 1727  K.elegans        Leesburg   F 7.82   3.43  9.52 13.21    August 2017.0
## 1728  K.elegans        Leesburg   M 5.62   3.22  8.76 11.80    August 2017.0
## 1729  K.elegans        Leesburg   F 6.54   2.73  4.81  7.94    August 2017.0
## 1730  K.elegans        Leesburg   M 4.77   2.28  3.76  6.50    August 2017.0
## 1731  K.elegans        Leesburg   M 5.86   2.74  7.90 10.71    August 2017.0
## 1732  K.elegans        Leesburg   M 5.15   2.59  7.16  9.86    August 2017.0
## 1733  K.elegans        Leesburg   M 5.52   3.09  7.91 10.68    August 2017.0
## 1734  K.elegans        Leesburg   M 5.41   2.63  5.81  8.72    August 2017.0
## 1735  K.elegans        Leesburg   M 5.09   2.67  4.86  7.78    August 2017.0
## 1736  K.elegans        Leesburg   F 5.87   2.62  4.78  7.77    August 2017.0
## 1737  K.elegans        Leesburg   M 5.30   2.55  5.91  8.91    August 2017.0
## 1738  K.elegans        Leesburg   M 5.49   2.55  4.57  7.33    August 2017.0
## 1739  K.elegans        Leesburg   M 5.07   2.39  4.33  7.14    August 2017.0
## 1740  K.elegans        Leesburg   F 5.87   2.57  4.71  7.83    August 2017.0
## 1741  K.elegans        Leesburg   F 6.72   3.05  8.26 11.43    August 2017.0
## 1742  K.elegans        Leesburg   F 6.34   2.88  4.84  7.98    August 2017.0
## 1743  K.elegans     Gainesville   M 5.59   2.77  7.70 10.83 September 2018.0
## 1744  K.elegans     Gainesville   M 5.48   2.89  8.43 11.23 September 2018.0
## 1745  K.elegans     Gainesville   M 5.66   3.02  8.78 11.95 September 2018.0
## 1746  K.elegans     Gainesville   F 8.29   3.85 10.26 14.18 September 2018.0
## 1747  K.elegans     Gainesville   F 7.54   3.42  9.12 12.19 September 2018.0
## 1748  K.elegans     Gainesville   M 5.32   2.66  7.37 10.08 September 2018.0
## 1749  K.elegans     Gainesville   M 5.72   3.14  8.98 11.90 September 2018.0
## 1750  K.elegans     Gainesville   F 7.12   3.30  9.11 12.36 September 2018.0
## 1751  K.elegans     Gainesville   F 6.43   3.40  9.34 12.37 September 2018.0
## 1752  K.elegans     Gainesville   F 7.25   3.65 10.40 13.81 September 2018.0
## 1753  K.elegans     Gainesville   F 7.36   3.25  8.89 12.16 September 2018.0
## 1754  K.elegans     Gainesville   F 8.03   3.55  9.73 13.38 September 2018.0
## 1755  K.elegans     Gainesville   F 7.21   3.01  8.60 11.69 September 2018.0
## 1756  K.elegans     Gainesville   F 6.93   3.49  9.82 13.11 September 2018.0
## 1757  K.elegans     Gainesville   F 6.06   3.22  9.32 12.63 September 2018.0
## 1758  K.elegans     Gainesville   F 7.68   3.50  9.42 13.15 September 2018.0
## 1759  K.elegans     Gainesville   F 6.15   2.80  4.84  8.21 September 2018.0
## 1760  K.elegans     Gainesville   M 5.66   2.94  8.45 11.49 September 2018.0
## 1761  K.elegans     Gainesville   M 5.78   3.04  8.60 11.67 September 2018.0
## 1762  K.elegans     Gainesville   M 5.58   2.95  8.59 11.56 September 2018.0
## 1763  K.elegans     Gainesville   M 5.32   2.94  8.11 10.81 September 2018.0
## 1764  K.elegans     Gainesville   M 5.50   3.07  8.05 11.26 September 2018.0
## 1765  K.elegans     Gainesville   F 6.59   3.26  8.64 11.64 September 2018.0
## 1766  K.elegans     Gainesville   M 5.42   2.87  8.27 11.08 September 2018.0
## 1767  K.elegans     Gainesville   F 6.51   3.47  9.26 13.25 September 2018.0
## 1768  K.elegans     Gainesville   F 6.61   3.19  8.67 11.67 September 2018.0
## 1769  K.elegans     Gainesville   M 5.11   2.70  7.81 10.50 September 2018.0
## 1770  K.elegans     Gainesville   M 5.52   2.97  8.48 11.46 September 2018.0
## 1771  K.elegans     Gainesville   M 5.93   2.89  7.87 11.04 September 2018.0
## 1772  K.elegans     Gainesville   M 5.29   2.96  7.68 10.94 September 2018.0
## 1773  K.elegans     Gainesville   F 7.80   3.32  9.45 12.82 September 2018.0
## 1774  K.elegans     Gainesville   F 6.42   3.46  9.10 12.45 September 2018.0
## 1775  K.elegans     Gainesville   F 7.69   3.74  9.71 13.17 September 2018.0
## 1776  K.elegans     Gainesville   M 5.51   2.79  8.34 11.01 September 2018.0
## 1777  K.elegans     Gainesville   F 7.16   3.24  8.73 11.84 September 2018.0
## 1778  K.elegans     Gainesville   M 5.79   3.09  8.78 12.04 September 2018.0
## 1779  K.elegans     Gainesville   M 5.78   3.25  9.07 12.37 September 2018.0
## 1780  K.elegans     Gainesville   M 5.89   3.10  8.75 11.86 September 2018.0
## 1781  K.elegans     Gainesville   F 6.68   3.53  9.45 12.73 September 2018.0
## 1782  K.elegans     Gainesville   M 5.49   2.71  7.55 10.66 September 2018.0
## 1783  K.elegans     Gainesville   F 7.69   3.51  9.63 13.27 September 2018.0
## 1784  K.elegans     Gainesville   F 7.26   3.68 10.03 13.45 September 2018.0
## 1785  K.elegans     Gainesville   F 7.26   3.72 10.29 13.78 September 2018.0
## 1786  K.elegans     Gainesville   M 5.53   2.76  8.02 10.72 September 2018.0
## 1787  K.elegans     Gainesville   M 5.61   2.98  8.17 11.09 September 2018.0
## 1788  K.elegans     Gainesville   F 7.42   3.47  9.64 12.99 September 2018.0
## 1789  K.elegans     Gainesville   M 5.71   2.79  7.95 11.04 September 2018.0
## 1790  K.elegans     Gainesville   M 5.28   2.95  7.96 11.14 September 2018.0
## 1791  K.elegans     Gainesville   M 5.84   3.01  8.33 11.29 September 2018.0
## 1792  K.elegans     Gainesville   F 7.98   3.40  9.51 13.08 September 2018.0
## 1793  K.elegans     Gainesville   F 7.10   3.17  9.26 12.82 September 2018.0
## 1794  K.elegans     Gainesville   F 7.69   3.34  9.78 13.10 September 2018.0
## 1795  K.elegans     Gainesville   M 6.15   3.03  8.56 11.63 September 2018.0
## 1796  K.elegans     Gainesville   M 5.07   2.68  7.40 10.06 September 2018.0
## 1797  K.elegans     Gainesville   F 7.15   3.51  9.40 13.13 September 2018.0
## 1798  K.elegans     Gainesville   F 5.89   2.63  4.63  7.73 September 2018.0
## 1799  K.elegans     Gainesville   F 7.32   3.28  8.69 11.92 September 2018.0
## 1800  K.elegans     Gainesville   F 6.43   3.40  9.11 12.58 September 2018.0
## 1801  K.elegans     Gainesville   M 5.47   2.81  7.82 10.70 September 2018.0
## 1802  K.elegans     Gainesville   M 5.65   3.01  8.76 11.76 September 2018.0
## 1803  K.elegans     Gainesville   M 5.55   2.57  4.42  7.24 September 2018.0
## 1804  K.elegans     Gainesville   M 5.41   2.92  8.00 10.86 September 2018.0
## 1805  K.elegans     Gainesville   F 7.94   3.54  9.18 12.89 September 2018.0
## 1806  K.elegans     Gainesville   M 6.00   2.95  8.46 11.51 September 2018.0
## 1807 C.corindum North_Key_Largo   M 6.19   3.10  8.67 11.95 September 2018.0
## 1808 C.corindum North_Key_Largo   M 6.02   3.19  8.47 11.62 September 2018.0
## 1809 C.corindum North_Key_Largo   M 6.20   2.82  7.96 11.07 September 2018.0
## 1810 C.corindum North_Key_Largo   F 7.07   3.01  7.82 10.87 September 2018.0
## 1811 C.corindum North_Key_Largo   F 7.67   3.09  5.40  8.77 September 2018.0
## 1812 C.corindum North_Key_Largo   F 6.37   2.68  5.15  8.64 September 2018.0
## 1813 C.corindum North_Key_Largo   F 7.80   3.40  6.94 10.59 September 2018.0
## 1814 C.corindum North_Key_Largo   F 7.86   3.23  6.79 10.05 September 2018.0
## 1815 C.corindum North_Key_Largo   F 9.38   3.80  9.79 13.56 September 2018.0
## 1816 C.corindum North_Key_Largo   M 5.29   2.53  4.42  7.22 September 2018.0
## 1817 C.corindum North_Key_Largo   M 5.52   2.52  4.47  7.31 September 2018.0
## 1818 C.corindum North_Key_Largo   F 7.25   2.81  7.74 10.73 September 2018.0
## 1819 C.corindum North_Key_Largo   F 6.68   2.78  4.65  8.04 September 2018.0
## 1820 C.corindum North_Key_Largo   F 6.37   2.80  4.45  7.28 September 2018.0
## 1821 C.corindum North_Key_Largo   M 5.74   2.80  7.61 10.59 September 2018.0
## 1822 C.corindum North_Key_Largo   M 5.52   2.58  4.84  7.52 September 2018.0
## 1823 C.corindum North_Key_Largo   F 8.48   3.51  9.53 13.02 September 2018.0
## 1824 C.corindum North_Key_Largo   F 7.58   3.36  6.94 10.41 September 2018.0
## 1825 C.corindum North_Key_Largo   F 7.67   3.16  7.74 11.51 September 2018.0
## 1826 C.corindum North_Key_Largo   M 6.53   3.15  8.60 11.85 September 2018.0
## 1827 C.corindum North_Key_Largo   M 6.00   3.07  8.55 11.57 September 2018.0
## 1828 C.corindum North_Key_Largo   F 6.04   2.53  4.16  6.88 September 2018.0
## 1829 C.corindum North_Key_Largo   F 7.87   3.14  5.60  9.16 September 2018.0
## 1830 C.corindum North_Key_Largo   F 8.75   3.49  9.08 12.79 September 2018.0
## 1831 C.corindum North_Key_Largo   F 7.07   2.85  5.31  8.51 September 2018.0
## 1832 C.corindum North_Key_Largo   F 8.61   3.60  9.76 13.37 September 2018.0
## 1833 C.corindum North_Key_Largo   M 6.31   3.22  8.62 11.85 September 2018.0
## 1834 C.corindum North_Key_Largo   M 5.75   2.66  4.42  7.35 September 2018.0
## 1835 C.corindum North_Key_Largo   F 7.35   3.29  5.77  9.47 September 2018.0
## 1836 C.corindum North_Key_Largo   M 5.53   2.71  5.44  8.47 September 2018.0
## 1837 C.corindum North_Key_Largo   F 9.36   3.55 10.00 13.64 September 2018.0
## 1838 C.corindum North_Key_Largo   F 7.45   3.07  5.19  8.83 September 2018.0
## 1839 C.corindum North_Key_Largo   M 5.69   2.77  7.57 10.38 September 2018.0
## 1840 C.corindum North_Key_Largo   M 5.77   2.94  7.41 10.66 September 2018.0
## 1841 C.corindum North_Key_Largo   F 6.67   2.94  7.33 10.69 September 2018.0
## 1842 C.corindum North_Key_Largo   F 7.77   3.09  5.20  8.86 September 2018.0
## 1843 C.corindum North_Key_Largo   M 5.75   2.67  4.60  7.43 September 2018.0
## 1844 C.corindum North_Key_Largo   M 5.20   2.22  4.22  6.67 September 2018.0
## 1845 C.corindum North_Key_Largo   F 6.35   2.87  4.91  8.30 September 2018.0
## 1846 C.corindum North_Key_Largo   M 5.44   2.52  4.25  6.93 September 2018.0
## 1847 C.corindum North_Key_Largo   F 8.61   3.55  9.45 12.97 September 2018.0
## 1848 C.corindum North_Key_Largo   F 6.23   2.68  4.42  7.73 September 2018.0
## 1849 C.corindum North_Key_Largo   F 7.83   3.32  8.77 12.27 September 2018.0
## 1850 C.corindum North_Key_Largo   M 6.35   3.15  8.35 11.45 September 2018.0
## 1851 C.corindum North_Key_Largo   F 8.51   3.64  9.26 12.66 September 2018.0
## 1852 C.corindum North_Key_Largo   M 5.85   2.49  4.77  7.68 September 2018.0
## 1853 C.corindum North_Key_Largo   M 6.41   3.15  8.69 12.03 September 2018.0
## 1854 C.corindum North_Key_Largo   M 5.58   2.80  7.70 10.39 September 2018.0
## 1855 C.corindum North_Key_Largo   F 7.95   3.21  8.78 12.09 September 2018.0
## 1856 C.corindum North_Key_Largo   F 7.65   3.28  9.35 12.44 September 2018.0
## 1857 C.corindum North_Key_Largo   F 6.93   2.82  4.47  7.89 September 2018.0
## 1858 C.corindum North_Key_Largo   M 5.38   2.72  5.40  8.13 September 2018.0
## 1859 C.corindum North_Key_Largo   F 7.78   3.24  8.32 11.75 September 2018.0
## 1860 C.corindum North_Key_Largo   M 5.33   2.43  5.23  7.68 September 2018.0
## 1861 C.corindum North_Key_Largo   F 7.59   3.03  5.32  8.72 September 2018.0
## 1862 C.corindum North_Key_Largo   M 5.41   2.63  7.44  9.94 September 2018.0
## 1863 C.corindum North_Key_Largo   F 8.36   3.45  9.23 12.76 September 2018.0
## 1864 C.corindum North_Key_Largo   F 7.83   3.14  5.84  9.37 September 2018.0
## 1865 C.corindum North_Key_Largo   F 7.89   3.19  9.47 12.89 September 2018.0
## 1866 C.corindum North_Key_Largo   F 7.45   3.07  5.77  9.21 September 2018.0
## 1867 C.corindum North_Key_Largo   M 5.56   2.75  7.86 10.83 September 2018.0
## 1868 C.corindum North_Key_Largo   F 6.71   3.02  5.56  8.70 September 2018.0
## 1869 C.corindum North_Key_Largo   F 7.95   3.27  8.61 11.85 September 2018.0
## 1870 C.corindum North_Key_Largo   F 7.73   3.08  5.81  9.22 September 2018.0
## 1871 C.corindum North_Key_Largo   M 6.30   2.91  8.45 11.32 September 2018.0
## 1872 C.corindum North_Key_Largo   F 6.99   2.91  5.41  8.53 September 2018.0
## 1873 C.corindum North_Key_Largo   M 5.40   2.54  4.70  7.41 September 2018.0
## 1874 C.corindum North_Key_Largo   M 5.57   2.45  4.28  6.89 September 2018.0
## 1875  K.elegans      Lake_Wales   F 7.16   3.29  9.14 12.49 September 2018.0
## 1876  K.elegans      Lake_Wales   F 7.02   3.13  8.44 11.80 September 2018.0
## 1877  K.elegans      Lake_Wales   F 7.60   3.45  9.26 12.71 September 2018.0
## 1878  K.elegans      Lake_Wales   M 5.84   3.05  8.23 11.43 September 2018.0
## 1879  K.elegans      Lake_Wales   M 5.52   2.69  7.76 10.47 September 2018.0
## 1880  K.elegans      Lake_Wales   F 6.83   3.11  8.94 12.27 September 2018.0
## 1881  K.elegans      Lake_Wales   F 6.88   3.13  9.10 12.47 September 2018.0
## 1882  K.elegans      Lake_Wales   M 5.15   2.37  4.48  7.26 September 2018.0
## 1883  K.elegans      Lake_Wales   F 6.70   3.09  8.36 11.61 September 2018.0
## 1884  K.elegans      Lake_Wales   M 5.71   3.00  8.08 11.00 September 2018.0
## 1885  K.elegans      Lake_Wales   F 7.48   3.12  9.41 12.66 September 2018.0
## 1886  K.elegans      Lake_Wales   F 7.83   3.42 10.21 14.19 September 2018.0
## 1887  K.elegans      Lake_Wales   M 5.61   3.09  8.59 11.67 September 2018.0
## 1888  K.elegans      Lake_Wales   F 7.46   3.65  9.93 13.34 September 2018.0
## 1889  K.elegans      Lake_Wales   M 5.77   2.94  8.22 11.27 September 2018.0
## 1890  K.elegans      Lake_Wales   F 7.51   3.26  9.33 12.56 September 2018.0
## 1891  K.elegans      Lake_Wales   F 7.35   3.26  8.73 12.22 September 2018.0
## 1892  K.elegans      Lake_Wales   M 5.81   3.07  8.68 11.71 September 2018.0
## 1893  K.elegans      Lake_Wales   F 8.47   3.64 10.07 14.02 September 2018.0
## 1894  K.elegans      Lake_Wales   F 7.32   3.58 10.19 13.51 September 2018.0
## 1895  K.elegans      Lake_Wales   F 7.19   3.30  9.02 12.47 September 2018.0
## 1896  K.elegans      Lake_Wales   M 5.68   2.65  7.56 10.60 September 2018.0
## 1897  K.elegans      Lake_Wales   M 5.82   3.25  8.65 11.71 September 2018.0
## 1898  K.elegans      Lake_Wales   F 6.05   3.08  8.14 11.49 September 2018.0
## 1899  K.elegans      Lake_Wales   M 5.57   2.86  7.89 11.03 September 2018.0
## 1900  K.elegans      Lake_Wales   F 7.47   3.25  5.91  9.40 September 2018.0
## 1901  K.elegans      Lake_Wales   M 5.26   2.79  7.97 10.73 September 2018.0
## 1902  K.elegans      Lake_Wales   F 6.80   3.15  8.74 11.85 September 2018.0
## 1903  K.elegans      Lake_Wales   F 6.00   2.56  4.90  7.92 September 2018.0
## 1904  K.elegans      Lake_Wales   F 7.82   3.76 10.17 14.19 September 2018.0
## 1905  K.elegans      Lake_Wales   M 5.85   3.12  8.64 12.00 September 2018.0
## 1906  K.elegans      Lake_Wales   F 7.78   3.50  9.32 13.17 September 2018.0
## 1907  K.elegans      Lake_Wales   F 7.55   3.38  9.58 12.82 September 2018.0
## 1908  K.elegans      Lake_Wales   F 7.58   3.60  9.69 13.14 September 2018.0
## 1909  K.elegans      Lake_Wales   F 7.43   3.45  9.56 12.91 September 2018.0
## 1910  K.elegans      Lake_Wales   F 7.29   3.23  9.22 12.56 September 2018.0
## 1911  K.elegans      Lake_Wales   F 7.75   3.66  9.87 13.53 September 2018.0
## 1912  K.elegans      Lake_Wales   M 5.57   2.79  7.56 10.74 September 2018.0
## 1913  K.elegans      Lake_Wales   M 5.79   3.29  8.68 11.50 September 2018.0
## 1914  K.elegans      Lake_Wales   M 5.40   2.75  7.60 10.55 September 2018.0
## 1915  K.elegans        Leesburg   M 5.45   2.98  8.12 11.05 September 2018.0
## 1916  K.elegans     Gainesville   F 7.48   3.44  9.12 12.60       May 2019.0
## 1917  K.elegans     Gainesville   F 7.66   3.58  9.94 13.63       May 2019.0
## 1918  K.elegans     Gainesville   M 5.14   2.63  7.51 10.21       May 2019.0
## 1919  K.elegans     Gainesville   F 7.68   3.73 10.13 13.47       May 2019.0
## 1920  K.elegans     Gainesville   M 5.91   3.31  8.83 12.47       May 2019.0
## 1921  K.elegans     Gainesville   M 5.09   2.98  5.41  8.43       May 2019.0
## 1922  K.elegans     Gainesville   F 7.87   3.75  9.93 13.35       May 2019.0
## 1923  K.elegans     Gainesville   M 5.22   2.73  7.10  9.88       May 2019.0
## 1924  K.elegans     Gainesville   M 5.34   2.86  8.11 10.90       May 2019.0
## 1925  K.elegans     Gainesville   F 7.60   3.95  9.67 13.80       May 2019.0
## 1926  K.elegans     Gainesville   F 6.98   3.60  8.95 12.30       May 2019.0
## 1927  K.elegans     Gainesville   F 5.91   3.20  8.80 11.86       May 2019.0
## 1928  K.elegans     Gainesville   M 6.24   3.47  9.09 12.80       May 2019.0
## 1929  K.elegans     Gainesville   F 6.30   3.56  9.09 11.94       May 2019.0
## 1930  K.elegans     Gainesville   F 8.09   3.55 10.02 13.84       May 2019.0
## 1931  K.elegans     Gainesville   F 7.98   3.91  9.75 13.98       May 2019.0
## 1932  K.elegans     Gainesville   F 8.64   3.54  9.31 13.34       May 2019.0
## 1933  K.elegans     Gainesville   F 5.74   3.28  8.81 11.81       May 2019.0
## 1934  K.elegans     Gainesville   F 8.28   3.83  9.90 13.64       May 2019.0
## 1935  K.elegans     Gainesville   F 5.22   2.91  5.37  8.36       May 2019.0
## 1936  K.elegans     Gainesville   F 5.42   2.96  7.71 10.13       May 2019.0
## 1937  K.elegans     Gainesville   F 7.80   3.45 10.34 13.52       May 2019.0
## 1938  K.elegans     Gainesville   F 8.16   3.80 10.10 13.21       May 2019.0
## 1939  K.elegans     Gainesville   F 8.22   4.05  9.98 13.50       May 2019.0
## 1940  K.elegans     Gainesville   M 6.19   2.98  9.11 12.05       May 2019.0
## 1941  K.elegans     Gainesville   F 6.10   2.77  8.05 10.45       May 2019.0
## 1942  K.elegans     Gainesville   F 8.83   3.64 10.62 13.59       May 2019.0
## 1943  K.elegans     Gainesville   M 8.63   4.09 10.17 14.07       May 2019.0
## 1944  K.elegans     Gainesville   F 7.73   3.43  9.08 12.52       May 2019.0
## 1945  K.elegans     Gainesville   F 6.96   2.75  7.98 11.29       May 2019.0
## 1946  K.elegans     Gainesville   M 6.00   3.07  8.58 11.37       May 2019.0
## 1947  K.elegans     Gainesville   F 5.76   3.11  8.56 10.96       May 2019.0
## 1948  K.elegans     Gainesville   F 7.94   3.68 10.38 13.63       May 2019.0
## 1949  K.elegans     Gainesville   F 8.55   3.79 10.35 14.16       May 2019.0
## 1950  K.elegans     Gainesville   F 5.71   3.19  7.81 10.87       May 2019.0
## 1951  K.elegans     Gainesville   F 5.68   2.89  7.87 10.53       May 2019.0
## 1952  K.elegans     Gainesville   F 5.48   2.91  8.12 11.38       May 2019.0
## 1953  K.elegans     Gainesville   F 7.96   3.74 10.23 13.69       May 2019.0
## 1954  K.elegans     Gainesville   F 5.95   3.11  8.84 11.05       May 2019.0
## 1955  K.elegans     Gainesville   F 5.34   3.05  8.07 10.83       May 2019.0
## 1956  K.elegans     Gainesville   F 8.15   3.92 10.21 13.99       May 2019.0
## 1957  K.elegans     Gainesville   F 5.89   3.31  8.68 11.40       May 2019.0
## 1958  K.elegans     Gainesville   M 6.44   3.29  9.33 12.58       May 2019.0
## 1959  K.elegans     Gainesville   F 7.27   3.47  9.27 12.69       May 2019.0
## 1960  K.elegans     Gainesville   F 5.77   3.39  8.59 11.61       May 2019.0
## 1961  K.elegans     Gainesville   F 5.74   2.96  8.42 11.34       May 2019.0
## 1962  K.elegans     Gainesville   F 8.25   3.41 10.46 13.77       May 2019.0
## 1963  K.elegans     Gainesville   F 8.11   3.47  9.69 13.42       May 2019.0
## 1964  K.elegans     Gainesville   F 5.68   3.20  8.13 11.37       May 2019.0
## 1965  K.elegans       Homestead   M 5.35   2.39  3.95  6.59       May 2019.0
## 1966  K.elegans       Homestead   M 7.32   3.05  8.09 11.32       May 2019.0
## 1967  K.elegans       Homestead   F 5.50   2.53  4.63  7.37       May 2019.0
## 1968  K.elegans       Homestead   F 6.10   2.88  7.11 10.12       May 2019.0
## 1969  K.elegans       Homestead   M 5.37   2.68  7.29 10.01       May 2019.0
## 1970  K.elegans       Homestead   M 5.94   2.99  8.30 11.24       May 2019.0
## 1971  K.elegans       Homestead   M 5.11   2.47  4.09  7.03       May 2019.0
## 1972  K.elegans       Homestead   M 5.34   2.59  4.94  7.80       May 2019.0
## 1973  K.elegans       Homestead   M 5.16   2.70  5.46  8.24       May 2019.0
## 1974  K.elegans       Homestead   M 4.95   2.58  5.24  8.09       May 2019.0
## 1975  K.elegans       Homestead   F 6.25   2.76  4.25  7.31       May 2019.0
## 1976  K.elegans       Homestead   M 4.96   2.40  4.19  6.98       May 2019.0
## 1977  K.elegans       Homestead   M 5.87   3.36  8.61 11.66       May 2019.0
## 1978  K.elegans       Homestead   M 5.05   2.42  4.21  7.10       May 2019.0
## 1979  K.elegans       Homestead   M 5.01   2.52  4.18  7.18       May 2019.0
## 1980  K.elegans       Homestead   M 5.51   2.91  7.84 10.66       May 2019.0
## 1981  K.elegans       Homestead   F 7.49   3.30  7.31 10.63       May 2019.0
## 1982  K.elegans       Homestead   F 6.44   2.89  4.68  7.83       May 2019.0
## 1983 C.corindum       Key_Largo   M 5.41   2.56  4.47  7.27       May 2019.0
## 1984 C.corindum       Key_Largo   M 5.82   2.59  5.40  8.37       May 2019.0
## 1985 C.corindum       Key_Largo   F 6.10   2.52  4.63  7.48       May 2019.0
## 1986 C.corindum       Key_Largo   M 5.63   2.69  6.50  9.31       May 2019.0
## 1987 C.corindum       Key_Largo   F 8.52   3.70  9.46 12.75       May 2019.0
## 1988 C.corindum       Key_Largo   M 5.83   2.91  7.90 10.75       May 2019.0
## 1989 C.corindum       Key_Largo   M 5.45   2.73  7.29 10.19       May 2019.0
## 1990 C.corindum       Key_Largo   F 7.69   3.10  5.47  9.23       May 2019.0
## 1991 C.corindum       Key_Largo   F 7.05   3.17  6.32  9.98       May 2019.0
## 1992 C.corindum       Key_Largo   F 7.32   2.95  6.57  9.81       May 2019.0
## 1993 C.corindum       Key_Largo   M 4.99   2.13  3.52  5.96       May 2019.0
## 1994 C.corindum       Key_Largo   M 6.05   2.63  4.65  7.55       May 2019.0
## 1995 C.corindum       Key_Largo   F 6.86   3.25  6.33  9.51       May 2019.0
## 1996 C.corindum       Key_Largo   F 7.43   3.18  8.17 11.61       May 2019.0
## 1997 C.corindum       Key_Largo   M 5.91   2.85  5.25  8.22       May 2019.0
## 1998 C.corindum       Key_Largo   M 5.28   2.78  4.91  7.90       May 2019.0
## 1999 C.corindum       Key_Largo   F 6.38   2.88  5.09  8.23       May 2019.0
## 2000 C.corindum       Key_Largo   F 8.20   3.33  8.98 12.25       May 2019.0
## 2001 C.corindum       Key_Largo   M 6.14   2.94  8.04 11.04       May 2019.0
## 2002 C.corindum       Key_Largo   M 5.59   2.80  7.03  9.98       May 2019.0
## 2003 C.corindum       Key_Largo   M 5.74   2.79  7.30 10.09       May 2019.0
## 2004 C.corindum       Key_Largo   M 5.49   2.53  4.48  7.32       May 2019.0
## 2005 C.corindum       Key_Largo   M 6.14   3.19  8.26 11.03       May 2019.0
## 2006 C.corindum       Key_Largo   M 6.26   3.01  8.48 11.78       May 2019.0
## 2007 C.corindum       Key_Largo   F 6.48   2.85  5.18  8.17       May 2019.0
## 2008 C.corindum       Key_Largo   M 8.71   3.55  9.32 13.06       May 2019.0
## 2009 C.corindum       Key_Largo   F 6.42   2.99  4.71  8.33       May 2019.0
## 2010 C.corindum       Key_Largo   M 5.21   2.49  4.42  7.14       May 2019.0
## 2011 C.corindum       Key_Largo   M 5.39   2.35  4.99  7.70       May 2019.0
## 2012 C.corindum       Key_Largo   M 5.73   2.82  6.37  9.26       May 2019.0
## 2013 C.corindum       Key_Largo   M 6.00   2.89  7.90 10.75       May 2019.0
## 2014 C.corindum       Key_Largo   F 6.31   2.92  5.05  8.23       May 2019.0
## 2015 C.corindum       Key_Largo   M 5.54   3.19  8.50 11.95       May 2019.0
## 2016 C.corindum       Key_Largo   M 5.31   2.53  4.35  7.37       May 2019.0
## 2017 C.corindum       Key_Largo   M 5.38   2.53  4.80  7.88       May 2019.0
## 2018 C.corindum       Key_Largo   M 5.33   2.38  4.37  7.02       May 2019.0
## 2019 C.corindum       Key_Largo   M 6.25   3.06  7.77 10.42       May 2019.0
## 2020 C.corindum       Key_Largo   F 6.52   3.05  5.20  8.53       May 2019.0
## 2021 C.corindum       Key_Largo   F 7.14   3.18  5.68  9.11       May 2019.0
## 2022 C.corindum       Key_Largo   F 6.91   2.88  5.02  8.39       May 2019.0
## 2023 C.corindum       Key_Largo   F 6.71   2.94  5.10  8.41       May 2019.0
## 2024 C.corindum       Key_Largo   M 5.89   2.87  7.75 10.51       May 2019.0
## 2025 C.corindum       Key_Largo   M 5.92   2.68  4.94  7.93       May 2019.0
## 2026 C.corindum       Key_Largo   M 5.69   2.66  4.50  7.48       May 2019.0
## 2027 C.corindum       Key_Largo   F 6.60   2.72  5.19  8.48       May 2019.0
## 2028 C.corindum       Key_Largo   M 5.48   2.49  4.88  7.61       May 2019.0
## 2029 C.corindum       Key_Largo   M 5.67   2.77  6.50  9.22       May 2019.0
## 2030 C.corindum       Key_Largo   F 7.91   3.40  8.90 12.33       May 2019.0
## 2031 C.corindum       Key_Largo   M 5.66   2.76  7.51 10.41       May 2019.0
## 2032 C.corindum       Key_Largo   F 5.87   2.56  3.94  6.86       May 2019.0
## 2033 C.corindum       Key_Largo   M 5.38   2.57  4.26  7.06       May 2019.0
## 2034 C.corindum       Key_Largo   M 6.26   2.99  8.15 10.85       May 2019.0
## 2035 C.corindum       Key_Largo   M 5.75   2.86  5.15  8.19       May 2019.0
## 2036 C.corindum       Key_Largo   M 6.57   3.15  8.49 11.60       May 2019.0
## 2037 C.corindum       Key_Largo   M 5.38   2.61  5.23  8.28       May 2019.0
## 2038 C.corindum       Key_Largo   M 5.84   2.88  7.30 10.19       May 2019.0
## 2039 C.corindum       Key_Largo   F 7.45   3.23  5.50  8.98       May 2019.0
## 2040 C.corindum       Key_Largo   M 5.21   2.41  4.14  6.98       May 2019.0
## 2041 C.corindum       Key_Largo   F 6.72   3.04  5.55  9.10       May 2019.0
## 2042 C.corindum       Key_Largo   F 7.33   3.13  8.33 11.78       May 2019.0
## 2043 C.corindum       Key_Largo   F 6.40   2.89  4.63  8.01       May 2019.0
## 2044 C.corindum       Key_Largo   M 5.70   2.75  5.72  8.65       May 2019.0
## 2045 C.corindum       Key_Largo   M 5.10   2.45  4.56  7.52       May 2019.0
## 2046 C.corindum       Key_Largo   M 5.34   2.50  4.44  7.39       May 2019.0
## 2047 C.corindum       Key_Largo   F 6.19   2.79  4.47  7.53       May 2019.0
## 2048 C.corindum       Key_Largo   M 5.49   2.53  4.94  7.90       May 2019.0
## 2049 C.corindum       Key_Largo   M 5.14   2.42  4.09  7.02       May 2019.0
## 2050 C.corindum       Key_Largo   M 5.20   2.50  6.72  9.71       May 2019.0
## 2051 C.corindum       Key_Largo   M 5.67   2.71  4.88  7.60       May 2019.0
## 2052 C.corindum       Key_Largo   F 6.39   2.93  5.05  8.41       May 2019.0
## 2053 C.corindum       Key_Largo   M 6.42   3.08  8.51 11.34       May 2019.0
## 2054 C.corindum       Key_Largo   M 5.42   2.70  4.52  7.48       May 2019.0
## 2055 C.corindum       Key_Largo   M 5.80   2.80  4.84  7.84       May 2019.0
## 2056 C.corindum       Key_Largo   M 5.71   2.63  7.06  9.78       May 2019.0
## 2057 C.corindum       Key_Largo   M 5.91   2.72  5.04  7.92       May 2019.0
## 2058 C.corindum       Key_Largo   M 5.85   2.75  5.58  8.48       May 2019.0
## 2059  K.elegans     Lake_Placid   F 5.34   3.15  8.25 11.32       May 2019.0
## 2060  K.elegans     Lake_Placid   F 5.86   2.89  8.09 11.20       May 2019.0
## 2061  K.elegans     Lake_Placid   F 6.65   2.94  7.56 11.37       May 2019.0
## 2062  K.elegans     Lake_Placid   F 8.04   3.07  9.40 12.70       May 2019.0
## 2063  K.elegans     Lake_Placid   F 7.22   3.50  9.50 13.00       May 2019.0
## 2064  K.elegans     Lake_Placid   F 7.51   3.48  9.86 13.29       May 2019.0
## 2065  K.elegans     Lake_Placid   F 7.78   3.81 10.12 13.14       May 2019.0
## 2066  K.elegans     Lake_Placid   F 5.16   2.99  8.37 11.13       May 2019.0
## 2067  K.elegans     Lake_Placid   F 6.40   3.12  5.92  9.61       May 2019.0
## 2068  K.elegans     Lake_Placid   F 7.53   3.85  9.15 12.61       May 2019.0
## 2069  K.elegans     Lake_Placid   M 5.64   2.52  4.98  7.60       May 2019.0
## 2070  K.elegans     Lake_Placid   F 8.57   4.05 10.50 13.99       May 2019.0
## 2071  K.elegans     Lake_Placid   M 7.18   3.59 10.02 13.28       May 2019.0
## 2072  K.elegans     Lake_Placid   F 8.27   3.48 10.12 12.86       May 2019.0
## 2073  K.elegans     Lake_Placid   M 5.89   3.03  8.87 12.06       May 2019.0
## 2074  K.elegans     Lake_Placid   M 5.45   3.08  7.84 10.35       May 2019.0
## 2075  K.elegans     Lake_Placid   F 5.22   2.72  8.01 10.65       May 2019.0
## 2076  K.elegans     Lake_Placid   F 6.25   2.67  4.90  8.20       May 2019.0
## 2077  K.elegans     Lake_Placid   F 5.49   2.85  7.22 10.06       May 2019.0
## 2078  K.elegans     Lake_Placid   F 5.90   2.64  4.54  7.45       May 2019.0
## 2079  K.elegans     Lake_Placid   F 5.98   3.13  8.34 12.41       May 2019.0
## 2080  K.elegans     Lake_Placid   F 5.61   3.15  8.68 11.28       May 2019.0
## 2081  K.elegans     Lake_Placid   F 8.49   3.59  9.49 13.13       May 2019.0
## 2082  K.elegans     Lake_Placid   F 7.88   3.48  9.68 12.85       May 2019.0
## 2083  K.elegans     Lake_Placid   F 5.25   2.91  8.44 11.34       May 2019.0
## 2084  K.elegans     Lake_Placid   M 5.79   3.29  8.80 11.93       May 2019.0
## 2085  K.elegans     Lake_Placid   F 6.36   3.28  9.53 12.03       May 2019.0
## 2086  K.elegans     Lake_Placid   F 5.53   3.55  8.09 11.33       May 2019.0
## 2087  K.elegans     Lake_Placid   F 6.94   3.20  8.69 11.45       May 2019.0
## 2088  K.elegans     Lake_Placid   F 8.29   4.22  9.49 13.15       May 2019.0
## 2089  K.elegans     Lake_Placid   F 8.39   3.45  9.61 12.97       May 2019.0
## 2090  K.elegans     Lake_Placid   F 8.12   3.98  7.91 13.70       May 2019.0
## 2091  K.elegans     Lake_Placid   F 5.79   2.97  8.34 11.29       May 2019.0
## 2092  K.elegans     Lake_Placid   F 5.54   2.59  7.83 11.64       May 2019.0
## 2093  K.elegans     Lake_Placid   F 5.04   3.18  7.59 10.55       May 2019.0
## 2094  K.elegans     Lake_Placid   F 8.56   4.05 10.14 13.77       May 2019.0
## 2095  K.elegans     Lake_Placid   F 6.25   3.21  8.75 10.86       May 2019.0
## 2096  K.elegans     Lake_Placid   F 6.48   2.78  6.18  9.33       May 2019.0
## 2097  K.elegans     Lake_Placid   F 4.88   2.67  7.77 10.19       May 2019.0
## 2098  K.elegans     Lake_Placid   F 5.36   3.22  8.59 10.98       May 2019.0
## 2099  K.elegans     Lake_Placid   F 6.82   3.15  8.41 11.61       May 2019.0
## 2100  K.elegans     Lake_Placid   F 8.49   3.45  9.43 12.33       May 2019.0
## 2101  K.elegans     Lake_Placid   F 8.11   3.65  9.43 12.79       May 2019.0
## 2102  K.elegans     Lake_Placid   F 7.93   3.68 10.00 12.98       May 2019.0
## 2103  K.elegans     Lake_Placid   M 5.15   2.64  5.22  7.96       May 2019.0
## 2104  K.elegans     Lake_Placid   F 6.70   3.22  8.70 11.39       May 2019.0
## 2105  K.elegans     Lake_Placid   F 7.39   3.43  9.82 13.14       May 2019.0
## 2106  K.elegans     Lake_Placid   M 5.78   2.72  5.10  8.34       May 2019.0
## 2107  K.elegans     Lake_Placid   M 5.75   3.12  8.75 11.56       May 2019.0
## 2108  K.elegans     Lake_Placid   F 6.22   2.83  4.95  8.09       May 2019.0
## 2109  K.elegans     Lake_Placid   M 5.81   3.09  8.56 12.14       May 2019.0
## 2110  K.elegans     Lake_Placid   F 7.49   3.55  9.41 12.23       May 2019.0
## 2111  K.elegans     Lake_Placid   M 5.13   2.80  7.63 10.64       May 2019.0
## 2112  K.elegans     Lake_Placid   F 7.72   3.78  9.90 13.51       May 2019.0
## 2113  K.elegans     Lake_Placid   M 5.66   3.01  7.76 11.07       May 2019.0
## 2114  K.elegans     Lake_Placid   F 7.64   3.25  9.80 13.89       May 2019.0
## 2115  K.elegans     Lake_Placid   F 5.63   3.13  8.43 10.67       May 2019.0
## 2116  K.elegans     Lake_Placid   F 7.80   3.52  9.79 12.53       May 2019.0
## 2117  K.elegans     Lake_Placid   F 5.26   3.12  7.94 11.15       May 2019.0
## 2118  K.elegans     Lake_Placid   F 5.40   2.88  7.92 10.51       May 2019.0
## 2119  K.elegans     Lake_Placid   F 5.66   3.34  8.58 11.75       May 2019.0
## 2120  K.elegans     Lake_Placid   M 5.75   3.16  8.29 11.25       May 2019.0
## 2121 C.corindum North_Key_Largo   F 8.48   3.57  9.14 12.92       May 2019.0
## 2122 C.corindum North_Key_Largo   M 6.27   3.04  8.40 11.46       May 2019.0
## 2123 C.corindum North_Key_Largo   M 5.83   2.70  7.46 10.24       May 2019.0
## 2124 C.corindum North_Key_Largo   M 5.83   3.12  8.40 11.43       May 2019.0
## 2125 C.corindum North_Key_Largo   M 5.50   2.59  5.11  7.88       May 2019.0
## 2126 C.corindum North_Key_Largo   F 8.12   3.33  9.08 12.40       May 2019.0
## 2127 C.corindum North_Key_Largo   M 6.12   2.87  5.81  8.91       May 2019.0
## 2128 C.corindum North_Key_Largo   M 6.50   3.09  8.10 11.04       May 2019.0
## 2129 C.corindum North_Key_Largo   F 8.73   3.59 10.16 13.64       May 2019.0
## 2130 C.corindum North_Key_Largo   M 6.03   2.96  8.02 10.92       May 2019.0
## 2131 C.corindum North_Key_Largo   M 6.10   2.79  4.88  7.89       May 2019.0
## 2132 C.corindum North_Key_Largo   M 5.64   2.71  7.75 10.58       May 2019.0
## 2133 C.corindum North_Key_Largo   M 6.23   3.10  8.35 11.35       May 2019.0
## 2134 C.corindum North_Key_Largo   M 5.66   2.61  7.34 10.10       May 2019.0
## 2135 C.corindum North_Key_Largo   M 5.50   2.75  7.38 10.10       May 2019.0
## 2136 C.corindum North_Key_Largo   M 5.77   2.60  4.81  7.74       May 2019.0
## 2137 C.corindum North_Key_Largo   M 6.19   2.99  8.40 11.30       May 2019.0
## 2138 C.corindum North_Key_Largo   M 5.60   2.73  7.34 10.22       May 2019.0
## 2139 C.corindum North_Key_Largo   M 6.75   3.07  8.23 11.19       May 2019.0
## 2140 C.corindum North_Key_Largo   M 6.32   3.28  8.75 11.80       May 2019.0
## 2141 C.corindum North_Key_Largo   M 6.61   3.08  8.27 11.12       May 2019.0
## 2142 C.corindum North_Key_Largo   F 7.08   3.37  5.67  9.11       May 2019.0
## 2143 C.corindum North_Key_Largo   M 6.54   3.13  8.64 11.66       May 2019.0
## 2144 C.corindum North_Key_Largo   M 5.53   2.51  4.06  6.85       May 2019.0
## 2145 C.corindum North_Key_Largo   F 7.30   3.17  5.24  8.67       May 2019.0
## 2146 C.corindum North_Key_Largo   M 6.29   2.94  7.89 10.84       May 2019.0
## 2147 C.corindum North_Key_Largo   M 5.39   2.52  4.53  7.31       May 2019.0
## 2148 C.corindum North_Key_Largo   F 8.23   3.52  8.89 12.12       May 2019.0
## 2149 C.corindum North_Key_Largo   M 5.88   2.69  5.22  8.29       May 2019.0
## 2150 C.corindum North_Key_Largo   M 5.62   2.93  7.63 10.70       May 2019.0
## 2151 C.corindum North_Key_Largo   F 7.03   3.15  5.28  8.83       May 2019.0
## 2152 C.corindum North_Key_Largo   F 6.41   2.69  4.39  7.73       May 2019.0
## 2153 C.corindum North_Key_Largo   F 7.09   3.06  8.14 11.49       May 2019.0
## 2154 C.corindum North_Key_Largo   M 6.17   3.08  8.54 11.11       May 2019.0
## 2155 C.corindum North_Key_Largo   M 5.56   2.89  7.83 10.56       May 2019.0
## 2156 C.corindum North_Key_Largo   F 6.80   3.01  7.98 11.10       May 2019.0
## 2157 C.corindum North_Key_Largo   F 7.55   3.35  8.91 12.04       May 2019.0
## 2158 C.corindum North_Key_Largo   F 7.07   3.16  8.43 11.51       May 2019.0
## 2159 C.corindum North_Key_Largo   M 6.25   3.11  8.24 11.24       May 2019.0
## 2160 C.corindum North_Key_Largo   F 6.80   3.07  4.91  8.14       May 2019.0
## 2161 C.corindum North_Key_Largo   F 8.04   3.36  8.93 12.34       May 2019.0
## 2162 C.corindum North_Key_Largo   F 6.37   2.68  7.29 10.29       May 2019.0
## 2163 C.corindum North_Key_Largo   M 5.53   2.52  3.80  6.76       May 2019.0
## 2164 C.corindum North_Key_Largo   F 6.13   2.85  4.68  8.08       May 2019.0
## 2165 C.corindum North_Key_Largo   F 7.20   3.17  7.87 11.16       May 2019.0
## 2166 C.corindum North_Key_Largo   M 6.98   3.14  8.39 11.65       May 2019.0
## 2167 C.corindum North_Key_Largo   F 7.65   3.52  8.94 12.39       May 2019.0
## 2168 C.corindum North_Key_Largo   M 6.09   2.80  7.72 10.39       May 2019.0
## 2169 C.corindum North_Key_Largo   M 5.26   2.57  4.43  7.31       May 2019.0
## 2170 C.corindum North_Key_Largo   M 7.15   3.38  9.10 12.57       May 2019.0
## 2171 C.corindum North_Key_Largo   M 5.43   2.61  7.30  9.97       May 2019.0
## 2172 C.corindum North_Key_Largo   M 4.95   2.18  3.80  6.54       May 2019.0
## 2173 C.corindum North_Key_Largo   M 5.25   2.67  7.72 10.48       May 2019.0
## 2174 C.corindum North_Key_Largo   M 4.87   2.30  4.14  6.76       May 2019.0
## 2175 C.corindum North_Key_Largo   F 8.98   3.81  9.92 13.40       May 2019.0
## 2176 C.corindum North_Key_Largo   M 5.96   2.87  7.76 10.64       May 2019.0
## 2177 C.corindum North_Key_Largo   M 5.73   2.91  7.49 10.56       May 2019.0
## 2178 C.corindum North_Key_Largo   M 5.80   2.86  4.92  7.79       May 2019.0
## 2179 C.corindum North_Key_Largo   M 5.72   2.76  4.62  7.55       May 2019.0
## 2180 C.corindum North_Key_Largo   M 5.33   2.58  4.95  7.58       May 2019.0
## 2181 C.corindum North_Key_Largo   M 5.35   2.76  5.71  8.63       May 2019.0
## 2182 C.corindum North_Key_Largo   F 6.63   2.91  4.79  8.29       May 2019.0
## 2183 C.corindum North_Key_Largo   F 5.96   2.67  4.52  7.66       May 2019.0
## 2184 C.corindum North_Key_Largo   F 7.54   3.56  9.03 12.33       May 2019.0
## 2185 C.corindum North_Key_Largo   M 5.76   2.79  7.43 10.63       May 2019.0
## 2186 C.corindum North_Key_Largo   F 7.62   3.14  6.47  9.83       May 2019.0
## 2187 C.corindum North_Key_Largo   F 7.50   3.24  8.72 11.94       May 2019.0
## 2188 C.corindum North_Key_Largo   F 8.22   3.74  9.87 13.73       May 2019.0
## 2189 C.corindum North_Key_Largo   F 9.78   3.74  9.92 13.49       May 2019.0
## 2190 C.corindum North_Key_Largo   F 6.63   3.08  7.69 10.77       May 2019.0
## 2191 C.corindum North_Key_Largo   F 6.85   3.30  5.73  9.11       May 2019.0
## 2192 C.corindum North_Key_Largo   M 5.92   3.02  8.06 10.91       May 2019.0
## 2193 C.corindum North_Key_Largo   M 5.25   2.64  4.43  7.41       May 2019.0
## 2194 C.corindum North_Key_Largo   M 5.21   2.55  4.23  7.01       May 2019.0
## 2195 C.corindum North_Key_Largo   M 5.93   2.78  7.83 10.63       May 2019.0
## 2196 C.corindum North_Key_Largo   F 7.79   3.75  9.81 13.10       May 2019.0
## 2197 C.corindum North_Key_Largo   M 5.42   2.66  4.51  7.41       May 2019.0
## 2198 C.corindum North_Key_Largo   M 5.98   2.98  7.86 10.87       May 2019.0
## 2199 C.corindum North_Key_Largo   M 5.72   2.75  7.50 10.28       May 2019.0
## 2200 C.corindum North_Key_Largo   M 5.65   2.64  4.69  7.57       May 2019.0
## 2201 C.corindum North_Key_Largo   M 5.73   2.73  7.56 10.58       May 2019.0
## 2202 C.corindum North_Key_Largo   F 6.21   2.96  4.60  7.96       May 2019.0
## 2203 C.corindum North_Key_Largo   M 6.06   3.05  8.42 11.41       May 2019.0
## 2204 C.corindum North_Key_Largo   M 5.62   2.68  4.76  7.61       May 2019.0
## 2205 C.corindum North_Key_Largo   M 5.31   2.50  4.30  7.01       May 2019.0
## 2206 C.corindum North_Key_Largo   M 5.78   2.78  7.69 10.75       May 2019.0
## 2207 C.corindum North_Key_Largo   M 5.50   2.63  7.33 10.10       May 2019.0
## 2208 C.corindum North_Key_Largo   M 5.99   2.95  8.05 11.10       May 2019.0
## 2209 C.corindum North_Key_Largo   F 7.00   2.97  5.01  8.47       May 2019.0
## 2210 C.corindum North_Key_Largo   M 5.32   2.53  4.62  7.35       May 2019.0
## 2211 C.corindum North_Key_Largo   M 5.14   2.35  5.62  8.42       May 2019.0
## 2212 C.corindum North_Key_Largo   M 5.26   2.58  4.20  7.15       May 2019.0
## 2213 C.corindum North_Key_Largo   M 5.34   2.44  4.33  7.04       May 2019.0
## 2214 C.corindum North_Key_Largo   M 5.33   2.46  6.85  9.35       May 2019.0
## 2215 C.corindum North_Key_Largo   M 5.18   2.61  4.47  7.49       May 2019.0
## 2216 C.corindum North_Key_Largo   M 4.98   2.47  4.14  6.89       May 2019.0
## 2217 C.corindum North_Key_Largo   M 5.47   2.60  5.38  8.41       May 2019.0
## 2218 C.corindum North_Key_Largo   M 5.44   2.57  4.65  7.60       May 2019.0
## 2219 C.corindum North_Key_Largo   M 5.73   2.87  7.73 10.69       May 2019.0
## 2220 C.corindum North_Key_Largo   F 5.71   2.73  4.51  7.49       May 2019.0
## 2221 C.corindum North_Key_Largo   F 5.67   2.58  4.44  7.55       May 2019.0
## 2222 C.corindum North_Key_Largo   F 6.85   3.06  4.53  8.26       May 2019.0
## 2223 C.corindum North_Key_Largo   F 8.11   3.58  9.45 12.86       May 2019.0
## 2224 C.corindum North_Key_Largo   M 5.91   2.85  7.61 10.42       May 2019.0
## 2225 C.corindum North_Key_Largo   F 7.76   3.44  5.99  9.68       May 2019.0
## 2226 C.corindum North_Key_Largo   M 5.93   2.84  7.56 10.29       May 2019.0
## 2227 C.corindum North_Key_Largo   F 6.85   2.79  4.77  8.03       May 2019.0
## 2228 C.corindum North_Key_Largo   F 7.07   3.03  5.21  8.29       May 2019.0
## 2229 C.corindum North_Key_Largo   F 7.00   3.12  5.23  8.70       May 2019.0
## 2230 C.corindum North_Key_Largo   F 6.85   3.10  5.65  8.83       May 2019.0
## 2231 C.corindum North_Key_Largo   F 6.03   2.78  4.78  8.05       May 2019.0
## 2232 C.corindum North_Key_Largo   F 6.75   2.87  5.35  8.72       May 2019.0
## 2233 C.corindum North_Key_Largo   F 7.89   3.44  8.95 12.39       May 2019.0
## 2234 C.corindum North_Key_Largo   M 5.72   2.74  5.91  8.62       May 2019.0
## 2235 C.corindum North_Key_Largo   F 6.38   2.93  5.19  8.24       May 2019.0
## 2236 C.corindum North_Key_Largo   F 7.77   3.42  9.07 12.61       May 2019.0
## 2237 C.corindum North_Key_Largo   M 6.30   3.06  7.84 10.76       May 2019.0
## 2238 C.corindum North_Key_Largo   M 5.23   2.37  4.67  7.68       May 2019.0
## 2239 C.corindum North_Key_Largo   F 8.73   3.90 10.42 14.30       May 2019.0
## 2240 C.corindum North_Key_Largo   M 6.73   3.31  8.99 12.06       May 2019.0
## 2241 C.corindum North_Key_Largo   F 6.78   3.01  4.59  8.11       May 2019.0
## 2242 C.corindum North_Key_Largo   F 7.09   3.23  6.19  9.61       May 2019.0
## 2243 C.corindum North_Key_Largo   M 6.17   3.42  8.80 11.94       May 2019.0
## 2244 C.corindum North_Key_Largo   M 6.08   3.03  8.21 11.08       May 2019.0
## 2245 C.corindum North_Key_Largo   F 8.43   3.27  8.68 12.17       May 2019.0
## 2246 C.corindum North_Key_Largo   F 8.73   3.73  9.51 13.01       May 2019.0
## 2247 C.corindum North_Key_Largo   F 8.79   3.73 10.31 13.87       May 2019.0
## 2248 C.corindum North_Key_Largo   F 6.71   3.14  5.35  8.69       May 2019.0
## 2249 C.corindum North_Key_Largo   M 6.13   3.11  8.11 11.14       May 2019.0
## 2250 C.corindum North_Key_Largo   M 6.33   2.84  5.12  8.23       May 2019.0
## 2251 C.corindum North_Key_Largo   F 7.41   3.26  8.23 11.43       May 2019.0
## 2252 C.corindum North_Key_Largo   F 7.11   3.18  6.11  9.59       May 2019.0
## 2253 C.corindum North_Key_Largo   M 5.61   2.63  4.86  7.75       May 2019.0
## 2254 C.corindum North_Key_Largo   M 6.31   3.39  7.94 11.35       May 2019.0
## 2255 C.corindum North_Key_Largo   M 5.32   2.60  4.47  7.36       May 2019.0
## 2256 C.corindum North_Key_Largo   M 5.37   2.75  4.65  7.60       May 2019.0
## 2257 C.corindum North_Key_Largo   F 6.53   2.84  4.42  7.79       May 2019.0
## 2258 C.corindum North_Key_Largo   F 6.39   2.83  4.59  7.75       May 2019.0
## 2259 C.corindum North_Key_Largo   F 6.54   2.88  5.00  8.42       May 2019.0
## 2260 C.corindum North_Key_Largo   M 5.42   2.58  4.97  7.88       May 2019.0
## 2261 C.corindum North_Key_Largo   F 7.08   3.01  5.71  9.02       May 2019.0
## 2262 C.corindum North_Key_Largo   F 6.02   2.80  4.81  7.92       May 2019.0
## 2263 C.corindum North_Key_Largo   M 6.20   3.05  8.04 10.90       May 2019.0
## 2264 C.corindum North_Key_Largo   M 5.97   3.01  8.08 10.97       May 2019.0
## 2265 C.corindum North_Key_Largo   F 8.16   3.50  8.92 12.44       May 2019.0
## 2266 C.corindum North_Key_Largo   F 8.35   3.90  9.53 13.14       May 2019.0
## 2267 C.corindum North_Key_Largo   M 5.60   2.67  4.65  7.89       May 2019.0
## 2268 C.corindum North_Key_Largo   M 6.03   2.79  7.32  9.96       May 2019.0
## 2269 C.corindum North_Key_Largo   F 8.02   3.73  9.65 13.41       May 2019.0
## 2270 C.corindum North_Key_Largo   F 8.28   3.63  9.08 12.60       May 2019.0
## 2271 C.corindum North_Key_Largo   M 6.09   2.90  8.24 11.35       May 2019.0
## 2272 C.corindum North_Key_Largo   M 5.95   2.70  7.65 10.58       May 2019.0
## 2273 C.corindum North_Key_Largo   M 5.40   2.57  4.67  7.48       May 2019.0
## 2274 C.corindum North_Key_Largo   F 7.83   3.42  8.92 12.28       May 2019.0
## 2275 C.corindum North_Key_Largo   F 6.35   2.82  4.84  8.16       May 2019.0
## 2276 C.corindum North_Key_Largo   F 6.72   3.06  5.12  8.63       May 2019.0
## 2277 C.corindum North_Key_Largo   F 8.32   3.33  8.82 12.31       May 2019.0
## 2278 C.corindum North_Key_Largo   F 7.08   2.98  4.99  8.25       May 2019.0
## 2279 C.corindum North_Key_Largo   M 6.02   3.05  8.40 11.35       May 2019.0
## 2280 C.corindum North_Key_Largo   F 6.18   2.78  4.85  8.09       May 2019.0
## 2281 C.corindum North_Key_Largo   F 8.52   3.51  9.63 12.95       May 2019.0
## 2282 C.corindum North_Key_Largo   M 4.98   2.12  3.88  6.52       May 2019.0
## 2283 C.corindum North_Key_Largo   M 5.27   2.58  4.71  7.51       May 2019.0
## 2284 C.corindum North_Key_Largo   M 5.38   2.68  4.98  7.84       May 2019.0
## 2285 C.corindum North_Key_Largo   F 8.23   3.57  9.52 12.80       May 2019.0
## 2286 C.corindum North_Key_Largo   F 7.39   3.15  8.47 11.62       May 2019.0
## 2287 C.corindum North_Key_Largo   M 5.15   2.43  4.20  6.81       May 2019.0
## 2288 C.corindum North_Key_Largo   M 5.93   2.92  7.94 10.86       May 2019.0
## 2289 C.corindum North_Key_Largo   F 6.05   2.90  4.69  7.93       May 2019.0
## 2290 C.corindum North_Key_Largo   M 6.01   3.07  8.20 11.22       May 2019.0
## 2291 C.corindum North_Key_Largo   M 6.22   3.24  8.32 11.46       May 2019.0
## 2292 C.corindum North_Key_Largo   M 5.83   2.79  7.17 10.15       May 2019.0
## 2293 C.corindum North_Key_Largo   F 8.56   3.62  9.23 12.44       May 2019.0
## 2294 C.corindum North_Key_Largo   F 8.22   3.73  9.36 12.69       May 2019.0
## 2295 C.corindum North_Key_Largo   M 4.94   2.52  4.25  6.83       May 2019.0
## 2296 C.corindum North_Key_Largo   F 7.16   3.34  5.11  8.80       May 2019.0
## 2297 C.corindum North_Key_Largo   F 7.60   3.20  8.69 12.19       May 2019.0
## 2298 C.corindum North_Key_Largo   M 5.57   2.68  4.66  7.64       May 2019.0
## 2299 C.corindum North_Key_Largo   M 5.81   2.68  4.51  7.35       May 2019.0
## 2300 C.corindum North_Key_Largo   F 7.28   3.23  5.45  9.14       May 2019.0
## 2301 C.corindum North_Key_Largo   F 6.17   2.77  4.89  8.57       May 2019.0
## 2302 C.corindum North_Key_Largo   F 8.75   3.73  9.47 13.07       May 2019.0
## 2303 C.corindum North_Key_Largo   M 5.77   2.82  5.36  8.36       May 2019.0
## 2304 C.corindum North_Key_Largo   F 8.17   3.65  9.16 12.56       May 2019.0
## 2305 C.corindum North_Key_Largo   M 6.11   2.63  4.79  7.80       May 2019.0
## 2306 C.corindum North_Key_Largo   F 6.19   2.84  4.61  7.94       May 2019.0
## 2307 C.corindum North_Key_Largo   M 5.65   2.61  4.84  7.80       May 2019.0
## 2308 C.corindum North_Key_Largo   M 5.74   2.91  8.26 11.18       May 2019.0
## 2309 C.corindum North_Key_Largo   M 5.29   2.39  3.99  6.78       May 2019.0
## 2310 C.corindum North_Key_Largo   M 5.63   2.90  8.40 11.29       May 2019.0
## 2311 C.corindum North_Key_Largo   M 5.89   2.95  8.03 10.77       May 2019.0
## 2312 C.corindum North_Key_Largo   M 5.91   2.84  7.23 10.09       May 2019.0
## 2313 C.corindum North_Key_Largo   F 8.73   3.65  9.64 12.92       May 2019.0
## 2314 C.corindum North_Key_Largo   M 5.53   2.68  5.33  8.47       May 2019.0
## 2315 C.corindum North_Key_Largo   F 6.89   2.95  4.64  7.71       May 2019.0
## 2316 C.corindum North_Key_Largo   M 6.09   2.84  7.42 10.38       May 2019.0
## 2317 C.corindum North_Key_Largo   M 5.76   2.65  4.48  7.35       May 2019.0
## 2318 C.corindum North_Key_Largo   F 7.17   3.09  5.85  9.35       May 2019.0
## 2319 C.corindum North_Key_Largo   M 5.79   2.52  5.18  8.25       May 2019.0
## 2320 C.corindum North_Key_Largo   M 5.51   2.59  4.77  7.56       May 2019.0
## 2321 C.corindum North_Key_Largo   F 6.87   3.20  8.61 11.87       May 2019.0
## 2322 C.corindum North_Key_Largo   M 5.35   2.57  4.30  7.11       May 2019.0
## 2323 C.corindum North_Key_Largo   F 5.92   2.75  4.59  7.71       May 2019.0
## 2324 C.corindum North_Key_Largo   M 5.43   2.63  4.26  7.11       May 2019.0
## 2325 C.corindum North_Key_Largo   M 5.04   2.39  3.98  6.80       May 2019.0
## 2326 C.corindum North_Key_Largo   M 4.91   2.24  3.91  6.70       May 2019.0
## 2327 C.corindum North_Key_Largo   M 5.18   2.33  4.03  6.73       May 2019.0
## 2328 C.corindum North_Key_Largo   M 5.97   2.92  7.90 10.89       May 2019.0
## 2329 C.corindum North_Key_Largo   M 5.43   2.75  4.75  8.11       May 2019.0
## 2330 C.corindum North_Key_Largo   M 5.75   2.72  4.87  7.79       May 2019.0
## 2331 C.corindum North_Key_Largo   M 5.24   2.64  4.12  7.09       May 2019.0
## 2332 C.corindum North_Key_Largo   M 5.99   2.67  4.28  7.27       May 2019.0
## 2333 C.corindum North_Key_Largo   M 6.22   3.09  8.24 11.48       May 2019.0
## 2334 C.corindum North_Key_Largo   F 8.12   3.72  9.08 12.61       May 2019.0
## 2335 C.corindum North_Key_Largo   F 7.53   3.67  9.57 12.90       May 2019.0
## 2336 C.corindum North_Key_Largo   F 6.54   3.07  7.63 10.85       May 2019.0
## 2337 C.corindum North_Key_Largo   M 6.53   3.34  9.46 12.50       May 2019.0
## 2338 C.corindum North_Key_Largo   F 6.33   2.73  5.18  8.80       May 2019.0
## 2339 C.corindum North_Key_Largo   M 5.92   3.17  8.55 11.76       May 2019.0
## 2340 C.corindum North_Key_Largo   F 9.11   3.69  9.84 13.46       May 2019.0
## 2341 C.corindum North_Key_Largo   F 8.15   3.43  9.08 12.23       May 2019.0
## 2342 C.corindum North_Key_Largo   M 6.02   3.62 10.07 13.23       May 2019.0
## 2343 C.corindum North_Key_Largo   F 7.98   3.33  8.83 12.04       May 2019.0
## 2344 C.corindum North_Key_Largo   M 5.96   2.81  7.79 10.71       May 2019.0
## 2345 C.corindum North_Key_Largo   F 7.94   3.64  9.61 13.23       May 2019.0
## 2346 C.corindum North_Key_Largo   M 6.41   3.06  8.31 11.68       May 2019.0
## 2347 C.corindum North_Key_Largo   M 4.96   2.65  6.97  9.80       May 2019.0
## 2348 C.corindum North_Key_Largo   F 7.25   3.23  8.40 11.60       May 2019.0
## 2349 C.corindum North_Key_Largo   M 5.96   2.95  7.89 10.83       May 2019.0
## 2350 C.corindum North_Key_Largo   M 6.16   2.84  7.89 10.89       May 2019.0
## 2351 C.corindum North_Key_Largo   F 6.62   3.82 10.01 13.65       May 2019.0
## 2352 C.corindum North_Key_Largo   M 5.75   2.97  9.03 10.96       May 2019.0
## 2353 C.corindum North_Key_Largo   F 8.43   3.54  9.34 12.55       May 2019.0
## 2354 C.corindum North_Key_Largo   M 6.19   3.08  8.16 11.37       May 2019.0
## 2355 C.corindum North_Key_Largo   M 5.40   2.61  4.22  7.14       May 2019.0
## 2356 C.corindum North_Key_Largo   F 9.84   4.11 10.91 15.02       May 2019.0
## 2357 C.corindum North_Key_Largo   M 6.05   3.03  7.85 10.85       May 2019.0
## 2358 C.corindum North_Key_Largo   M 5.77   3.04  7.74 10.84       May 2019.0
## 2359 C.corindum North_Key_Largo   M 5.95   2.82  7.63 10.57       May 2019.0
## 2360 C.corindum North_Key_Largo   F 6.22   2.64  5.07  8.21       May 2019.0
## 2361 C.corindum North_Key_Largo   M 5.81   2.85  7.36  9.92       May 2019.0
## 2362 C.corindum North_Key_Largo   F 7.77   3.36  8.77 12.28       May 2019.0
## 2363 C.corindum North_Key_Largo   F 8.33   3.42  8.94 12.64       May 2019.0
## 2364 C.corindum North_Key_Largo   F 8.37   3.49  9.35 12.71       May 2019.0
## 2365 C.corindum North_Key_Largo   F 7.19   3.17  5.54  8.91       May 2019.0
## 2366 C.corindum North_Key_Largo   F 8.17   3.31  8.73 12.37       May 2019.0
## 2367 C.corindum North_Key_Largo   M 5.61   2.79  6.00  9.00       May 2019.0
## 2368 C.corindum North_Key_Largo   F 7.02   3.22  5.13  8.61       May 2019.0
## 2369 C.corindum  Plantation_Key   M 5.68   2.73  4.43  7.45       May 2019.0
## 2370 C.corindum  Plantation_Key   M 5.57   2.58  7.07  9.84       May 2019.0
## 2371 C.corindum  Plantation_Key   M 5.08   2.27  3.48  6.11       May 2019.0
## 2372 C.corindum  Plantation_Key   M 6.01   3.22  8.72 11.55       May 2019.0
## 2373 C.corindum  Plantation_Key   M 6.26   3.15  7.99 11.20       May 2019.0
## 2374 C.corindum  Plantation_Key   F 8.50   3.69  9.52 13.16       May 2019.0
## 2375 C.corindum  Plantation_Key   F 6.41   3.14  5.73  8.94       May 2019.0
## 2376 C.corindum  Plantation_Key   M 5.20   2.47  4.09  7.00       May 2019.0
## 2377 C.corindum  Plantation_Key   F 6.58   2.86  5.10  8.48       May 2019.0
## 2378 C.corindum  Plantation_Key   F 6.37   2.89  4.88  8.20       May 2019.0
## 2379 C.corindum  Plantation_Key   F 5.90   2.69  4.89  7.98       May 2019.0
## 2380 C.corindum  Plantation_Key   M 6.37   2.96  8.23 11.22       May 2019.0
## 2381 C.corindum  Plantation_Key   M 5.21   2.47  3.95  6.72       May 2019.0
## 2382 C.corindum  Plantation_Key   M 5.23   2.49  4.51  7.47       May 2019.0
## 2383 C.corindum  Plantation_Key   F 6.10   2.88  4.62  8.15       May 2019.0
## 2384 C.corindum  Plantation_Key   F 7.34   3.05  5.01  8.52       May 2019.0
## 2385 C.corindum  Plantation_Key   F 6.73   3.05  4.89  8.47       May 2019.0
## 2386 C.corindum  Plantation_Key   M 5.01   2.27  4.17  6.86       May 2019.0
## 2387 C.corindum  Plantation_Key   M 5.29   2.49  4.09  7.05       May 2019.0
## 2388 C.corindum  Plantation_Key   M 5.63   2.72  7.30 10.17       May 2019.0
## 2389 C.corindum  Plantation_Key   M 5.37   2.63  4.88  7.78       May 2019.0
## 2390 C.corindum  Plantation_Key   M 6.14   2.96  7.90 11.18       May 2019.0
## 2391 C.corindum  Plantation_Key   M 6.17   2.93  7.69 11.07       May 2019.0
## 2392 C.corindum  Plantation_Key   F 6.72   2.94  5.29  8.39       May 2019.0
## 2393 C.corindum  Plantation_Key   M 5.42   2.63  4.06  6.97       May 2019.0
## 2394 C.corindum  Plantation_Key   M 5.98   3.07  7.75 10.84       May 2019.0
## 2395 C.corindum  Plantation_Key   F 8.56   3.79 10.06 13.66       May 2019.0
## 2396 C.corindum  Plantation_Key   M 5.39   2.67  4.47  7.53       May 2019.0
## 2397 C.corindum  Plantation_Key   M 5.34   2.75  4.34  7.51       May 2019.0
## 2398 C.corindum  Plantation_Key   F 5.93   2.82  4.34  7.53       May 2019.0
## 2399 C.corindum  Plantation_Key   F 5.93   2.75  4.55  7.69       May 2019.0
## 2400 C.corindum  Plantation_Key   F 8.07   3.48  9.28 12.55       May 2019.0
## 2401 C.corindum  Plantation_Key   F 7.00   3.05  5.40  8.97       May 2019.0
## 2402 C.corindum  Plantation_Key   M 5.54   2.59  4.49  7.39       May 2019.0
## 2403  K.elegans     Gainesville   F 7.81   3.58  9.57 13.13   October 2019.0
## 2404  K.elegans     Gainesville   M 6.54   3.36  8.93 12.33   October 2019.0
## 2405  K.elegans     Gainesville   M 5.64   3.20  8.34 11.50   October 2019.0
## 2406  K.elegans     Gainesville   F 7.86   3.59  9.82 13.37   October 2019.0
## 2407  K.elegans     Gainesville   F 8.57   3.90 11.30 14.72   October 2019.0
## 2408  K.elegans     Gainesville   M 5.60   2.74  7.07 10.00   October 2019.0
## 2409  K.elegans     Gainesville   M 5.98   3.08  8.61 11.28   October 2019.0
## 2410  K.elegans     Gainesville   M 6.16   3.30  8.42 11.70   October 2019.0
## 2411  K.elegans     Gainesville   M 5.72   3.18  8.53 11.55   October 2019.0
## 2412  K.elegans     Gainesville   F 7.96   3.51  9.45 13.02   October 2019.0
## 2413  K.elegans     Gainesville   F 6.78   3.25  9.03 11.85   October 2019.0
## 2414  K.elegans     Gainesville   F 7.86   3.63  9.89 13.68   October 2019.0
## 2415  K.elegans     Gainesville   M 5.86   3.09  4.89  8.09   October 2019.0
## 2416  K.elegans     Gainesville   M 5.90   2.87  5.20  8.18   October 2019.0
## 2417  K.elegans     Gainesville   M 5.79   3.37  9.34 12.55   October 2019.0
## 2418  K.elegans     Gainesville   M 5.60   3.41  9.25 12.19   October 2019.0
## 2419  K.elegans       Homestead   M 6.20   3.31  8.85 12.20   October 2019.0
## 2420  K.elegans       Homestead   F 7.94   3.75 10.28 13.41   October 2019.0
## 2421  K.elegans       Homestead   M 5.93   3.21  8.53 11.82   October 2019.0
## 2422  K.elegans       Homestead   M 5.92   3.19  8.71 11.52   October 2019.0
## 2423  K.elegans       Homestead   F 8.37   3.80 10.22 14.17   October 2019.0
## 2424  K.elegans       Homestead   M 5.69   3.10  8.70 11.60   October 2019.0
## 2425  K.elegans       Homestead   F 7.88   4.07 10.46 14.08   October 2019.0
## 2426  K.elegans       Homestead   M 5.95   3.03  8.89 11.69   October 2019.0
## 2427  K.elegans       Homestead   M 5.84   3.15  8.74 11.55   October 2019.0
## 2428  K.elegans       Homestead   F 8.54   3.59  9.63 13.36   October 2019.0
## 2429  K.elegans       Homestead   M 5.86   3.12  8.64 11.82   October 2019.0
## 2430  K.elegans       Homestead   F 8.02   3.69  9.86 13.57   October 2019.0
## 2431  K.elegans       Homestead   F 8.33   3.74  9.30 12.73   October 2019.0
## 2432  K.elegans       Homestead   F 7.96   3.67 10.00 13.34   October 2019.0
## 2433  K.elegans       Homestead   F 7.98   3.66 10.23 13.60   October 2019.0
## 2434  K.elegans       Homestead   F 6.29   2.62  4.78  8.52   October 2019.0
## 2435  K.elegans       Homestead   M 5.38   3.00  8.22 10.99   October 2019.0
## 2436  K.elegans       Homestead   M 5.88   3.15  8.60 11.69   October 2019.0
## 2437  K.elegans       Homestead   M 6.00   3.23  9.32 12.26   October 2019.0
## 2438  K.elegans       Homestead   M 6.08   3.05  8.29 11.20   October 2019.0
## 2439  K.elegans       Homestead   M 5.74   3.15  8.74 11.78   October 2019.0
## 2440  K.elegans       Homestead   M 5.57   3.04  8.33 11.11   October 2019.0
## 2441  K.elegans       Homestead   M 5.70   3.23  8.54 11.59   October 2019.0
## 2442  K.elegans       Homestead   M 6.12   3.26  9.14 12.22   October 2019.0
## 2443  K.elegans       Homestead   M 6.06   3.29  8.80 12.10   October 2019.0
## 2444  K.elegans       Homestead   M 6.14   3.19  9.02 12.10   October 2019.0
## 2445  K.elegans       Homestead   M 5.88   3.39  9.00 12.18   October 2019.0
## 2446  K.elegans       Homestead   M 5.32   2.87  7.66 10.65   October 2019.0
## 2447  K.elegans       Homestead   M 5.88   2.89  7.94 10.62   October 2019.0
## 2448  K.elegans       Homestead   M 5.58   3.11  8.49 11.18   October 2019.0
## 2449  K.elegans       Homestead   F 7.97   3.91  9.98 13.19   October 2019.0
## 2450  K.elegans       Homestead   M 5.75   3.32  9.04 11.98   October 2019.0
## 2451  K.elegans       Homestead   M 5.27   3.16  8.45 11.21   October 2019.0
## 2452  K.elegans       Homestead   F 7.61   3.46  9.41 12.90   October 2019.0
## 2453  K.elegans       Homestead   M 5.50   3.01  8.61 11.37   October 2019.0
## 2454 C.corindum North_Key_Largo   F 8.17   3.18  8.37 11.91   October 2019.0
## 2455 C.corindum North_Key_Largo   F 7.78   3.44  8.82 11.79   October 2019.0
## 2456 C.corindum North_Key_Largo   M 5.56   2.76  4.59  7.77   October 2019.0
## 2457 C.corindum North_Key_Largo   F 7.93   3.74  9.31 13.21   October 2019.0
## 2458 C.corindum North_Key_Largo   M 6.63   3.07  7.87 11.37   October 2019.0
## 2459 C.corindum North_Key_Largo   F 8.56   3.55  9.12 12.58   October 2019.0
## 2460 C.corindum North_Key_Largo   M 6.58   3.33  9.56 12.32   October 2019.0
## 2461 C.corindum North_Key_Largo   M 6.25   3.37  8.67 11.84   October 2019.0
## 2462 C.corindum North_Key_Largo   F 6.95   3.70  9.47 13.09   October 2019.0
## 2463 C.corindum North_Key_Largo   M 3.60   2.37  7.13  9.19   October 2019.0
## 2464 C.corindum North_Key_Largo   M 5.91   2.86  7.62 10.64   October 2019.0
## 2465 C.corindum North_Key_Largo   F 9.66   3.89  9.95 13.57   October 2019.0
## 2466 C.corindum North_Key_Largo   M 6.34   3.43  8.32 11.36   October 2019.0
## 2467 C.corindum North_Key_Largo   F 7.58   3.23  8.24 11.90   October 2019.0
## 2468 C.corindum North_Key_Largo   F 7.68   3.25  8.39 11.53   October 2019.0
## 2469 C.corindum North_Key_Largo   F 7.33   3.23  8.13 11.92   October 2019.0
## 2470  K.elegans     Lake_Placid   M 5.30   3.16  8.59 11.62   October 2019.0
## 2471  K.elegans     Lake_Placid   F 7.58   3.10  8.07 11.40   October 2019.0
## 2472  K.elegans     Lake_Placid   F 7.75   3.60  9.68 13.39   October 2019.0
## 2473  K.elegans     Lake_Placid   M 5.61   3.02  8.38 11.54   October 2019.0
## 2474  K.elegans     Lake_Placid   M 5.92   3.21  8.33 11.33   October 2019.0
## 2475  K.elegans     Lake_Placid   F 6.97   3.64 10.09 13.49   October 2019.0
## 2476  K.elegans     Lake_Placid   F 7.64   3.51  9.50 13.20   October 2019.0
## 2477  K.elegans     Lake_Placid   F 8.79   3.96 10.25 14.29   October 2019.0
## 2478  K.elegans     Lake_Placid   M 5.83   3.22  8.29 11.55   October 2019.0
## 2479  K.elegans     Lake_Placid   F 7.99   3.65 10.04 13.85   October 2019.0
## 2480  K.elegans     Lake_Placid   M 5.59   3.37  8.71 11.86   October 2019.0
## 2481  K.elegans     Lake_Placid   M 5.58   3.23  8.46 11.53   October 2019.0
## 2482  K.elegans     Lake_Placid   F 7.64   3.51  9.40 12.83   October 2019.0
## 2483  K.elegans     Lake_Placid   F 7.04   3.56  9.86 12.73   October 2019.0
## 2484  K.elegans     Lake_Placid   F 7.35   3.29  8.79 12.27   October 2019.0
## 2485  K.elegans     Lake_Placid   M 5.41   2.90  8.04 10.86   October 2019.0
## 2486  K.elegans     Lake_Placid   F 8.51   3.85 10.32 14.10   October 2019.0
## 2487  K.elegans     Lake_Placid   F 7.72   3.54  9.30 12.79   October 2019.0
## 2488  K.elegans     Lake_Placid   M 5.69   3.33  9.49 12.73   October 2019.0
## 2489  K.elegans     Lake_Placid   M 5.74   2.99  8.38 11.33   October 2019.0
## 2490  K.elegans     Lake_Placid   F 7.97   3.86  9.85 13.47   October 2019.0
## 2491  K.elegans     Lake_Placid   M 5.73   3.27  9.02 12.22   October 2019.0
## 2492  K.elegans     Lake_Placid   M 5.46   3.04  8.09 11.18   October 2019.0
## 2493  K.elegans     Lake_Placid   F 7.86   3.28  8.98 12.41   October 2019.0
## 2494  K.elegans     Lake_Placid   M 5.87   3.23  8.59 11.76   October 2019.0
## 2495  K.elegans     Lake_Placid   M 5.81   3.18  8.57 11.66   October 2019.0
## 2496  K.elegans     Lake_Placid   F 8.19   3.58  9.47 13.32   October 2019.0
## 2497  K.elegans     Lake_Placid   M 5.78   3.19  8.86 11.93   October 2019.0
## 2498  K.elegans     Lake_Placid   F 7.57   3.61  9.94 13.58   October 2019.0
## 2499  K.elegans     Lake_Placid   M 5.55   2.98  8.23 11.32   October 2019.0
## 2500  K.elegans     Lake_Placid   F 7.79   3.72  9.73 13.44   October 2019.0
## 2501  K.elegans     Lake_Placid   F 7.70   3.27  9.00 12.50   October 2019.0
## 2502  K.elegans     Lake_Placid   M 5.92   3.34  8.90 11.94   October 2019.0
## 2503  K.elegans     Lake_Placid   M 6.08   3.41  8.60 11.88   October 2019.0
## 2504  K.elegans     Lake_Placid   F 7.43   3.51  9.38 12.71   October 2019.0
## 2505  K.elegans     Lake_Placid   F 7.97   3.47  9.65 13.23   October 2019.0
## 2506  K.elegans     Lake_Placid   M 5.70   2.71  7.56 10.58   October 2019.0
## 2507  K.elegans     Lake_Placid   M 5.45   2.74  7.52 10.31   October 2019.0
## 2508  K.elegans     Lake_Placid   M 5.66   3.08  7.97 10.97   October 2019.0
## 2509  K.elegans     Lake_Placid   M 6.15   3.27  8.47 11.54   October 2019.0
## 2510  K.elegans     Lake_Placid   M 6.20   3.12  8.73 11.82   October 2019.0
## 2511  K.elegans     Lake_Placid   M 5.62   3.07  8.09 11.08   October 2019.0
## 2512  K.elegans     Lake_Placid   F 7.46   3.13  8.26 11.36   October 2019.0
## 2513  K.elegans      Lake_Wales   F 6.97   3.45  9.61 12.86   October 2019.0
## 2514  K.elegans      Lake_Wales   F 7.62   3.49  9.78 13.42   October 2019.0
## 2515  K.elegans      Lake_Wales   F 8.27   3.77 10.10 13.86   October 2019.0
## 2516  K.elegans      Lake_Wales   M 5.53   3.12  8.19 11.19   October 2019.0
## 2517  K.elegans      Lake_Wales   F 8.18   3.73 10.05 13.89   October 2019.0
## 2518  K.elegans      Lake_Wales   M 6.16   3.22  8.75 11.93   October 2019.0
## 2519  K.elegans      Lake_Wales   F 7.30   3.70 10.42 13.97   October 2019.0
## 2520  K.elegans      Lake_Wales   F 7.72   3.54 10.05 13.24   October 2019.0
## 2521  K.elegans      Lake_Wales   M 6.07   3.09  8.31 11.48   October 2019.0
## 2522  K.elegans      Lake_Wales   M 5.54   2.64  5.53  8.33   October 2019.0
## 2523  K.elegans      Lake_Wales   M 5.51   3.18  8.44 11.46   October 2019.0
## 2524  K.elegans      Lake_Wales   F 8.10   3.90 10.31 14.12   October 2019.0
## 2525  K.elegans      Lake_Wales   M 5.85   3.20  8.94 12.08   October 2019.0
## 2526  K.elegans      Lake_Wales   F 8.11   3.68  9.99 13.67   October 2019.0
## 2527  K.elegans      Lake_Wales   F 7.52   3.39  9.67 13.10   October 2019.0
## 2528  K.elegans      Lake_Wales   M 5.27   2.87  8.55 11.31   October 2019.0
## 2529  K.elegans      Lake_Wales   M 5.61   2.98  8.03 11.21   October 2019.0
## 2530  K.elegans      Lake_Wales   M 5.76   3.23  8.37 11.35   October 2019.0
## 2531  K.elegans      Lake_Wales   F 8.25   3.82 10.40 14.32   October 2019.0
## 2532  K.elegans      Lake_Wales   F 6.58   3.02  5.57  9.10   October 2019.0
## 2533  K.elegans      Lake_Wales   M 5.65   3.09  8.35 11.43   October 2019.0
## 2534  K.elegans      Lake_Wales   F 7.92   3.49  9.17 12.87   October 2019.0
## 2535  K.elegans      Lake_Wales   F 6.98   3.88  9.70 13.06   October 2019.0
## 2536  K.elegans        Leesburg   F 6.83   3.44  8.54 12.25   October 2019.0
## 2537  K.elegans        Leesburg   F 8.27   3.71 10.48 14.35   October 2019.0
## 2538  K.elegans        Leesburg   F 8.13   3.71  9.98 13.78   October 2019.0
## 2539  K.elegans        Leesburg   F 8.15   3.47  9.36 13.06   October 2019.0
## 2540  K.elegans        Leesburg   F 8.12   3.79  9.92 13.78   October 2019.0
## 2541  K.elegans        Leesburg   M 5.29   2.55  4.39  7.34   October 2019.0
## 2542  K.elegans        Leesburg   M 5.22   2.80  7.42 10.60   October 2019.0
## 2543  K.elegans        Leesburg   M 5.61   2.81  6.07  9.31   October 2019.0
## 2544  K.elegans        Leesburg   F 7.49   3.25  8.54 11.88   October 2019.0
## 2545  K.elegans        Leesburg   M 5.65   3.06  8.46 11.52   October 2019.0
## 2546  K.elegans        Leesburg   M 5.67   2.94  7.15 10.36   October 2019.0
## 2547  K.elegans        Leesburg   F 8.21   3.90 10.35 13.85   October 2019.0
## 2548  K.elegans        Leesburg   M 5.53   2.99  8.42 11.40   October 2019.0
## 2549  K.elegans        Leesburg   M 5.85   2.99  8.04 11.10   October 2019.0
## 2550  K.elegans        Leesburg   M 5.23   2.75  7.36 10.14   October 2019.0
## 2551  K.elegans        Leesburg   F 8.20   3.66  9.55 13.17   October 2019.0
## 2552  K.elegans        Leesburg   M 5.97   2.69  6.04  8.88   October 2019.0
## 2553  K.elegans        Leesburg   M 5.76   3.28  8.84 11.73   October 2019.0
## 2554  K.elegans        Leesburg   F 7.97   3.49  9.98 13.80   October 2019.0
## 2555  K.elegans        Leesburg   F 7.59   3.65  9.85 12.89   October 2019.0
## 2556  K.elegans        Leesburg   M 6.05   3.12  8.66 11.77   October 2019.0
## 2557  K.elegans        Leesburg   F 8.15   3.62  9.81 13.32   October 2019.0
## 2558  K.elegans        Leesburg   F 8.42   3.91 10.56 14.66   October 2019.0
## 2559  K.elegans        Leesburg   F 7.79   3.69  9.86 13.21   October 2019.0
## 2560  K.elegans        Leesburg   M 5.31   2.88  7.37 10.29   October 2019.0
## 2561  K.elegans        Leesburg   M 6.04   3.25  8.34 11.57   October 2019.0
## 2562 C.corindum North_Key_Largo   F 8.10   3.42  8.88 12.66   October 2019.0
## 2563 C.corindum North_Key_Largo   M 6.23   2.94  7.76 10.94   October 2019.0
## 2564 C.corindum North_Key_Largo   F 8.26   3.77 10.11 13.74   October 2019.0
## 2565 C.corindum North_Key_Largo   F 8.74   3.43  8.99 12.55   October 2019.0
## 2566 C.corindum North_Key_Largo   M 5.92   3.07  8.41 11.38   October 2019.0
## 2567 C.corindum North_Key_Largo   F 8.80   3.51  9.27 12.74   October 2019.0
## 2568 C.corindum North_Key_Largo   F 6.53   3.18  5.89  9.30   October 2019.0
## 2569 C.corindum North_Key_Largo   M 5.79   2.78  7.88 10.34   October 2019.0
## 2570 C.corindum North_Key_Largo   M 6.60   2.89  7.98 11.27   October 2019.0
## 2571 C.corindum North_Key_Largo   M 6.31   3.09  8.15 11.11   October 2019.0
## 2572 C.corindum North_Key_Largo   M 6.62   2.99  8.62 11.57   October 2019.0
## 2573 C.corindum North_Key_Largo   F 8.67   3.52  9.46 13.17   October 2019.0
## 2574 C.corindum North_Key_Largo   M 6.19   2.84  7.69 10.69   October 2019.0
## 2575 C.corindum North_Key_Largo   M 6.06   2.77  5.44  8.43   October 2019.0
## 2576 C.corindum North_Key_Largo   M 6.56   3.06  8.04 10.92   October 2019.0
## 2577 C.corindum North_Key_Largo   F 8.98   3.68  9.06 12.81   October 2019.0
## 2578 C.corindum North_Key_Largo   M 5.42   2.57  4.51  7.69   October 2019.0
## 2579 C.corindum North_Key_Largo   M 5.63   2.77  5.22  8.44   October 2019.0
## 2580 C.corindum North_Key_Largo   M 6.03   3.04  8.25 11.01   October 2019.0
## 2581 C.corindum North_Key_Largo   M 6.22   3.08  8.29 10.99   October 2019.0
## 2582 C.corindum North_Key_Largo   F 6.93   3.07  5.38  8.57   October 2019.0
## 2583 C.corindum North_Key_Largo   M 5.75   2.73  7.82 10.43   October 2019.0
## 2584 C.corindum North_Key_Largo   F 7.51   3.00  8.21 11.68   October 2019.0
## 2585 C.corindum North_Key_Largo   F 6.86   3.06  5.86  9.31   October 2019.0
## 2586 C.corindum North_Key_Largo   F 7.79   3.45  9.24 12.54   October 2019.0
## 2587 C.corindum North_Key_Largo   M 6.21   2.94  6.89  9.95   October 2019.0
## 2588 C.corindum North_Key_Largo   M 5.78   2.81  7.14 10.16   October 2019.0
## 2589 C.corindum North_Key_Largo   F 8.86   3.75  9.60 13.42   October 2019.0
## 2590 C.corindum North_Key_Largo   M 6.46   3.37  8.66 11.77   October 2019.0
## 2591 C.corindum North_Key_Largo   M 5.12   2.35  3.86  6.85   October 2019.0
## 2592 C.corindum North_Key_Largo   F 9.07   3.66  9.48 13.11   October 2019.0
## 2593 C.corindum North_Key_Largo   F 8.57   3.59  8.91 12.73   October 2019.0
## 2594 C.corindum North_Key_Largo   M 5.48   2.92  7.85 10.66   October 2019.0
## 2595 C.corindum North_Key_Largo   M 6.34   2.91  8.08 11.25   October 2019.0
## 2596 C.corindum North_Key_Largo   F 7.66   3.16  8.36 11.67   October 2019.0
## 2597 C.corindum North_Key_Largo   F 8.64   3.99  9.71 13.56   October 2019.0
## 2598 C.corindum North_Key_Largo   F 9.09   3.66  9.75 13.43   October 2019.0
## 2599 C.corindum North_Key_Largo   F 7.79   3.37  8.52 12.15   October 2019.0
## 2600 C.corindum North_Key_Largo   F 8.26   3.48  9.41 13.56   October 2019.0
## 2601 C.corindum North_Key_Largo   F 8.77   3.51  9.26 12.35   October 2019.0
## 2602 C.corindum North_Key_Largo   F 5.83   2.68  4.53  7.45   October 2019.0
## 2603 C.corindum North_Key_Largo   F 9.07   3.67  9.91 13.69   October 2019.0
## 2604 C.corindum North_Key_Largo   F 8.22   3.50  8.73 12.27   October 2019.0
## 2605 C.corindum North_Key_Largo   F 7.37   3.25  6.22  9.77   October 2019.0
## 2606 C.corindum North_Key_Largo   F 8.40   3.46  9.33 12.94   October 2019.0
## 2607 C.corindum North_Key_Largo   F 8.50   3.75  9.46 13.32   October 2019.0
## 2608 C.corindum North_Key_Largo   M 6.03   3.08  7.77 10.65   October 2019.0
## 2609 C.corindum North_Key_Largo   M 6.23   3.10  8.29 11.01   October 2019.0
## 2610 C.corindum North_Key_Largo   F 9.25   3.93 10.08 13.78   October 2019.0
## 2611 C.corindum North_Key_Largo   M 5.56   2.67  7.25 10.31   October 2019.0
## 2612 C.corindum North_Key_Largo   M 6.60   3.23  8.34 11.71   October 2019.0
## 2613 C.corindum North_Key_Largo   M 6.16   3.10  8.34 11.57   October 2019.0
## 2614 C.corindum North_Key_Largo   M 5.81   3.18  7.82 10.83   October 2019.0
## 2615 C.corindum North_Key_Largo   M 6.28   3.11  8.59 11.75   October 2019.0
## 2616 C.corindum North_Key_Largo   F 6.56   3.19  8.32 11.34   October 2019.0
## 2617 C.corindum North_Key_Largo   M 5.95   3.05  8.21 11.33   October 2019.0
## 2618 C.corindum North_Key_Largo   F 8.85   3.30  8.85 12.36   October 2019.0
## 2619 C.corindum North_Key_Largo   M 6.20   3.13  8.35 11.47   October 2019.0
## 2620 C.corindum North_Key_Largo   F 9.24   3.99 10.05 13.42   October 2019.0
## 2621 C.corindum North_Key_Largo   M 6.66   3.23  8.63 11.63   October 2019.0
## 2622 C.corindum North_Key_Largo   F 9.35   3.78 10.19 14.01   October 2019.0
## 2623 C.corindum North_Key_Largo   M 6.44   3.29  8.69 11.64   October 2019.0
## 2624 C.corindum North_Key_Largo   M 5.69   2.88  7.83 10.83   October 2019.0
## 2625 C.corindum North_Key_Largo   M 6.17   3.24  8.40 11.61   October 2019.0
## 2626 C.corindum North_Key_Largo   M 6.49   3.29  8.87 12.41   October 2019.0
## 2627 C.corindum North_Key_Largo   M 6.84   3.32  8.23 11.38   October 2019.0
## 2628 C.corindum North_Key_Largo   F 7.97   3.33  8.09 11.76   October 2019.0
## 2629 C.corindum North_Key_Largo   M 5.39   2.89  7.61 10.10   October 2019.0
## 2630 C.corindum North_Key_Largo   F 8.61   3.68  9.53 13.47   October 2019.0
## 2631 C.corindum North_Key_Largo   M 5.73   2.85  7.25 10.10   October 2019.0
## 2632 C.corindum North_Key_Largo   M 5.94   3.07  7.99 10.94   October 2019.0
## 2633 C.corindum North_Key_Largo   M 5.42   2.89  8.59 11.97   October 2019.0
## 2634 C.corindum North_Key_Largo   M 5.70   2.74  5.23  8.33   October 2019.0
## 2635 C.corindum North_Key_Largo   M 5.66   2.65  4.49  7.30   October 2019.0
## 2636 C.corindum North_Key_Largo   F 6.89   2.95  8.13 11.14   October 2019.0
## 2637 C.corindum North_Key_Largo   M 5.58   2.40  4.38  7.16   October 2019.0
## 2638 C.corindum North_Key_Largo   F 7.98   3.56  9.41 12.68   October 2019.0
## 2639 C.corindum North_Key_Largo   F 8.43   3.32  8.88 12.02   October 2019.0
## 2640 C.corindum North_Key_Largo   M 5.08   2.54  4.11  6.92   October 2019.0
## 2641 C.corindum North_Key_Largo   M 5.41   2.52  5.14  7.79   October 2019.0
## 2642 C.corindum North_Key_Largo   M 5.48   2.64  4.54  7.54   October 2019.0
## 2643 C.corindum  Plantation_Key   F 8.26   3.33  6.94 10.92   October 2019.0
## 2644 C.corindum  Plantation_Key   F 7.17   3.09  6.10  9.65   October 2019.0
## 2645 C.corindum  Plantation_Key   F 8.50   3.67  9.20 12.91   October 2019.0
## 2646 C.corindum  Plantation_Key   M 6.75   3.39  8.71 11.97   October 2019.0
## 2647 C.corindum  Plantation_Key   M 6.01   2.97  7.62 10.51   October 2019.0
## 2648 C.corindum  Plantation_Key   F 7.76   3.44  9.12 12.56   October 2019.0
## 2649 C.corindum  Plantation_Key   M 5.74   2.61  4.39  7.52   October 2019.0
## 2650 C.corindum  Plantation_Key   M 5.52   2.44  4.31  7.19   October 2019.0
## 2651 C.corindum  Plantation_Key   M 5.26   2.64  4.98  7.87   October 2019.0
## 2652 C.corindum  Plantation_Key   M 6.36   3.53  9.33 11.98   October 2019.0
## 2653 C.corindum  Plantation_Key   F 8.10   3.32  8.38 11.68   October 2019.0
## 2654 C.corindum  Plantation_Key   M 5.87   2.70  7.40 10.53   October 2019.0
## 2655 C.corindum  Plantation_Key   M 5.36   2.57  4.27  4.33   October 2019.0
## 2656 C.corindum  Plantation_Key   F 9.08   3.88  9.80 13.68   October 2019.0
## 2657 C.corindum  Plantation_Key   M 5.72   2.97  7.96 11.05   October 2019.0
## 2658  K.elegans     Gainesville   M 6.03   3.36  8.90 12.29  February 2020.0
## 2659  K.elegans     Gainesville   M 6.33   3.26  8.42 11.89  February 2020.0
## 2660  K.elegans     Gainesville   M 5.18   3.05  8.23 11.06  February 2020.0
## 2661  K.elegans     Gainesville   M 5.65   3.05  8.35 11.34  February 2020.0
## 2662  K.elegans     Gainesville   M 5.56   3.10  8.23 11.32  February 2020.0
## 2663  K.elegans     Gainesville   M 6.30   3.33  8.29 11.49  February 2020.0
## 2664  K.elegans     Gainesville   M 5.73   3.10  6.99 10.13  February 2020.0
## 2665  K.elegans     Gainesville   M 5.61   3.31  8.84 11.93  February 2020.0
## 2666  K.elegans     Gainesville   M 5.65   2.99  7.95 11.06  February 2020.0
## 2667  K.elegans     Gainesville   M 5.34   2.80  7.67 10.67  February 2020.0
## 2668  K.elegans     Gainesville   F 6.49   3.22  8.96 12.25  February 2020.0
## 2669  K.elegans     Gainesville   M 5.67   2.97  8.31 11.47  February 2020.0
## 2670  K.elegans     Gainesville   F 8.24   3.92  9.50 13.32  February 2020.0
## 2671  K.elegans     Gainesville   M 6.05   3.11  7.79 10.78  February 2020.0
## 2672  K.elegans     Gainesville   M 5.23   3.08  8.14 11.03  February 2020.0
## 2673  K.elegans     Gainesville   M 5.12   3.03  7.77 10.64  February 2020.0
## 2674  K.elegans     Gainesville   M 5.76   3.42  8.96 12.03  February 2020.0
## 2675  K.elegans     Gainesville   F 6.65   3.52  9.59 12.99  February 2020.0
## 2676  K.elegans     Gainesville   M 6.30   3.16  7.56 10.44  February 2020.0
## 2677  K.elegans     Gainesville   F 5.76   3.20  7.60 10.63  February 2020.0
## 2678  K.elegans     Gainesville   M 5.26   3.02  8.11 11.26  February 2020.0
## 2679  K.elegans     Gainesville   F 5.97   3.55  8.08 11.15  February 2020.0
## 2680  K.elegans     Gainesville   M 5.07   2.90  8.04 10.80  February 2020.0
## 2681  K.elegans     Gainesville   M 6.20   3.31  7.98 11.11  February 2020.0
## 2682  K.elegans     Gainesville   M 6.11   3.14  7.87 10.81  February 2020.0
## 2683  K.elegans     Gainesville   M 6.12   3.27  8.21 11.14  February 2020.0
## 2684  K.elegans     Gainesville   M 5.02   2.83  7.44 10.22  February 2020.0
## 2685  K.elegans     Gainesville   M 5.68   3.13  7.23 10.17  February 2020.0
## 2686  K.elegans     Gainesville   M 6.00   3.38  7.75 10.97  February 2020.0
## 2687  K.elegans     Gainesville   M 6.04   3.22  8.05 11.17  February 2020.0
## 2688  K.elegans     Gainesville   M 5.94   3.34  7.95 11.19  February 2020.0
## 2689  K.elegans     Gainesville   F 7.98   3.54  8.75 12.30  February 2020.0
## 2690  K.elegans     Gainesville   M 6.13   3.44  9.16 12.60  February 2020.0
## 2691  K.elegans     Gainesville   F 5.25   3.07  8.26 11.03  February 2020.0
## 2692  K.elegans     Gainesville   M 5.22   3.16  8.30 11.16  February 2020.0
## 2693  K.elegans     Gainesville   M 5.51   3.08  8.28 11.13  February 2020.0
## 2694  K.elegans       Homestead   M 5.59   2.84  7.50 10.55  February 2020.0
## 2695  K.elegans       Homestead   F 7.47   3.82  9.66 13.31  February 2020.0
## 2696  K.elegans       Homestead   F 7.70   3.53  9.43 12.83  February 2020.0
## 2697  K.elegans       Homestead   F 6.14   2.95  7.81 11.09  February 2020.0
## 2698  K.elegans       Homestead   F 7.74   3.38  9.09 12.86  February 2020.0
## 2699  K.elegans       Homestead   M 5.06   2.75  7.68 10.18  February 2020.0
## 2700  K.elegans       Homestead   M 5.14   2.55  7.08  9.77  February 2020.0
## 2701  K.elegans       Homestead   F 7.83   3.40  8.98 12.67  February 2020.0
## 2702  K.elegans       Homestead   M 6.05   3.37  8.45 11.71  February 2020.0
## 2703  K.elegans       Homestead   M 6.01   3.30  8.34 11.64  February 2020.0
## 2704  K.elegans       Homestead   M 5.39   3.22  7.50 10.79  February 2020.0
## 2705  K.elegans       Homestead   M 5.17   2.69  6.93  9.64  February 2020.0
## 2706  K.elegans       Homestead   M 5.32   2.57  7.47 10.35  February 2020.0
## 2707  K.elegans       Homestead   M 5.20   2.62  6.58  9.22  February 2020.0
## 2708  K.elegans       Homestead   F 7.01   3.25  8.17 11.63  February 2020.0
## 2709  K.elegans       Homestead   F 6.63   3.15  8.18 11.58  February 2020.0
## 2710  K.elegans       Homestead   F 7.09   3.13  8.73 12.08  February 2020.0
## 2711  K.elegans       Homestead   M 5.27   2.55  7.03  9.72  February 2020.0
## 2712  K.elegans       Homestead   M 5.19   2.75  7.24  9.97  February 2020.0
## 2713  K.elegans       Homestead   F 6.98   3.15  8.23 11.59  February 2020.0
## 2714  K.elegans       Homestead   M 5.81   2.80  7.91 10.81  February 2020.0
## 2715  K.elegans       Homestead   F 7.68   3.76 10.40 14.34  February 2020.0
## 2716  K.elegans       Homestead   F 6.21   3.04  8.11 11.33  February 2020.0
## 2717  K.elegans       Homestead   M 5.19   2.61  6.48  9.30  February 2020.0
## 2718  K.elegans       Homestead   M 5.42   2.78  7.72 10.74  February 2020.0
## 2719  K.elegans       Homestead   M 5.49   2.65  7.22 10.07  February 2020.0
## 2720  K.elegans       Homestead   M 5.19   2.68  7.12  9.99  February 2020.0
## 2721  K.elegans       Homestead   M 4.98   2.49  6.24  8.84  February 2020.0
## 2722  K.elegans       Homestead   F 6.48   3.05  5.29  8.97  February 2020.0
## 2723  K.elegans       Homestead   F 5.97   2.98  4.94  8.27  February 2020.0
## 2724  K.elegans       Homestead   M 5.35   2.77  5.25  8.36  February 2020.0
## 2725  K.elegans       Homestead   M 5.13   2.89  7.42 10.08  February 2020.0
## 2726  K.elegans       Homestead   M 5.04   3.25  8.62 11.62  February 2020.0
## 2727  K.elegans       Homestead   M 5.18   2.60  5.93  7.98  February 2020.0
## 2728  K.elegans       Homestead   M 5.54   2.63  4.78  7.88  February 2020.0
## 2729  K.elegans       Homestead   M 5.22   2.51  4.53  7.44  February 2020.0
## 2730  K.elegans       Homestead   F 6.52   3.01  5.06  8.40  February 2020.0
## 2731  K.elegans       Homestead   F 7.26   3.06  8.52 11.96  February 2020.0
## 2732  K.elegans       Homestead   M 5.54   2.84  7.72 10.60  February 2020.0
## 2733  K.elegans       Homestead   M 5.62   3.04  8.29 11.42  February 2020.0
## 2734  K.elegans       Homestead   M 5.40   3.29  8.90 11.88  February 2020.0
## 2735  K.elegans       Homestead   M 5.73   3.11  8.39 11.14  February 2020.0
## 2736 C.corindum       Key_Largo   M 5.88   3.14  8.39 11.68  February 2020.0
## 2737 C.corindum       Key_Largo   F 8.79   3.86 10.07 14.00  February 2020.0
## 2738 C.corindum       Key_Largo   F 6.99   3.69  9.20 13.11  February 2020.0
## 2739 C.corindum       Key_Largo   M 5.25   2.72  7.87 10.31  February 2020.0
## 2740 C.corindum       Key_Largo   M 6.53   3.08  8.08 11.31  February 2020.0
## 2741 C.corindum       Key_Largo   F 6.33   3.33  8.78 12.13  February 2020.0
## 2742 C.corindum       Key_Largo   M 6.18   3.03  8.04 10.94  February 2020.0
## 2743 C.corindum       Key_Largo   M 6.08   2.97  7.80 10.95  February 2020.0
## 2744 C.corindum       Key_Largo   F 7.54   3.41  8.42 11.99  February 2020.0
## 2745 C.corindum       Key_Largo   M 8.73   3.59  9.71 13.59  February 2020.0
## 2746 C.corindum       Key_Largo   F 8.45   3.65  9.24 13.04  February 2020.0
## 2747 C.corindum       Key_Largo   F 7.94   3.27  8.52 11.96  February 2020.0
## 2748 C.corindum       Key_Largo   M 5.63   3.01  8.64 11.48  February 2020.0
## 2749 C.corindum       Key_Largo   M 5.98   3.19  8.32 11.62  February 2020.0
## 2750 C.corindum       Key_Largo   F 7.57   3.33  8.38 12.11  February 2020.0
## 2751 C.corindum       Key_Largo   M 5.57   3.01  8.53 11.47  February 2020.0
## 2752 C.corindum       Key_Largo   F 6.96   3.18  8.31 11.78  February 2020.0
## 2753 C.corindum       Key_Largo   M 6.27   2.96  8.02 11.09  February 2020.0
## 2754 C.corindum       Key_Largo   F 7.70   3.36  9.15 12.65  February 2020.0
## 2755 C.corindum       Key_Largo   M 6.11   3.01  8.43 11.32  February 2020.0
## 2756 C.corindum       Key_Largo   M 5.99   3.16  8.02 11.12  February 2020.0
## 2757 C.corindum       Key_Largo   F 7.98   3.57  8.95 12.72  February 2020.0
## 2758 C.corindum       Key_Largo   M 6.16   3.09  8.38 11.50  February 2020.0
## 2759 C.corindum       Key_Largo   M 6.54   2.99  8.03 11.33  February 2020.0
## 2760 C.corindum       Key_Largo   F 8.10   3.79  9.83 13.54  February 2020.0
## 2761 C.corindum       Key_Largo   M 5.94   3.04  8.70 11.56  February 2020.0
## 2762 C.corindum       Key_Largo   F 7.62   3.14  8.16 11.49  February 2020.0
## 2763 C.corindum       Key_Largo   M 6.22   3.03  8.05 11.38  February 2020.0
## 2764 C.corindum       Key_Largo   M 5.72   3.06  8.40 11.36  February 2020.0
## 2765 C.corindum       Key_Largo   M 5.63   3.02  8.20 11.33  February 2020.0
## 2766 C.corindum       Key_Largo   F 7.92   3.47  9.99 13.92  February 2020.0
## 2767 C.corindum       Key_Largo   M 5.37   3.08  8.01 10.80  February 2020.0
## 2768 C.corindum       Key_Largo   M 6.97   3.18  8.55 11.66  February 2020.0
## 2769 C.corindum       Key_Largo   F 7.51   3.31  9.00 12.27  February 2020.0
## 2770 C.corindum       Key_Largo   F 7.84   3.37  8.61 12.22  February 2020.0
## 2771 C.corindum       Key_Largo   M 6.22   3.13  8.02 11.31  February 2020.0
## 2772 C.corindum       Key_Largo   M 5.98   3.18  8.23 11.41  February 2020.0
## 2773 C.corindum       Key_Largo   M 6.69   3.25  8.53 11.76  February 2020.0
## 2774 C.corindum       Key_Largo   M 5.56   3.35  8.80 12.08  February 2020.0
## 2775 C.corindum       Key_Largo   M 5.35   3.23  8.61 11.71  February 2020.0
## 2776 C.corindum       Key_Largo   M 5.98   3.12  8.40 11.48  February 2020.0
## 2777 C.corindum       Key_Largo   F 6.38   2.80  6.91 10.04  February 2020.0
## 2778 C.corindum       Key_Largo   M 5.40   2.63  7.17  9.73  February 2020.0
## 2779 C.corindum       Key_Largo   M 6.28   3.28  8.80 11.96  February 2020.0
## 2780 C.corindum       Key_Largo   M 5.35   2.52  4.34  7.34  February 2020.0
## 2781 C.corindum       Key_Largo   M 5.70   2.72  4.88  8.20  February 2020.0
## 2782 C.corindum       Key_Largo   M 5.26   2.62  5.42  8.47  February 2020.0
## 2783 C.corindum       Key_Largo   M 5.35   2.59  4.40  7.07  February 2020.0
## 2784 C.corindum       Key_Largo   M 5.81   2.83  5.95  8.68  February 2020.0
## 2785 C.corindum       Key_Largo   M 5.17   2.59  4.40  7.44  February 2020.0
## 2786 C.corindum       Key_Largo   M 5.74   2.74  4.52  7.67  February 2020.0
## 2787 C.corindum       Key_Largo   M 5.48   2.46  3.66  6.68  February 2020.0
## 2788 C.corindum       Key_Largo   F 7.10   3.23  4.80  8.61  February 2020.0
## 2789 C.corindum       Key_Largo   F 6.51   3.00  5.07  8.91  February 2020.0
## 2790 C.corindum       Key_Largo   F 6.67   3.09  5.13  8.69  February 2020.0
## 2791 C.corindum       Key_Largo   M 6.00   2.82  4.76  8.30  February 2020.0
## 2792 C.corindum       Key_Largo   M 5.56   2.69  4.80  7.70  February 2020.0
## 2793 C.corindum       Key_Largo   F 6.27   2.92  5.24  8.78  February 2020.0
## 2794 C.corindum       Key_Largo   F 6.62   2.88  4.79  8.33  February 2020.0
## 2795 C.corindum       Key_Largo   M 5.55   2.50  4.71  7.77  February 2020.0
## 2796 C.corindum       Key_Largo   F 6.48   2.80  4.57  8.15  February 2020.0
## 2797 C.corindum       Key_Largo   M 5.18   2.56  4.05  6.90  February 2020.0
## 2798 C.corindum       Key_Largo   M 5.15   2.40  4.07  6.91  February 2020.0
## 2799 C.corindum       Key_Largo   F 6.88   3.29  5.46  9.24  February 2020.0
## 2800 C.corindum       Key_Largo   M 5.28   2.58  4.92  7.52  February 2020.0
## 2801 C.corindum       Key_Largo   F 7.11   2.88  4.95  8.65  February 2020.0
## 2802 C.corindum       Key_Largo   F 6.85   3.16  5.24  8.65  February 2020.0
## 2803 C.corindum       Key_Largo   F 8.83   3.54  9.23 12.92  February 2020.0
## 2804 C.corindum       Key_Largo   F 6.65   3.11  5.37  8.76  February 2020.0
## 2805 C.corindum       Key_Largo   M 5.74   2.65  4.57  7.38  February 2020.0
## 2806 C.corindum       Key_Largo   M 5.81   2.84  5.01  8.14  February 2020.0
## 2807 C.corindum       Key_Largo   M 5.68   2.73  4.57  7.67  February 2020.0
## 2808 C.corindum       Key_Largo   F 7.22   3.60  9.21 12.56  February 2020.0
## 2809 C.corindum       Key_Largo   F 6.43   2.95  4.87  8.47  February 2020.0
## 2810 C.corindum       Key_Largo   M 6.09   2.92  5.42  8.52  February 2020.0
## 2811 C.corindum       Key_Largo   M 6.48   3.18  8.06 11.20  February 2020.0
## 2812  K.elegans     Lake_Placid   M 5.46   3.00  8.23 11.57  February 2020.0
## 2813  K.elegans     Lake_Placid   F 8.31   3.71  9.77 13.61  February 2020.0
## 2814  K.elegans     Lake_Placid   F 6.44   3.38  9.42 12.99  February 2020.0
## 2815  K.elegans     Lake_Placid   M 5.85   2.98  8.35 11.53  February 2020.0
## 2816  K.elegans     Lake_Placid   M 5.31   2.96  7.77 10.89  February 2020.0
## 2817  K.elegans     Lake_Placid   F 6.06   3.20  9.63 12.74  February 2020.0
## 2818  K.elegans     Lake_Placid   F 6.55   3.27  9.44 12.93  February 2020.0
## 2819  K.elegans     Lake_Placid   F 6.38   3.46  9.10 12.75  February 2020.0
## 2820  K.elegans     Lake_Placid   M 4.77   2.62  6.73  9.41  February 2020.0
## 2821  K.elegans     Lake_Placid   F 7.38   3.40  9.21 12.73  February 2020.0
## 2822  K.elegans     Lake_Placid   M 5.88   3.05  9.00 12.01  February 2020.0
## 2823  K.elegans     Lake_Placid   M 5.73   3.17  9.12 11.97  February 2020.0
## 2824  K.elegans     Lake_Placid   M 5.41   3.01  8.68 11.48  February 2020.0
## 2825  K.elegans     Lake_Placid   M 5.41   2.99  8.30 11.21  February 2020.0
## 2826  K.elegans     Lake_Placid   F 8.01   3.46  9.39 12.63  February 2020.0
## 2827  K.elegans     Lake_Placid   M 5.18   2.87  7.29 10.06  February 2020.0
## 2828  K.elegans     Lake_Placid   F 6.44   3.36  8.43 11.86  February 2020.0
## 2829  K.elegans     Lake_Placid   M 5.17   2.76  7.84 10.65  February 2020.0
## 2830  K.elegans     Lake_Placid   M 5.56   3.10  8.99 12.33  February 2020.0
## 2831  K.elegans     Lake_Placid   M 5.58   2.84  7.80 10.96  February 2020.0
## 2832  K.elegans     Lake_Placid   F 6.98   3.71  9.85 13.50  February 2020.0
## 2833  K.elegans     Lake_Placid   M 5.43   2.88  7.66 10.56  February 2020.0
## 2834  K.elegans     Lake_Placid   M 5.37   2.84  7.73 10.82  February 2020.0
## 2835  K.elegans     Lake_Placid   F 7.92   3.37  9.53 13.16  February 2020.0
## 2836  K.elegans     Lake_Placid   F 6.96   3.59  9.18 12.80  February 2020.0
## 2837  K.elegans     Lake_Placid   M 5.56   2.96  7.91 10.89  February 2020.0
## 2838  K.elegans     Lake_Placid   F 7.61   3.44  9.09 12.74  February 2020.0
## 2839  K.elegans     Lake_Placid   F 6.51   3.36  8.88 12.00  February 2020.0
## 2840  K.elegans     Lake_Placid   M 5.14   2.75  6.93  9.83  February 2020.0
## 2841  K.elegans     Lake_Placid   M 5.45   2.95  7.64 10.72  February 2020.0
## 2842  K.elegans     Lake_Placid   M 5.72   3.00  8.36 11.56  February 2020.0
## 2843  K.elegans     Lake_Placid   M 5.46   2.98  7.47 10.46  February 2020.0
## 2844  K.elegans     Lake_Placid   M 5.24   3.14  8.71 11.91  February 2020.0
## 2845  K.elegans     Lake_Placid   M 5.26   2.93  7.93 10.82  February 2020.0
## 2846  K.elegans     Lake_Placid   F 6.88   3.50  9.48 12.92  February 2020.0
## 2847  K.elegans     Lake_Placid   M 5.37   2.85  7.63 10.52  February 2020.0
## 2848  K.elegans     Lake_Placid   F 7.67   3.68  9.78 13.35  February 2020.0
## 2849  K.elegans     Lake_Placid   M 4.97   2.72  7.62 10.18  February 2020.0
## 2850  K.elegans     Lake_Placid   M 5.34   2.85  8.15 11.03  February 2020.0
## 2851  K.elegans     Lake_Placid   M 5.14   2.73  6.58  9.23  February 2020.0
## 2852  K.elegans     Lake_Placid   F 8.05   3.76 10.18 13.84  February 2020.0
## 2853  K.elegans     Lake_Placid   M 5.30   3.01  8.36 11.44  February 2020.0
## 2854  K.elegans     Lake_Placid   M 6.31   3.38  8.83 11.96  February 2020.0
## 2855  K.elegans      Lake_Wales   M 5.41   2.98  8.03 11.18  February 2020.0
## 2856  K.elegans      Lake_Wales   F 7.75   3.58  9.34 13.26  February 2020.0
## 2857  K.elegans      Lake_Wales   M 5.46   2.90  8.21 11.14  February 2020.0
## 2858  K.elegans      Lake_Wales   F 7.44   3.33  8.98 12.36  February 2020.0
## 2859  K.elegans      Lake_Wales   F 7.50   3.28  8.63 12.08  February 2020.0
## 2860  K.elegans      Lake_Wales   F 6.99   3.39  8.98 12.65  February 2020.0
## 2861  K.elegans      Lake_Wales   F 7.59   3.31  9.21 12.82  February 2020.0
## 2862  K.elegans      Lake_Wales   M 5.58   2.89  7.56 10.97  February 2020.0
## 2863  K.elegans      Lake_Wales   M 5.31   2.68  7.65 10.44  February 2020.0
## 2864  K.elegans      Lake_Wales   F 6.62   3.60  9.83 13.61  February 2020.0
## 2865  K.elegans      Lake_Wales   M 5.27   2.74  8.04 10.94  February 2020.0
## 2866  K.elegans      Lake_Wales   M 5.73   2.99  7.88 11.13  February 2020.0
## 2867  K.elegans      Lake_Wales   M 5.96   3.37  8.93 12.11  February 2020.0
## 2868  K.elegans      Lake_Wales   F 7.02   3.53  9.35 12.62  February 2020.0
## 2869  K.elegans      Lake_Wales   F 7.16   3.37  9.22 12.66  February 2020.0
## 2870  K.elegans      Lake_Wales   M 5.54   3.14  8.32 11.48  February 2020.0
## 2871  K.elegans      Lake_Wales   M 5.16   3.04  7.99 11.03  February 2020.0
## 2872  K.elegans      Lake_Wales   M 5.71   3.24  8.09 11.05  February 2020.0
## 2873  K.elegans      Lake_Wales   F 7.25   3.85  9.90 13.48  February 2020.0
## 2874  K.elegans      Lake_Wales   M 5.47   3.21  8.33 11.21  February 2020.0
## 2875  K.elegans      Lake_Wales   M 6.26   2.89  8.07 10.93  February 2020.0
## 2876  K.elegans      Lake_Wales   F 6.44   3.63  9.21 12.82  February 2020.0
## 2877  K.elegans      Lake_Wales   M 5.40   2.90  8.08 11.02  February 2020.0
## 2878  K.elegans      Lake_Wales   F 7.60   3.44  9.21 12.52  February 2020.0
## 2879  K.elegans      Lake_Wales   M 5.05   2.79  7.91 10.82  February 2020.0
## 2880  K.elegans      Lake_Wales   F 6.44   3.68  9.52 12.91  February 2020.0
## 2881  K.elegans      Lake_Wales   F 7.58   3.36  9.24 12.63  February 2020.0
## 2882  K.elegans      Lake_Wales   M 5.54   3.00  7.98 10.91  February 2020.0
## 2883  K.elegans      Lake_Wales   M 5.29   2.67  7.47 10.23  February 2020.0
## 2884  K.elegans      Lake_Wales   F 7.28   3.32  9.46 12.61  February 2020.0
## 2885  K.elegans      Lake_Wales   F 7.68   3.28  9.13 12.48  February 2020.0
## 2886  K.elegans      Lake_Wales   F 6.61   3.59  9.57 12.89  February 2020.0
## 2887  K.elegans      Lake_Wales   M 5.56   2.85  7.61 10.46  February 2020.0
## 2888  K.elegans      Lake_Wales   M 5.67   2.63  4.54  7.41  February 2020.0
## 2889  K.elegans      Lake_Wales   F 6.74   3.23  8.77 11.70  February 2020.0
## 2890  K.elegans      Lake_Wales   M 5.85   3.09  8.13 11.21  February 2020.0
## 2891  K.elegans      Lake_Wales   M 5.87   3.05  8.64 11.58  February 2020.0
## 2892  K.elegans      Lake_Wales   M 5.51   2.79  7.19  9.69  February 2020.0
## 2893  K.elegans      Lake_Wales   M 7.41   3.36  9.13 12.34  February 2020.0
## 2894  K.elegans      Lake_Wales   M 5.73   3.13  8.61 11.54  February 2020.0
## 2895  K.elegans      Lake_Wales   F 6.47   3.54  9.08 12.37  February 2020.0
## 2896  K.elegans      Lake_Wales   M 5.48   2.98  8.32 11.23  February 2020.0
## 2897  K.elegans      Lake_Wales   M 5.22   2.87  7.38 10.01  February 2020.0
## 2898  K.elegans      Lake_Wales   M 5.37   2.88  8.24 10.93  February 2020.0
## 2899  K.elegans      Lake_Wales   F 7.85   3.60  9.49 12.76  February 2020.0
## 2900  K.elegans      Lake_Wales   M 5.02   2.68  8.13 10.86  February 2020.0
## 2901  K.elegans      Lake_Wales   F 6.70   3.35  8.00 11.37  February 2020.0
## 2902  K.elegans      Lake_Wales   F 6.50   3.49  8.99 12.20  February 2020.0
## 2903  K.elegans      Lake_Wales   M 5.64   3.04  8.22 10.85  February 2020.0
## 2904  K.elegans      Lake_Wales   M 5.04   2.86  7.87 10.61  February 2020.0
## 2905  K.elegans        Leesburg   M 5.32   2.94  7.39 10.85  February 2020.0
## 2906  K.elegans        Leesburg   M 5.89   3.32  8.37 11.70  February 2020.0
## 2907  K.elegans        Leesburg   M 5.11   2.81  7.98 10.98  February 2020.0
## 2908  K.elegans        Leesburg   M 5.42   2.98  8.49 11.19  February 2020.0
## 2909  K.elegans        Leesburg   M 5.59   2.99  7.82 11.02  February 2020.0
## 2910  K.elegans        Leesburg   M 5.35   2.92  7.45 10.24  February 2020.0
## 2911  K.elegans        Leesburg   F 6.14   3.66  8.79 12.14  February 2020.0
## 2912  K.elegans        Leesburg   F 6.17   2.97  8.04 11.35  February 2020.0
## 2913  K.elegans        Leesburg   F 6.07   3.45  8.93 12.33  February 2020.0
## 2914  K.elegans        Leesburg   M 5.99   3.22  8.59 11.72  February 2020.0
## 2915  K.elegans        Leesburg   M 5.14   2.72  6.94  9.98  February 2020.0
## 2916  K.elegans        Leesburg   M 5.72   3.10  8.59 11.72  February 2020.0
## 2917  K.elegans        Leesburg   F 6.47   3.50  9.35 12.66  February 2020.0
## 2918  K.elegans        Leesburg   M 5.54   2.94  8.29 11.12  February 2020.0
## 2919  K.elegans        Leesburg   F 6.36   2.74  5.09  8.22  February 2020.0
## 2920  K.elegans        Leesburg   F 6.41   3.00  7.97 11.17  February 2020.0
## 2921  K.elegans        Leesburg   M 5.83   3.26  8.21 11.29  February 2020.0
## 2922  K.elegans        Leesburg   M 4.87   2.96  7.94 10.68  February 2020.0
## 2923  K.elegans        Leesburg   M 5.53   3.19  8.56 11.64  February 2020.0
## 2924  K.elegans        Leesburg   M 5.51   3.31  8.82 12.06  February 2020.0
## 2925  K.elegans        Leesburg   M 5.05   2.89  8.15 10.94  February 2020.0
## 2926  K.elegans        Leesburg   M 5.00   2.99  8.36 11.05  February 2020.0
## 2927  K.elegans        Leesburg   F 6.54   3.46  9.50 13.09  February 2020.0
## 2928  K.elegans        Leesburg   F 6.31   3.47  9.17 12.53  February 2020.0
## 2929  K.elegans        Leesburg   M 5.60   3.10  7.95 11.32  February 2020.0
## 2930  K.elegans        Leesburg   F 7.62   3.37  8.17 11.62  February 2020.0
## 2931  K.elegans        Leesburg   M 5.19   2.88  4.99  7.88  February 2020.0
## 2932  K.elegans        Leesburg   M 5.40   3.05  8.11 10.98  February 2020.0
## 2933  K.elegans        Leesburg   M 4.99   2.96  7.30 10.28  February 2020.0
## 2934 C.corindum North_Key_Largo   M 6.03   2.90  7.68 10.67  February 2020.0
## 2935 C.corindum North_Key_Largo   M 5.75   2.94  8.30 11.40  February 2020.0
## 2936 C.corindum North_Key_Largo   M 5.44   2.97  7.66 10.67  February 2020.0
## 2937 C.corindum North_Key_Largo   M 6.07   3.24  8.40 11.40  February 2020.0
## 2938 C.corindum North_Key_Largo   F 8.03   3.42  9.08 12.77  February 2020.0
## 2939 C.corindum North_Key_Largo   F 7.15   3.01  7.91 11.29  February 2020.0
## 2940 C.corindum North_Key_Largo   F 7.58   3.55  8.72 12.28  February 2020.0
## 2941 C.corindum North_Key_Largo   M 5.50   2.90  7.57 10.73  February 2020.0
## 2942 C.corindum North_Key_Largo   F 6.24   2.98  7.58 10.98  February 2020.0
## 2943 C.corindum North_Key_Largo   F 7.56   3.26  8.18 11.71  February 2020.0
## 2944 C.corindum North_Key_Largo   F 8.12   3.25  8.28 11.71  February 2020.0
## 2945 C.corindum North_Key_Largo   F 8.17   3.54  9.33 12.79  February 2020.0
## 2946 C.corindum North_Key_Largo   M 6.05   3.38  8.39 11.52  February 2020.0
## 2947 C.corindum North_Key_Largo   M 6.21   3.25  8.58 11.64  February 2020.0
## 2948 C.corindum North_Key_Largo   M 5.99   2.99  7.55 10.80  February 2020.0
## 2949 C.corindum North_Key_Largo   M 5.95   3.10  8.20 11.48  February 2020.0
## 2950 C.corindum North_Key_Largo   F 7.44   3.07  7.86 11.20  February 2020.0
## 2951 C.corindum North_Key_Largo   M 5.72   2.82  7.46 10.43  February 2020.0
## 2952 C.corindum North_Key_Largo   F 7.85   3.73  9.71 13.20  February 2020.0
## 2953 C.corindum North_Key_Largo   F 7.19   3.32  8.56 12.21  February 2020.0
## 2954 C.corindum North_Key_Largo   M 6.30   3.04  8.07 11.40  February 2020.0
## 2955 C.corindum North_Key_Largo   F 8.18   3.48  8.57 12.28  February 2020.0
## 2956 C.corindum North_Key_Largo   F 8.45   3.95 10.00 14.16  February 2020.0
## 2957 C.corindum North_Key_Largo   M 6.23   2.97  7.76 10.83  February 2020.0
## 2958 C.corindum North_Key_Largo   M 5.58   2.77  7.22 10.02  February 2020.0
## 2959 C.corindum North_Key_Largo   M 6.41   3.25  8.62 11.65  February 2020.0
## 2960 C.corindum North_Key_Largo   M 5.67   2.98  7.01 10.08  February 2020.0
## 2961 C.corindum North_Key_Largo   M 6.13   2.99  7.43 10.56  February 2020.0
## 2962 C.corindum North_Key_Largo   M 6.44   3.09  8.24 11.42  February 2020.0
## 2963 C.corindum North_Key_Largo   M 5.91   3.22  8.43 11.41  February 2020.0
## 2964 C.corindum North_Key_Largo   F 8.97   3.78 10.05 13.61  February 2020.0
## 2965 C.corindum North_Key_Largo   M 5.94   2.92  7.98 10.85  February 2020.0
## 2966 C.corindum North_Key_Largo   F 9.02   3.71  9.47 13.43  February 2020.0
## 2967 C.corindum North_Key_Largo   M 5.93   2.94  8.16 11.08  February 2020.0
## 2968 C.corindum North_Key_Largo   F 8.29   3.64  9.99 13.81  February 2020.0
## 2969 C.corindum North_Key_Largo   F 8.44   3.70  9.31 13.44  February 2020.0
## 2970 C.corindum North_Key_Largo   F 8.64   3.27  8.90 12.61  February 2020.0
## 2971 C.corindum North_Key_Largo   F 7.58   3.32  8.58 12.21  February 2020.0
## 2972 C.corindum North_Key_Largo   M 6.07   3.15  8.18 11.15  February 2020.0
## 2973 C.corindum North_Key_Largo   M 6.01   3.17  8.18 11.15  February 2020.0
## 2974 C.corindum North_Key_Largo   M 5.75   2.92  7.78 10.93  February 2020.0
## 2975 C.corindum North_Key_Largo   F 9.08   3.71  9.68 13.81  February 2020.0
## 2976 C.corindum North_Key_Largo   F 6.91   3.02  7.75 11.25  February 2020.0
## 2977 C.corindum North_Key_Largo   F 9.87   4.14 10.47 14.34  February 2020.0
## 2978 C.corindum North_Key_Largo   M 5.78   2.83  7.38 10.46  February 2020.0
## 2979 C.corindum North_Key_Largo   M 6.09   2.90  8.08 10.86  February 2020.0
## 2980 C.corindum North_Key_Largo   M 6.88   3.16  8.84 12.06  February 2020.0
## 2981 C.corindum North_Key_Largo   M 5.42   2.70  7.20 10.15  February 2020.0
## 2982 C.corindum North_Key_Largo   F 8.04   3.32  8.36 11.72  February 2020.0
## 2983 C.corindum North_Key_Largo   F 7.41   3.79  9.98 13.66  February 2020.0
## 2984 C.corindum North_Key_Largo   F 7.61   3.82  9.80 13.86  February 2020.0
## 2985 C.corindum North_Key_Largo   M 5.72   3.06  7.80 10.72  February 2020.0
## 2986 C.corindum North_Key_Largo   M 6.85   3.08  8.92 11.99  February 2020.0
## 2987 C.corindum North_Key_Largo   M 5.34   2.93  7.63 10.63  February 2020.0
## 2988 C.corindum North_Key_Largo   F 7.90   3.33  8.50 12.37  February 2020.0
## 2989 C.corindum North_Key_Largo   M 6.39   3.18  8.41 11.86  February 2020.0
## 2990 C.corindum North_Key_Largo   F 8.17   3.48  9.37 13.09  February 2020.0
## 2991 C.corindum North_Key_Largo   M 5.78   2.94  7.97 11.14  February 2020.0
## 2992 C.corindum North_Key_Largo   M 5.94   2.89  7.83 11.00  February 2020.0
## 2993 C.corindum North_Key_Largo   M 6.40   3.08  8.37 11.69  February 2020.0
## 2994 C.corindum North_Key_Largo   F 6.39   2.88  7.56 10.70  February 2020.0
## 2995 C.corindum North_Key_Largo   F 7.35   3.74  9.77 13.20  February 2020.0
## 2996 C.corindum North_Key_Largo   M 5.58   3.11  8.65 11.52  February 2020.0
## 2997 C.corindum North_Key_Largo   M 6.17   2.61  8.01 10.53  February 2020.0
## 2998 C.corindum North_Key_Largo   F 8.51   3.67  9.15 12.95  February 2020.0
## 2999 C.corindum North_Key_Largo   M 5.55   2.77  6.58  9.52  February 2020.0
## 3000 C.corindum North_Key_Largo   M 5.42   2.82  7.60 10.59  February 2020.0
## 3001 C.corindum North_Key_Largo   M 6.16   3.20  8.37 11.71  February 2020.0
## 3002 C.corindum North_Key_Largo   M 6.15   3.04  8.24 11.48  February 2020.0
## 3003 C.corindum North_Key_Largo   F 7.99   3.50  8.71 12.31  February 2020.0
## 3004 C.corindum North_Key_Largo   M 6.38   2.99  7.66 10.66  February 2020.0
## 3005 C.corindum North_Key_Largo   M 5.77   2.91  7.40 10.49  February 2020.0
## 3006 C.corindum North_Key_Largo   M 6.35   3.17  8.53 11.52  February 2020.0
## 3007 C.corindum North_Key_Largo   M 5.95   3.11  8.26 11.56  February 2020.0
## 3008 C.corindum North_Key_Largo   M 5.79   3.06  8.16 11.14  February 2020.0
## 3009 C.corindum North_Key_Largo   F 8.15   4.04 10.52 14.50  February 2020.0
## 3010 C.corindum North_Key_Largo   F 9.17   3.73  9.38 12.86  February 2020.0
## 3011 C.corindum North_Key_Largo   F 8.28   3.46  8.71 12.32  February 2020.0
## 3012 C.corindum North_Key_Largo   M 6.41   3.02  8.13 11.12  February 2020.0
## 3013 C.corindum North_Key_Largo   M 6.67   3.20  8.46 11.40  February 2020.0
## 3014 C.corindum North_Key_Largo   M 5.71   3.34  8.49 11.61  February 2020.0
## 3015 C.corindum North_Key_Largo   F 9.44   4.00 10.17 14.13  February 2020.0
## 3016 C.corindum North_Key_Largo   F 6.90   3.05  7.79 11.22  February 2020.0
## 3017 C.corindum North_Key_Largo   F 8.04   3.53  9.18 12.63  February 2020.0
## 3018 C.corindum North_Key_Largo   F 8.49   3.25  8.52 12.17  February 2020.0
## 3019 C.corindum North_Key_Largo   F 8.54   3.50  9.35 13.05  February 2020.0
## 3020 C.corindum North_Key_Largo   M 5.97   2.88  7.99 10.86  February 2020.0
## 3021 C.corindum North_Key_Largo   M 5.84   2.87  7.55 10.62  February 2020.0
## 3022 C.corindum North_Key_Largo   M 5.78   2.85  7.10 10.18  February 2020.0
## 3023 C.corindum North_Key_Largo   F 8.32   3.39  9.09 12.47  February 2020.0
## 3024 C.corindum North_Key_Largo   M 5.54   3.01  7.68 10.57  February 2020.0
## 3025 C.corindum North_Key_Largo   F 7.84   3.49  9.01 12.59  February 2020.0
## 3026 C.corindum North_Key_Largo   M 6.00   3.30  7.35 10.71  February 2020.0
## 3027 C.corindum North_Key_Largo   F 7.53   3.27  8.13 12.13  February 2020.0
## 3028 C.corindum North_Key_Largo   M 6.05   3.03  8.31 11.52  February 2020.0
## 3029 C.corindum North_Key_Largo   F 6.84   3.02  6.00  9.41  February 2020.0
## 3030 C.corindum North_Key_Largo   M 6.08   3.16  8.42 11.66  February 2020.0
## 3031 C.corindum North_Key_Largo   M 5.47   2.92  8.29 11.29  February 2020.0
## 3032 C.corindum North_Key_Largo   M 5.84   2.98  7.83 10.88  February 2020.0
## 3033 C.corindum North_Key_Largo   M 6.16   3.01  7.88 10.90  February 2020.0
## 3034 C.corindum North_Key_Largo   M 5.51   2.75  7.11  9.94  February 2020.0
## 3035 C.corindum North_Key_Largo   M 6.43   3.27  8.85 11.84  February 2020.0
## 3036 C.corindum North_Key_Largo   M 5.47   2.72  6.73  9.77  February 2020.0
## 3037 C.corindum North_Key_Largo   M 5.69   2.94  7.27 10.38  February 2020.0
## 3038 C.corindum North_Key_Largo   M 6.02   2.76  7.12 10.08  February 2020.0
## 3039 C.corindum North_Key_Largo   M 5.98   2.76  7.15 10.13  February 2020.0
## 3040 C.corindum North_Key_Largo   M 5.24   2.49  6.06  8.89  February 2020.0
## 3041 C.corindum North_Key_Largo   M 5.52   2.64  7.17  9.95  February 2020.0
## 3042 C.corindum North_Key_Largo   F 8.50   3.28  8.65 12.35  February 2020.0
## 3043 C.corindum North_Key_Largo   M 6.08   2.98  7.63 10.70  February 2020.0
## 3044 C.corindum North_Key_Largo   M 5.77   2.77  7.30 10.22  February 2020.0
## 3045 C.corindum North_Key_Largo   M 5.99   3.26  8.25 11.39  February 2020.0
## 3046 C.corindum North_Key_Largo   M 6.12   3.10  8.56 11.66  February 2020.0
## 3047 C.corindum North_Key_Largo   M 5.78   3.00  8.35 11.27  February 2020.0
## 3048 C.corindum North_Key_Largo   M 6.07   2.82  7.53 10.73  February 2020.0
## 3049 C.corindum North_Key_Largo   M 6.56   2.91  8.02 11.22  February 2020.0
## 3050 C.corindum North_Key_Largo   M 6.09   3.08  8.05 11.21  February 2020.0
## 3051 C.corindum North_Key_Largo   F 7.02   3.06  7.35 10.48  February 2020.0
## 3052 C.corindum North_Key_Largo   M 6.65   3.31  8.30 11.50  February 2020.0
## 3053 C.corindum North_Key_Largo   M 5.83   2.69  7.11 10.03  February 2020.0
## 3054 C.corindum North_Key_Largo   F 7.32   3.05  8.34 11.68  February 2020.0
## 3055 C.corindum North_Key_Largo   M 6.17   2.91  7.57 10.44  February 2020.0
## 3056 C.corindum North_Key_Largo   M 6.03   3.05  8.01 11.00  February 2020.0
## 3057 C.corindum North_Key_Largo   M 5.81   2.78  7.32 10.12  February 2020.0
## 3058 C.corindum North_Key_Largo   F 6.35   3.03  7.38 10.93  February 2020.0
## 3059 C.corindum North_Key_Largo   F 7.51   3.09  7.91 11.42  February 2020.0
## 3060 C.corindum North_Key_Largo   M 6.13   3.22  8.68 11.83  February 2020.0
## 3061 C.corindum North_Key_Largo   M 6.59   2.96  7.87 11.05  February 2020.0
## 3062 C.corindum North_Key_Largo   M 5.88   3.07  8.12 11.04  February 2020.0
## 3063 C.corindum North_Key_Largo   M 6.30   2.99  7.93 11.11  February 2020.0
## 3064 C.corindum North_Key_Largo   M 5.93   3.03  7.89 10.85  February 2020.0
## 3065 C.corindum North_Key_Largo   M 5.92   3.35  8.93 12.04  February 2020.0
## 3066 C.corindum North_Key_Largo   F 6.79   3.61  9.77 13.39  February 2020.0
## 3067 C.corindum North_Key_Largo   M 5.68   2.78  7.72 10.29  February 2020.0
## 3068 C.corindum North_Key_Largo   M 6.23   3.34  8.89 12.04  February 2020.0
## 3069 C.corindum North_Key_Largo   M 5.86   2.91  7.99 11.06  February 2020.0
## 3070 C.corindum North_Key_Largo   M 5.56   3.24  8.16 11.42  February 2020.0
## 3071 C.corindum North_Key_Largo   M 6.29   2.90  7.78 10.89  February 2020.0
## 3072 C.corindum North_Key_Largo   M 5.33   2.95  7.70 10.75  February 2020.0
## 3073 C.corindum North_Key_Largo   M 5.97   2.92  8.10 10.84  February 2020.0
## 3074 C.corindum North_Key_Largo   F 7.71   3.47  8.42 11.78  February 2020.0
## 3075 C.corindum North_Key_Largo   F 8.23   3.76  9.40 13.00  February 2020.0
## 3076 C.corindum North_Key_Largo   M 6.06   2.83  5.88  8.77  February 2020.0
## 3077 C.corindum North_Key_Largo   F 8.59   3.68  9.92 13.59  February 2020.0
## 3078 C.corindum North_Key_Largo   M 5.18   2.60  5.45  8.60  February 2020.0
## 3079 C.corindum North_Key_Largo   M 5.50   3.02  8.18 11.11  February 2020.0
## 3080 C.corindum North_Key_Largo   M 5.51   2.66  5.05  7.74  February 2020.0
## 3081 C.corindum North_Key_Largo   M 5.64   2.90  4.80  7.98  February 2020.0
## 3082 C.corindum North_Key_Largo   F 6.88   3.23  5.25  9.09  February 2020.0
## 3083 C.corindum North_Key_Largo   M 5.50   2.75  5.56  8.52  February 2020.0
## 3084 C.corindum North_Key_Largo   F 8.79   3.65  9.15 12.49  February 2020.0
## 3085 C.corindum North_Key_Largo   F 6.14   2.82  4.19  7.63  February 2020.0
## 3086 C.corindum North_Key_Largo   F 6.10   2.94  4.68  8.01  February 2020.0
## 3087 C.corindum North_Key_Largo   F 5.59   2.56  4.49  7.42  February 2020.0
## 3088 C.corindum North_Key_Largo   F 7.76   3.44  6.22 10.32  February 2020.0
## 3089 C.corindum North_Key_Largo   F 6.55   2.91  4.62  7.93  February 2020.0
## 3090 C.corindum North_Key_Largo   M 4.90   2.24  3.67  6.59  February 2020.0
## 3091 C.corindum North_Key_Largo   M 5.76   2.86  7.33 10.26  February 2020.0
## 3092 C.corindum North_Key_Largo   F 8.53   3.58  8.92 12.60  February 2020.0
## 3093 C.corindum North_Key_Largo   F 8.21   3.60  9.06 12.65  February 2020.0
## 3094 C.corindum North_Key_Largo   M 5.89   3.00  7.67 10.66  February 2020.0
## 3095 C.corindum North_Key_Largo   M 5.36   2.69  7.59 10.46  February 2020.0
## 3096 C.corindum North_Key_Largo   M 5.86   2.82  4.69  7.99  February 2020.0
## 3097 C.corindum North_Key_Largo   F 6.22   2.99  4.84  8.34  February 2020.0
## 3098 C.corindum North_Key_Largo   M 5.14   2.48  4.55  7.11  February 2020.0
## 3099 C.corindum North_Key_Largo   M 5.75   2.65  4.47  7.64  February 2020.0
## 3100 C.corindum North_Key_Largo   F 7.97   3.67  9.36 12.93  February 2020.0
## 3101 C.corindum North_Key_Largo   M 6.40   3.34  7.67 10.86  February 2020.0
## 3102 C.corindum North_Key_Largo   M 5.41   3.18  8.00 11.02  February 2020.0
## 3103 C.corindum North_Key_Largo   F 8.51   3.69  9.63 13.47  February 2020.0
## 3104 C.corindum North_Key_Largo   M 5.99   3.03  5.14  8.48  February 2020.0
## 3105 C.corindum North_Key_Largo   M 5.51   2.48  4.24  7.19  February 2020.0
## 3106 C.corindum North_Key_Largo   F 6.85   2.91  4.76  8.20  February 2020.0
## 3107 C.corindum North_Key_Largo   F 6.44   2.75  4.20  7.74  February 2020.0
## 3108 C.corindum North_Key_Largo   M 5.41   2.41  4.45  7.56  February 2020.0
## 3109 C.corindum North_Key_Largo   M 5.91   2.85  5.43  8.28  February 2020.0
## 3110 C.corindum North_Key_Largo   F 6.07   2.78  4.41  7.88  February 2020.0
## 3111 C.corindum North_Key_Largo   M 5.64   2.72  4.73  7.72  February 2020.0
## 3112 C.corindum North_Key_Largo   F 7.51   2.99  5.07  8.70  February 2020.0
## 3113 C.corindum North_Key_Largo   M 5.36   2.44  3.71  6.51  February 2020.0
## 3114 C.corindum North_Key_Largo   F 5.82   2.56  3.86  6.93  February 2020.0
## 3115 C.corindum North_Key_Largo   F 5.88   2.65  4.14  7.31  February 2020.0
## 3116 C.corindum North_Key_Largo   M 5.47   2.41  4.22  6.97  February 2020.0
## 3117 C.corindum North_Key_Largo   M 5.26   2.39  3.66  6.57  February 2020.0
## 3118 C.corindum North_Key_Largo   M 5.31   2.58  4.05  7.11  February 2020.0
## 3119 C.corindum North_Key_Largo   F 6.65   3.19  5.34  9.01  February 2020.0
## 3120 C.corindum North_Key_Largo   M 5.42   2.43  5.10  7.86  February 2020.0
## 3121 C.corindum North_Key_Largo   M 5.64   2.71  4.48  7.30  February 2020.0
## 3122 C.corindum North_Key_Largo   M 5.47   2.85  4.55  7.61  February 2020.0
## 3123 C.corindum North_Key_Largo   F 7.25   3.21  5.47  9.28  February 2020.0
## 3124 C.corindum North_Key_Largo   F 6.07   2.80  4.26  7.67  February 2020.0
## 3125 C.corindum North_Key_Largo   M 5.72   2.73  4.95  8.15  February 2020.0
## 3126 C.corindum North_Key_Largo   M 5.46   2.58  4.52  7.80  February 2020.0
## 3127 C.corindum North_Key_Largo   M 5.31   2.52  4.20  7.30  February 2020.0
## 3128 C.corindum North_Key_Largo   F 6.89   3.03  5.29  9.03  February 2020.0
## 3129 C.corindum North_Key_Largo   F 6.51   3.09  4.87  8.15  February 2020.0
## 3130 C.corindum North_Key_Largo   M 5.65   2.68  4.36  7.38  February 2020.0
## 3131 C.corindum North_Key_Largo   F 8.22   3.70  9.58 13.14  February 2020.0
## 3132 C.corindum North_Key_Largo   M 5.18   2.62  4.39  7.80  February 2020.0
## 3133 C.corindum North_Key_Largo   M 5.08   2.36  3.94  6.79  February 2020.0
## 3134 C.corindum North_Key_Largo   M 5.04   2.51  3.89  6.96  February 2020.0
## 3135 C.corindum North_Key_Largo   F 6.38   2.78  4.47  8.09  February 2020.0
## 3136 C.corindum North_Key_Largo   F 9.21   3.76  9.44 13.19  February 2020.0
## 3137 C.corindum North_Key_Largo   M 6.12   2.93  5.38  8.63  February 2020.0
## 3138 C.corindum North_Key_Largo   F 6.97   3.07  5.12  8.62  February 2020.0
## 3139 C.corindum North_Key_Largo   M 5.94   2.81  4.95  8.11  February 2020.0
## 3140 C.corindum North_Key_Largo   F 7.23   3.18  4.94  8.55  February 2020.0
## 3141 C.corindum North_Key_Largo   M 5.35   2.52  4.32  7.36  February 2020.0
## 3142 C.corindum North_Key_Largo   M 5.62   2.89  4.58  7.70  February 2020.0
## 3143 C.corindum North_Key_Largo   F 7.32   3.25  8.61 11.88  February 2020.0
## 3144 C.corindum North_Key_Largo   M 5.06   2.61  4.47  7.02  February 2020.0
## 3145 C.corindum North_Key_Largo   F 6.00   2.93  4.68  8.05  February 2020.0
## 3146 C.corindum North_Key_Largo   F 6.57   3.20  8.36 11.92  February 2020.0
## 3147 C.corindum North_Key_Largo   F 6.36   2.94  4.67  8.09  February 2020.0
## 3148 C.corindum North_Key_Largo   M 6.48   3.19  8.69 11.99  February 2020.0
## 3149 C.corindum North_Key_Largo   F 6.11   2.72  5.10  8.40  February 2020.0
## 3150 C.corindum North_Key_Largo   F 7.53   3.25  8.75 12.00  February 2020.0
## 3151 C.corindum North_Key_Largo   F 8.37   3.85 10.09 14.09  February 2020.0
## 3152 C.corindum North_Key_Largo   M 5.85   2.83  6.92  9.83  February 2020.0
## 3153 C.corindum North_Key_Largo   F 8.25   3.54  8.75 12.44  February 2020.0
## 3154 C.corindum North_Key_Largo   M 5.40   3.19  8.22 11.20  February 2020.0
## 3155 C.corindum  Plantation_Key   M 5.50   3.18  8.39 11.83  February 2020.0
## 3156 C.corindum  Plantation_Key   M 5.64   3.12  7.88 11.09  February 2020.0
## 3157 C.corindum  Plantation_Key   M 5.75   3.36  8.48 11.90  February 2020.0
## 3158 C.corindum  Plantation_Key   M 6.21   2.97  7.87 10.90  February 2020.0
## 3159 C.corindum  Plantation_Key   F 7.47   3.32  8.33 11.89  February 2020.0
## 3160 C.corindum  Plantation_Key   M 5.76   3.04  8.03 11.00  February 2020.0
## 3161 C.corindum  Plantation_Key   F 8.19   3.64  9.30 13.02  February 2020.0
## 3162 C.corindum  Plantation_Key   F 8.39   3.54  9.38 13.09  February 2020.0
## 3163 C.corindum  Plantation_Key   M 6.10   3.39  9.06 12.14  February 2020.0
## 3164 C.corindum  Plantation_Key   M 6.09   3.28  8.56 12.21  February 2020.0
## 3165 C.corindum  Plantation_Key   F 7.01   3.68  9.23 13.04  February 2020.0
## 3166 C.corindum  Plantation_Key   M 5.69   3.11  8.41 11.60  February 2020.0
## 3167 C.corindum  Plantation_Key   F 8.26   3.53  9.00 12.53  February 2020.0
## 3168 C.corindum  Plantation_Key   M 6.83   3.36  8.61 12.01  February 2020.0
## 3169 C.corindum  Plantation_Key   M 6.14   3.21  8.40 11.85  February 2020.0
## 3170 C.corindum  Plantation_Key   F 7.29   3.16  8.15 11.51  February 2020.0
## 3171 C.corindum  Plantation_Key   M 5.67   3.13  8.17 11.13  February 2020.0
## 3172 C.corindum  Plantation_Key   M 6.06   3.26  8.50 11.93  February 2020.0
## 3173 C.corindum  Plantation_Key   F 6.76   3.59  9.29 12.87  February 2020.0
## 3174 C.corindum  Plantation_Key   M 5.61   2.70  7.20  9.96  February 2020.0
## 3175 C.corindum  Plantation_Key   M 5.72   3.05  8.13 11.52  February 2020.0
## 3176 C.corindum  Plantation_Key   M 5.59   3.13  8.35 11.45  February 2020.0
## 3177 C.corindum  Plantation_Key   M 5.82   3.34  8.52 11.93  February 2020.0
## 3178 C.corindum  Plantation_Key   M 5.79   2.70  7.65 10.51  February 2020.0
## 3179 C.corindum  Plantation_Key   M 5.81   2.96  8.47 11.75  February 2020.0
## 3180 C.corindum  Plantation_Key   M 5.51   2.82  7.41 10.82  February 2020.0
## 3181 C.corindum  Plantation_Key   M 5.77   2.86  8.00 11.06  February 2020.0
## 3182 C.corindum  Plantation_Key   M 5.99   2.96  7.84 10.83  February 2020.0
## 3183 C.corindum  Plantation_Key   F 9.02   3.45  9.36 13.06  February 2020.0
## 3184 C.corindum  Plantation_Key   M 6.20   3.15  8.75 11.74  February 2020.0
## 3185 C.corindum  Plantation_Key   M 5.54   3.20  8.52 11.64  February 2020.0
## 3186 C.corindum  Plantation_Key   M 5.53   2.95  8.12 10.90  February 2020.0
## 3187 C.corindum  Plantation_Key   M 6.25   3.16  8.57 11.73  February 2020.0
## 3188 C.corindum  Plantation_Key   M 5.52   2.88  7.48 10.51  February 2020.0
## 3189 C.corindum  Plantation_Key   F 8.04   3.40  9.11 12.60  February 2020.0
## 3190 C.corindum  Plantation_Key   M 5.84   2.93  7.77 10.76  February 2020.0
## 3191 C.corindum  Plantation_Key   M 6.12   2.94  8.00 11.00  February 2020.0
## 3192 C.corindum  Plantation_Key   M 5.63   2.77  7.55 10.32  February 2020.0
## 3193 C.corindum  Plantation_Key   M 6.30   3.31  8.78 11.97  February 2020.0
## 3194 C.corindum  Plantation_Key   M 5.70   2.91  7.79 10.77  February 2020.0
## 3195 C.corindum  Plantation_Key   F 7.77   3.30  9.02 12.44  February 2020.0
## 3196 C.corindum  Plantation_Key   F 6.58   3.21  8.32 11.70  February 2020.0
## 3197 C.corindum  Plantation_Key   M 6.23   3.11  8.31 11.45  February 2020.0
## 3198 C.corindum  Plantation_Key   F 7.21   3.59 10.02 13.53  February 2020.0
## 3199 C.corindum  Plantation_Key   F 8.53   3.30  8.48 11.98  February 2020.0
## 3200 C.corindum  Plantation_Key   M 5.89   2.14  6.30  9.34  February 2020.0
## 3201 C.corindum  Plantation_Key   M 6.09   2.68  7.57 10.67  February 2020.0
## 3202 C.corindum  Plantation_Key   F 9.01   3.77 10.53 13.86  February 2020.0
## 3203 C.corindum  Plantation_Key   M 6.17   3.16  8.55 11.85  February 2020.0
## 3204 C.corindum  Plantation_Key   M 5.45   2.65  7.20 10.09  February 2020.0
## 3205 C.corindum  Plantation_Key   F 6.37   2.99  7.40 10.73  February 2020.0
## 3206 C.corindum  Plantation_Key   M 5.43   2.58  4.49  7.58  February 2020.0
## 3207 C.corindum  Plantation_Key   M 5.30   2.51  4.09  6.76  February 2020.0
## 3208 C.corindum  Plantation_Key   F 7.03   2.92  4.94  8.71  February 2020.0
## 3209 C.corindum  Plantation_Key   M 5.57   2.63  4.34  7.44  February 2020.0
## 3210 C.corindum  Plantation_Key   F 7.26   3.23  4.78  8.53  February 2020.0
## 3211 C.corindum  Plantation_Key   F 6.48   3.33  9.03 12.18  February 2020.0
## 3212 C.corindum  Plantation_Key   M 6.22   3.44  8.17 11.65  February 2020.0
## 3213 C.corindum  Plantation_Key   M 5.71   2.66  4.46  7.60  February 2020.0
## 3214 C.corindum  Plantation_Key   F 6.04   2.85  4.48  7.84  February 2020.0
## 3215 C.corindum  Plantation_Key   M 4.46   2.23  3.69  6.29  February 2020.0
## 3216 C.corindum  Plantation_Key   M 5.77   2.75  7.82 10.62  February 2020.0
## 3217 C.corindum  Plantation_Key   F 6.33   3.06  5.18  8.61  February 2020.0
## 3218 C.corindum  Plantation_Key   F 7.03   3.11  4.79  8.51  February 2020.0
## 3219 C.corindum  Plantation_Key   F 6.99   3.30  4.87  8.97  February 2020.0
## 3220 C.corindum  Plantation_Key   M 5.64   2.68  4.48  7.56  February 2020.0
## 3221 C.corindum  Plantation_Key   M 5.37   2.50  3.99  7.06  February 2020.0
## 3222 C.corindum  Plantation_Key   F 7.75   3.48  6.27 10.10  February 2020.0
## 3223 C.corindum  Plantation_Key   F 7.50   3.86 10.09 13.60  February 2020.0
## 3224 C.corindum  Plantation_Key   F 7.88   3.99 10.07 13.76  February 2020.0
## 3225 C.corindum  Plantation_Key   F 8.75   3.88  9.79 13.63  February 2020.0
## 3226 C.corindum  Plantation_Key   M 6.08   3.05  8.06 11.28   October 2019.0
## 3227 C.corindum  Plantation_Key   F 6.43   3.18  8.05 11.22   October 2019.0
## 3228 C.corindum  Plantation_Key   F 8.59   3.73  9.18 12.82   October 2019.0
## 3229 C.corindum  Plantation_Key   M 6.60   3.33  8.48 11.61   October 2019.0
## 3230 C.corindum  Plantation_Key   M 6.23   3.25  8.48 11.67   October 2019.0
## 3231 C.corindum  Plantation_Key   F 8.12   3.36  8.71 12.20   October 2019.0
## 3232 C.corindum  Plantation_Key   F 9.33   4.06 10.48 14.57   October 2019.0
## 3233 C.corindum  Plantation_Key   M 5.97   2.89  7.70 10.97   October 2019.0
## 3234 C.corindum  Plantation_Key   F 7.46   3.30  5.36  9.04   October 2019.0
## 3235 C.corindum  Plantation_Key   F 8.02   3.60  9.55 13.19   October 2019.0
## 3236 C.corindum  Plantation_Key   M 6.04   3.00  7.99 11.01   October 2019.0
## 3237 C.corindum  Plantation_Key   M 6.36   2.93  7.71 10.62   October 2019.0
## 3238 C.corindum  Plantation_Key   M 6.19   2.91  7.95 10.87   October 2019.0
## 3239 C.corindum  Plantation_Key   M 6.17   3.13  8.38 11.48   October 2019.0
## 3240 C.corindum  Plantation_Key   F 7.14   2.91  5.41  8.80   October 2019.0
## 3241 C.corindum  Plantation_Key   F 6.46   2.85  4.89  8.38   October 2019.0
## 3242 C.corindum  Plantation_Key   M 6.10   3.07  7.85 11.02   October 2019.0
## 3243 C.corindum  Plantation_Key   F 8.14   3.67  9.15 12.75   October 2019.0
## 3244 C.corindum  Plantation_Key   F 6.79   2.98  5.22  8.39   October 2019.0
## 3245 C.corindum  Plantation_Key   F 8.54   3.62  9.27 12.71   October 2019.0
## 3246 C.corindum  Plantation_Key   M 5.76   2.90  8.39 11.18   October 2019.0
## 3247 C.corindum  Plantation_Key   M 5.98   2.93  8.01 10.81   October 2019.0
## 3248 C.corindum  Plantation_Key   M 5.96   3.02  8.10 11.24   October 2019.0
## 3249 C.corindum  Plantation_Key   F 8.37   3.51  9.58 13.02   October 2019.0
## 3250 C.corindum  Plantation_Key   F 8.33   3.28  8.90 12.08   October 2019.0
## 3251  K.elegans       Homestead   M 5.64   3.25  8.64 11.54   October 2019.0
## 3252  K.elegans       Homestead   M 5.50   3.10  8.11 11.09   October 2019.0
## 3253  K.elegans       Homestead   F 8.16   3.69  9.64 12.97   October 2019.0
## 3254  K.elegans       Homestead   M 5.85   2.98  8.39 11.44   October 2019.0
## 3255  K.elegans       Homestead   F 7.62   3.62  9.65 12.95   October 2019.0
## 3256  K.elegans       Homestead   F 7.69   3.55  9.52 12.94   October 2019.0
## 3257  K.elegans       Homestead   M 6.07   3.36  9.52 12.53   October 2019.0
## 3258  K.elegans       Homestead   F 7.76   3.68  9.58 13.12   October 2019.0
## 3259  K.elegans       Homestead   F 7.57   3.65  9.37 12.73   October 2019.0
## 3260  K.elegans       Homestead   F 6.36   2.93  5.08  8.27   October 2019.0
## 3261  K.elegans       Homestead   M 5.51   2.98  7.68 10.54   October 2019.0
## 3262  K.elegans       Homestead   F 7.96   3.62 10.02 13.60   October 2019.0
## 3263 C.corindum North_Key_Largo   F 8.72   3.85 10.29 14.16   October 2019.0
## 3264 C.corindum North_Key_Largo   F 9.02   3.76  9.98 13.29   October 2019.0
## 3265 C.corindum North_Key_Largo   F 7.97   3.42  9.15 12.72   October 2019.0
## 3266 C.corindum North_Key_Largo   F 9.67   3.81 10.21 13.96   October 2019.0
## 3267 C.corindum North_Key_Largo   M 6.80   3.32  9.09 12.43   October 2019.0
## 3268 C.corindum North_Key_Largo   F 8.52   3.59 10.04 13.44   October 2019.0
## 3269 C.corindum North_Key_Largo   M 6.20   3.31  8.93 12.10   October 2019.0
## 3270 C.corindum North_Key_Largo   F 8.45   3.45  9.00 12.28   October 2019.0
## 3271 C.corindum North_Key_Largo   F 8.73   3.71  9.92 13.28   October 2019.0
## 3272 C.corindum North_Key_Largo   F   NA   3.45  9.02 12.58   October 2019.0
## 3273 C.corindum North_Key_Largo   M 6.18   3.06  8.37 11.44   October 2019.0
## 3274 C.corindum North_Key_Largo   F 7.95   3.51  8.96 12.38   October 2019.0
## 3275 C.corindum North_Key_Largo   F 6.40   2.82  5.37  8.61   October 2019.0
## 3276 C.corindum North_Key_Largo   M 6.01   2.98  8.15 11.23   October 2019.0
## 3277 C.corindum North_Key_Largo   F 8.05   3.68  9.00 12.68   October 2019.0
## 3278 C.corindum North_Key_Largo   M 5.93   2.90  7.74 10.61   October 2019.0
## 3279 C.corindum North_Key_Largo   F 8.69   3.65  9.30 12.76   October 2019.0
## 3280 C.corindum North_Key_Largo   M 5.67   2.75  7.22 10.06   October 2019.0
## 3281 C.corindum North_Key_Largo   F 8.75   3.69  9.63 13.05   October 2019.0
## 3282 C.corindum North_Key_Largo   M 5.65   2.94  7.89 10.77   October 2019.0
## 3283 C.corindum North_Key_Largo   F 8.89   3.68  9.26 12.64   October 2019.0
## 3284 C.corindum North_Key_Largo   M 6.10   3.19  8.48 11.62   October 2019.0
## 3285 C.corindum North_Key_Largo   F 8.13   3.38  8.78 12.31   October 2019.0
## 3286 C.corindum North_Key_Largo   M 5.90   3.13  8.31 11.15   October 2019.0
## 3287 C.corindum North_Key_Largo   M 6.95   3.66  9.36 12.42   October 2019.0
## 3288 C.corindum North_Key_Largo   M 6.87   3.50  9.37 12.72   October 2019.0
## 3289  K.elegans     Lake_Placid   M 5.16   2.59  7.27 10.03   October 2019.0
## 3290  K.elegans     Lake_Placid   F 8.19   3.88 10.19 13.56   October 2019.0
## 3291  K.elegans     Lake_Placid   M 5.65   2.90  7.59 10.56   October 2019.0
## 3292  K.elegans     Lake_Placid   M 5.73   3.19  9.15 12.22   October 2019.0
## 3293  K.elegans     Lake_Placid   F 7.96   3.55 10.10 13.72   October 2019.0
## 3294  K.elegans     Lake_Placid   F 7.61   3.35  9.04 12.49   October 2019.0
## 3295  K.elegans     Lake_Placid   F 8.55   3.51  9.41 13.04   October 2019.0
## 3296  K.elegans     Lake_Placid   M 5.26   2.49  4.75  7.85   October 2019.0
## 3297  K.elegans     Lake_Placid   M 5.34   3.29  8.27 11.53   October 2019.0
## 3298  K.elegans     Lake_Placid   F 8.58   4.01 10.29 14.13   October 2019.0
## 3299  K.elegans     Lake_Placid   M 5.67   3.13  8.83 11.97   October 2019.0
## 3300  K.elegans     Lake_Placid   F 7.28   3.39  9.20 12.70   October 2019.0
## 3301  K.elegans     Lake_Placid   M 5.45   2.73  7.55 10.53   October 2019.0
## 3302  K.elegans     Lake_Placid   F 7.77   3.57  9.38 13.25   October 2019.0
## 3303  K.elegans     Lake_Placid   M 5.60   3.18  8.56 11.45   October 2019.0
## 3304  K.elegans     Lake_Placid   F 7.01   3.26  8.98 12.27   October 2019.0
## 3305  K.elegans     Lake_Placid   F 8.30   3.56  9.82 13.30   October 2019.0
## 3306  K.elegans     Lake_Placid   M 5.52   3.03  8.63 11.83   October 2019.0
## 3307  K.elegans     Lake_Placid   F 8.05   3.98 10.30 13.68   October 2019.0
## 3308  K.elegans     Lake_Placid   M 5.45   2.98  8.20 11.36   October 2019.0
## 3309  K.elegans     Lake_Placid   M 5.23   2.70  7.29 10.23   October 2019.0
## 3310 C.corindum North_Key_Largo   M 6.13   3.31  8.68 11.69   October 2019.0
## 3311 C.corindum North_Key_Largo   F 7.86   3.39  8.71 12.27   October 2019.0
## 3312 C.corindum North_Key_Largo   M 6.32   2.97  8.00 11.25   October 2019.0
## 3313 C.corindum North_Key_Largo   M 5.96   3.11  8.01 11.00   October 2019.0
## 3314  K.elegans       Homestead   F 6.67   3.83 10.20 13.74  December 2016.0
## 3315  K.elegans       Homestead   M 5.04   3.01  4.90  8.22  December 2016.0
## 3316  K.elegans       Homestead   F 5.98   3.43  6.56 10.01  December 2016.0
## 3317  K.elegans       Homestead   M 4.99   3.01  5.16  8.13  December 2016.0
## 3318 C.corindum       Key_Largo   M 6.63   3.48  9.29 12.39   October 2019.0
## 3319 C.corindum       Key_Largo   M 5.74   3.33  9.12 12.96   October 2019.0
## 3320 C.corindum       Key_Largo   F 7.99   3.39  8.82 12.51   October 2019.0
## 3321 C.corindum       Key_Largo   M 6.48   3.08  8.66 11.97   October 2019.0
## 3322 C.corindum       Key_Largo   F 9.08   3.80  9.96 13.69   October 2019.0
## 3323 C.corindum       Key_Largo   F 8.51   3.39  8.87 12.56   October 2019.0
## 3324 C.corindum       Key_Largo   F 8.10   3.33  8.81 12.46   October 2019.0
## 3325 C.corindum North_Key_Largo   M 6.46   3.17  8.67 11.75   October 2019.0
## 3326 C.corindum North_Key_Largo   F 9.38   3.79  9.78 13.51   October 2019.0
## 3327 C.corindum North_Key_Largo   F 7.63   3.31  8.50 11.85   October 2019.0
## 3328 C.corindum North_Key_Largo   M 5.53   2.67  4.40  7.45   October 2019.0
## 3329 C.corindum North_Key_Largo   M 6.08   3.08  8.26 11.10   October 2019.0
## 3330 C.corindum North_Key_Largo   M 5.13   2.30  3.98  6.74   October 2019.0
## 3331 C.corindum       Key_Largo   M 6.24   3.11  8.16 10.98   October 2019.0
## 3332 C.corindum       Key_Largo   F 7.62   3.56 10.13 13.24   October 2019.0
## 3333 C.corindum       Key_Largo   M 6.21   2.72  7.57 10.43   October 2019.0
## 3334 C.corindum North_Key_Largo   F 8.70   3.65  8.90 12.61   October 2019.0
## 3335 C.corindum North_Key_Largo   F 6.85   3.46  8.84 12.45   October 2019.0
## 3336 C.corindum North_Key_Largo   M 6.29   3.17  8.33 11.61   October 2019.0
## 3337 C.corindum North_Key_Largo   F 9.20   3.71  9.88 13.59   October 2019.0
## 3338 C.corindum North_Key_Largo   M 6.10   2.79  7.52 10.50   October 2019.0
## 3339 C.corindum North_Key_Largo   F 8.19   3.33  8.56 12.04   October 2019.0
## 3340  K.elegans      Lake_Wales   F 7.30   3.55  8.87 12.19       May 2019.0
## 3341  K.elegans      Lake_Wales   M 5.60   3.03  4.81  9.19       May 2019.0
## 3342  K.elegans      Lake_Wales   F 5.39   3.24  9.04 11.42       May 2019.0
## 3343  K.elegans      Lake_Wales   F 8.77   3.47  9.86 13.11       May 2019.0
## 3344  K.elegans      Lake_Wales   F 5.54   3.56  9.36 11.96       May 2019.0
## 3345  K.elegans      Lake_Wales   F 5.61   2.90  7.85 10.94       May 2019.0
## 3346  K.elegans      Lake_Wales   F 5.41   3.07  8.31 11.49       May 2019.0
## 3347  K.elegans      Lake_Wales   F 5.38   2.85  7.73 10.62       May 2019.0
## 3348  K.elegans      Lake_Wales   F 5.30   2.84  7.11 10.18       May 2019.0
## 3349  K.elegans      Lake_Wales   M 5.53   3.19  8.23 11.62       May 2019.0
## 3350  K.elegans      Lake_Wales   F 7.60   3.42  9.66 12.71       May 2019.0
## 3351  K.elegans      Lake_Wales   M 6.16   3.20  8.74 11.26       May 2019.0
## 3352  K.elegans      Lake_Wales   F 5.68   3.02  8.76 11.36       May 2019.0
## 3353  K.elegans      Lake_Wales   F 5.81   3.44  7.86 10.52       May 2019.0
## 3354  K.elegans      Lake_Wales   F 7.61   3.63  9.68 13.46       May 2019.0
## 3355  K.elegans      Lake_Wales   F 5.33   3.25  8.99 11.19       May 2019.0
## 3356  K.elegans      Lake_Wales   F 8.11   3.81 10.20 13.80       May 2019.0
## 3357  K.elegans      Lake_Wales   F 5.83   2.75  7.85 10.90       May 2019.0
## 3358  K.elegans      Lake_Wales   F 5.58   3.06  7.93 10.52       May 2019.0
## 3359  K.elegans      Lake_Wales   F 6.99   3.29  7.65 11.30       May 2019.0
## 3360  K.elegans      Lake_Wales   F 5.63   3.27  8.88 12.22       May 2019.0
## 3361  K.elegans      Lake_Wales   F 5.45   3.13  7.90 11.27       May 2019.0
## 3362  K.elegans      Lake_Wales   M 5.93   3.02  8.30 10.91       May 2019.0
## 3363  K.elegans      Lake_Wales   M 5.55   2.82  9.16 12.70       May 2019.0
## 3364  K.elegans      Lake_Wales   F 7.93   3.35  9.39 12.66       May 2019.0
## 3365  K.elegans      Lake_Wales   F 7.61   3.43  9.91 13.19       May 2019.0
## 3366  K.elegans      Lake_Wales   F 7.29   3.83  9.95 12.89       May 2019.0
## 3367  K.elegans      Lake_Wales   F 8.09   3.91  9.54 13.15       May 2019.0
## 3368  K.elegans      Lake_Wales   M 7.90   3.83 10.57 13.70       May 2019.0
## 3369  K.elegans      Lake_Wales   M 6.01   3.05  8.95 11.03       May 2019.0
## 3370  K.elegans      Lake_Wales   F 8.21   3.66  9.95 13.04       May 2019.0
## 3371  K.elegans      Lake_Wales   F 5.89   3.32  8.94 11.76       May 2019.0
## 3372  K.elegans      Lake_Wales   F 5.76   3.15  8.24 10.60       May 2019.0
## 3373  K.elegans      Lake_Wales   M 5.91   2.96  8.98 11.53       May 2019.0
## 3374  K.elegans      Lake_Wales   F 6.94   3.15  8.86 11.75       May 2019.0
## 3375  K.elegans      Lake_Wales   M 5.98   3.23  8.82 12.13       May 2019.0
## 3376  K.elegans      Lake_Wales   F 5.72   3.30  7.89 11.83       May 2019.0
## 3377  K.elegans      Lake_Wales   F 6.52   3.07  8.38 11.57       May 2019.0
## 3378  K.elegans      Lake_Wales   F 7.74   3.78 10.61 14.29       May 2019.0
## 3379  K.elegans      Lake_Wales   M 8.29   3.87  9.00 13.42       May 2019.0
## 3380  K.elegans      Lake_Wales   M 6.01   3.20  8.47 11.67       May 2019.0
## 3381  K.elegans      Lake_Wales   F 7.97   3.77 10.33 13.31       May 2019.0
## 3382  K.elegans      Lake_Wales   M 4.91   2.50  5.52  8.20       May 2019.0
## 3383  K.elegans      Lake_Wales   F 5.38   2.41  5.35  7.90       May 2019.0
## 3384  K.elegans      Lake_Wales   F 7.94   3.46 10.47 13.06       May 2019.0
## 3385  K.elegans      Lake_Wales   F 5.03   3.33  9.30 11.71       May 2019.0
## 3386  K.elegans      Lake_Wales   M 7.70   3.75  9.54 14.35       May 2019.0
## 3387  K.elegans      Lake_Wales   F 8.74   3.83 10.33 13.42       May 2019.0
## 3388  K.elegans      Lake_Wales   M 5.27   2.82  7.38 11.04       May 2019.0
## 3389  K.elegans      Lake_Wales   F 8.03   4.02 10.32 14.91       May 2019.0
## 3390  K.elegans      Lake_Wales   F 5.89   3.16  7.98 11.63       May 2019.0
## 3391  K.elegans      Lake_Wales   F 7.58   3.31  9.31 12.52       May 2019.0
## 3392  K.elegans      Lake_Wales   F 6.15   2.68  8.15 10.95       May 2019.0
## 3393  K.elegans      Lake_Wales   M 5.86   3.10  9.14 13.17       May 2019.0
## 3394  K.elegans        Leesburg   M 4.95   2.94  8.49 11.75       May 2019.0
## 3395  K.elegans        Leesburg   F 7.61   3.69  9.49 12.75       May 2019.0
## 3396  K.elegans        Leesburg   F 6.04   3.38  8.12 11.15       May 2019.0
## 3397  K.elegans        Leesburg   F 8.20   3.76 10.23 13.56       May 2019.0
## 3398  K.elegans        Leesburg   F 5.63   3.00  7.86 11.44       May 2019.0
## 3399  K.elegans        Leesburg   M 6.32   3.07  9.06 12.65       May 2019.0
## 3400  K.elegans        Leesburg   F 5.98   3.14  9.34 11.99       May 2019.0
## 3401  K.elegans        Leesburg   F 5.64   2.64  7.54 11.01       May 2019.0
## 3402  K.elegans        Leesburg   F 5.71   3.21  7.17 10.12       May 2019.0
## 3403  K.elegans        Leesburg   F 6.80   3.26  9.16 12.20       May 2019.0
## 3404  K.elegans        Leesburg   M 8.02   4.11 10.30 13.75       May 2019.0
## 3405  K.elegans        Leesburg   M 6.01   3.03  8.36 11.29       May 2019.0
## 3406  K.elegans        Leesburg   M 8.45   3.79  9.95 13.41       May 2019.0
## 3407  K.elegans        Leesburg   F 5.74   2.78  7.73 10.04       May 2019.0
## 3408  K.elegans        Leesburg   F 8.01   3.75  9.69 13.09       May 2019.0
## 3409  K.elegans        Leesburg   F 5.52   3.02  8.25 11.29       May 2019.0
## 3410  K.elegans        Leesburg   F 5.72   3.07  8.20 10.99       May 2019.0
## 3411  K.elegans        Leesburg   M 5.92   3.40  8.73 11.31       May 2019.0
## 3412  K.elegans        Leesburg   F 5.49   3.13  9.05 11.96       May 2019.0
## 3413  K.elegans        Leesburg   F 5.65   3.09  9.00 11.77       May 2019.0
## 3414  K.elegans        Leesburg   M 5.69   3.09  8.69 11.57       May 2019.0
## 3415  K.elegans        Leesburg   M 6.63   3.60  7.98 11.85       May 2019.0
## 3416  K.elegans        Leesburg   F 6.15   3.32  9.87 11.65       May 2019.0
## 3417  K.elegans        Leesburg   F 6.59   3.46  8.66 12.22       May 2019.0
## 3418  K.elegans        Leesburg   F 6.45   2.89  8.35 11.29       May 2019.0
## 3419  K.elegans        Leesburg   F 8.15   3.58  9.72 12.69       May 2019.0
## 3420  K.elegans        Leesburg   F 6.74   2.99  7.77 11.37       May 2019.0
## 3421  K.elegans        Leesburg   F 7.56   3.68  8.50 11.51       May 2019.0
## 3422  K.elegans        Leesburg   F 6.49   3.46  8.32 11.53       May 2019.0
## 3423  K.elegans        Leesburg   F 5.46   2.75  7.71 10.50       May 2019.0
## 3424  K.elegans        Leesburg   F 6.77   3.49  8.87 11.43       May 2019.0
## 3425  K.elegans        Leesburg   F 7.32   3.86  9.21 12.80       May 2019.0
## 3426  K.elegans        Leesburg   F 6.26   3.33  8.34 11.48       May 2019.0
## 3427  K.elegans        Leesburg   F 6.58   3.89  9.46 12.71       May 2019.0
## 3428  K.elegans        Leesburg   F 5.73   3.29  8.17 10.88       May 2019.0
## 3429  K.elegans        Leesburg   F 8.16   3.80  8.72 12.91       May 2019.0
## 3430  K.elegans        Leesburg   M 7.92   3.68  9.96 13.18       May 2019.0
## 3431  K.elegans        Leesburg   F 5.22   2.56  4.47  7.37       May 2019.0
## 3432  K.elegans        Leesburg   F 6.61   3.47  8.06 11.23       May 2019.0
## 3433  K.elegans        Leesburg   M 7.55   3.34  9.36 12.18       May 2019.0
## 3434  K.elegans        Leesburg   F 5.68   3.12  8.47 11.10       May 2019.0
## 3435  K.elegans        Leesburg   F 6.65   3.31  9.43 12.84       May 2019.0
## 3436  K.elegans        Leesburg   F 7.11   3.62  8.37 11.98       May 2019.0
## 3437  K.elegans        Leesburg   F 5.72   3.26  8.98 11.43       May 2019.0
## 3438  K.elegans        Leesburg   F 6.46   3.28  9.18 12.11       May 2019.0
## 3439  K.elegans        Leesburg   M 5.84   3.46  8.42 11.28       May 2019.0
## 3440  K.elegans        Leesburg   F 4.99   3.36  8.48 11.44       May 2019.0
## 3441  K.elegans        Leesburg   F 6.26   3.31  8.11 11.90       May 2019.0
## 3442  K.elegans        Leesburg   M 5.64   3.66  9.15 11.84       May 2019.0
## 3443  K.elegans        Leesburg   F 6.78   3.90  9.55 13.74       May 2019.0
## 3444  K.elegans        Leesburg   F 6.17   3.85  8.72 12.44       May 2019.0
## 3445  K.elegans        Leesburg   F 8.11   4.17  9.65 13.41       May 2019.0
## 3446  K.elegans        Leesburg   M 6.20   3.92  8.52 12.01       May 2019.0
## 3447  K.elegans        Leesburg   F 5.55   3.55  8.36 11.87       May 2019.0
## 3448  K.elegans       Homestead   F 5.97   2.82  8.06 11.43       May 2019.0
## 3449  K.elegans       Homestead   F 7.89   3.57  9.70 13.07       May 2019.0
## 3450  K.elegans       Homestead   F 7.46   3.53  9.16 12.41       May 2019.0
## 3451  K.elegans       Homestead   M 5.85   3.24  8.51 11.42       May 2019.0
## 3452  K.elegans       Homestead   F 6.26   3.40  8.65 11.52       May 2019.0
## 3453  K.elegans       Homestead   F 5.87   2.82  6.98 10.15       May 2019.0
## 3454  K.elegans       Homestead   M 9.11   3.93 10.39 14.08       May 2019.0
## 3455  K.elegans       Homestead   F 6.68   3.31  9.11 12.02       May 2019.0
## 3456  K.elegans       Homestead   M 7.33   3.56  9.04 11.92       May 2019.0
## 3457  K.elegans       Homestead   F 8.31   3.92 10.68 13.36       May 2019.0
## 3458  K.elegans       Homestead   F 5.27   3.05  7.70  9.91       May 2019.0
## 3459  K.elegans       Homestead   F 8.65   3.71  9.41 12.93       May 2019.0
## 3460  K.elegans       Homestead   M 6.38   3.33  9.22 11.87       May 2019.0
## 3461  K.elegans       Homestead   F 5.57   2.98  7.95 10.96       May 2019.0
## 3462  K.elegans       Homestead   F 8.83   3.82  9.42 13.32       May 2019.0
## 3463  K.elegans       Homestead   F 8.02   3.76  9.93 13.00       May 2019.0
## 3464  K.elegans       Homestead   M 8.26   3.62  9.38 13.29       May 2019.0
## 3465  K.elegans       Homestead   M 7.27   3.95 10.48 13.81       May 2019.0
## 3466  K.elegans       Homestead   F 5.68   3.21  8.18 11.29       May 2019.0
## 3467  K.elegans       Homestead   M 6.41   3.64  9.17 11.88       May 2019.0
## 3468  K.elegans       Homestead   F 7.55   3.96 10.06 12.79       May 2019.0
## 3469  K.elegans       Homestead   F 8.43   3.61  9.64 12.68       May 2019.0
## 3470  K.elegans       Homestead   F 6.31   3.24  8.86 11.51       May 2019.0
## 3471  K.elegans       Homestead   F 7.20   3.65  9.93 12.99       May 2019.0
## 3472  K.elegans       Homestead   F 6.01   3.08  7.59 10.56       May 2019.0
## 3473  K.elegans       Homestead   F 5.78   3.37  8.62 10.77       May 2019.0
## 3474  K.elegans       Homestead   F 7.67   3.36  8.16 11.81       May 2019.0
## 3475  K.elegans       Homestead   F 6.60   3.31  9.31 12.23       May 2019.0
## 3476  K.elegans       Homestead   M 7.90   3.87 10.74 14.19       May 2019.0
## 3477  K.elegans       Homestead   F 5.82   3.25  9.40 11.46       May 2019.0
## 3478  K.elegans       Homestead   M 7.97   3.52 10.09 13.52       May 2019.0
## 3479  K.elegans       Homestead   F 7.77   3.99  9.87 12.55       May 2019.0
## 3480  K.elegans       Homestead   F 5.68   2.77  7.07  9.78       May 2019.0
## 3481  K.elegans       Homestead   F 7.25   3.66  9.87 12.55       May 2019.0
## 3482  K.elegans       Homestead   M 5.70   3.04  8.01 11.09       May 2019.0
## 3483  K.elegans       Homestead   F 5.47   3.06  7.21 10.23       May 2019.0
## 3484  K.elegans       Homestead   F 4.67   3.18  7.20 10.56       May 2019.0
## 3485  K.elegans       Homestead   M 6.39   3.12  6.34  9.47       May 2019.0
##      months_since_start season w_morph      lat      long
## 1                     0 spring       L 26.63387 -81.87980
## 2                     0 spring       L 26.63387 -81.87980
## 3                     0 spring       L 26.63387 -81.87980
## 4                     0 spring       L 26.63387 -81.87980
## 5                     0 spring       L 26.63387 -81.87980
## 6                     0 spring       L 26.63387 -81.87980
## 7                     0 spring       L 26.63387 -81.87980
## 8                     0 spring       L 26.63387 -81.87980
## 9                     0 spring       L 26.63387 -81.87980
## 10                    0 spring       L 26.63387 -81.87980
## 11                    0 spring       L 26.63387 -81.87980
## 12                    0 spring       L 26.63387 -81.87980
## 13                    0 spring       L 26.63387 -81.87980
## 14                    0 spring       L 26.63387 -81.87980
## 15                    0 spring       S 26.63387 -81.87980
## 16                    0 spring       L 26.63387 -81.87980
## 17                    0 spring       L 26.63387 -81.87980
## 18                    0 spring       L 26.63387 -81.87980
## 19                    0 spring       L 26.63387 -81.87980
## 20                    0 spring       L 26.63387 -81.87980
## 21                    0 spring       L 26.63387 -81.87980
## 22                    0 spring       L 26.63387 -81.87980
## 23                    0 spring       L 26.63387 -81.87980
## 24                    0 spring       L 26.63387 -81.87980
## 25                    0 spring       L 26.63387 -81.87980
## 26                    0 spring       L 26.63387 -81.87980
## 27                    0 spring       L 26.63387 -81.87980
## 28                    0 spring       L 26.63387 -81.87980
## 29                    0 spring       S 26.63387 -81.87980
## 30                    0 spring       S 26.63387 -81.87980
## 31                    0 spring       L 26.63387 -81.87980
## 32                    0 spring       L 26.63387 -81.87980
## 33                    0 spring       L 26.63387 -81.87980
## 34                    0 spring       L 26.63387 -81.87980
## 35                    0 spring       S 26.63387 -81.87980
## 36                    0 spring       L 26.63387 -81.87980
## 37                    0 spring       L 26.63387 -81.87980
## 38                    0 spring       L 26.63387 -81.87980
## 39                    0 spring       L 26.63387 -81.87980
## 40                    0 spring       L 26.63387 -81.87980
## 41                    0 spring       L 26.63387 -81.87980
## 42                    0 spring       L 26.63387 -81.87980
## 43                    0 spring       L 26.63387 -81.87980
## 44                    0 spring       S 26.63387 -81.87980
## 45                    0 spring       L 26.63387 -81.87980
## 46                    0 spring       L 26.63387 -81.87980
## 47                    0 spring       L 26.63387 -81.87980
## 48                    0 spring       S 26.63387 -81.87980
## 49                    0 spring       L 26.63387 -81.87980
## 50                    0 spring       L 26.63387 -81.87980
## 51                    0 spring       L 26.63387 -81.87980
## 52                    0 spring       L 26.63387 -81.87980
## 53                    0 spring       L 26.63387 -81.87980
## 54                    0 spring       L 26.63387 -81.87980
## 55                    0 spring       L 26.63387 -81.87980
## 56                    0 spring       L 26.63387 -81.87980
## 57                    0 spring       L 26.63387 -81.87980
## 58                    0 spring       L 26.63387 -81.87980
## 59                    0 spring       L 26.63387 -81.87980
## 60                    0 spring       L 26.63387 -81.87980
## 61                    0 spring       L 26.63387 -81.87980
## 62                    0 spring       L 26.63387 -81.87980
## 63                    0 spring       L 26.63387 -81.87980
## 64                    0 spring       L 26.63387 -81.87980
## 65                    0 spring       L 26.63387 -81.87980
## 66                    0 spring       L 26.63387 -81.87980
## 67                    0 spring       L 26.63387 -81.87980
## 68                    0 spring       L 26.63387 -81.87980
## 69                    0 spring       L 26.63387 -81.87980
## 70                    0 spring       L 26.63387 -81.87980
## 71                    0 spring       L 26.63387 -81.87980
## 72                    0 spring       L 26.63387 -81.87980
## 73                    0 spring       L 26.63387 -81.87980
## 74                    0 spring       L 26.63387 -81.87980
## 75                    0 spring       L 26.63387 -81.87980
## 76                    0 spring       S 25.57106 -80.45500
## 77                    0 spring       L 25.57106 -80.45500
## 78                    0 spring       L 25.57106 -80.45500
## 79                    0 spring       L 25.57106 -80.45500
## 80                    0 spring       S 25.57106 -80.45500
## 81                    0 spring       L 25.57106 -80.45500
## 82                    0 spring       S 25.57106 -80.45500
## 83                    0 spring       S 25.57106 -80.45500
## 84                    0 spring       L 25.57106 -80.45500
## 85                    0 spring       S 25.57106 -80.45500
## 86                    0 spring       S 25.57106 -80.45500
## 87                    0 spring       S 25.57106 -80.45500
## 88                    0 spring       S 25.57106 -80.45500
## 89                    0 spring       S 25.57106 -80.45500
## 90                    0 spring       S 25.57106 -80.45500
## 91                    0 spring       S 25.57106 -80.45500
## 92                    0 spring       S 25.57106 -80.45500
## 93                    0 spring       L 25.57106 -80.45500
## 94                    0 spring       L 25.57106 -80.45500
## 95                    0 spring       S 25.57106 -80.45500
## 96                    0 spring       L 25.57106 -80.45500
## 97                    0 spring       L 25.57106 -80.45500
## 98                    0 spring       L 25.57106 -80.45500
## 99                    0 spring       L 25.57106 -80.45500
## 100                   0 spring       S 25.57106 -80.45500
## 101                   0 spring       L 25.57106 -80.45500
## 102                   0 spring       L 25.57106 -80.45500
## 103                   0 spring       L 25.57106 -80.45500
## 104                   0 spring       L 25.57106 -80.45500
## 105                   0 spring       L 25.57106 -80.45500
## 106                   0 spring       L 25.57106 -80.45500
## 107                   0 spring       S 25.57106 -80.45500
## 108                   0 spring       L 25.57106 -80.45500
## 109                   0 spring       L 25.57106 -80.45500
## 110                   0 spring       L 25.57106 -80.45500
## 111                   0 spring       L 25.57106 -80.45500
## 112                   0 spring       S 25.57106 -80.45500
## 113                   0 spring       L 25.57106 -80.45500
## 114                   0 spring       L 25.49131 -80.48578
## 115                   0 spring       L 25.49131 -80.48578
## 116                   0 spring       L 25.49131 -80.48578
## 117                   0 spring       L 25.49131 -80.48578
## 118                   0 spring       L 25.49131 -80.48578
## 119                   0 spring       L 25.49131 -80.48578
## 120                   0 spring       L 25.49131 -80.48578
## 121                   0 spring       L 25.49131 -80.48578
## 122                   0 spring       L 25.49131 -80.48578
## 123                   0 spring       L 25.49131 -80.48578
## 124                   0 spring       L 25.49131 -80.48578
## 125                   0 spring       L 25.49131 -80.48578
## 126                   0 spring       L 25.49131 -80.48578
## 127                   0 spring       L 25.49131 -80.48578
## 128                   0 spring       L 25.49131 -80.48578
## 129                   0 spring       L 25.49131 -80.48578
## 130                   0 spring       L 25.49131 -80.48578
## 131                   0 spring       L 25.49131 -80.48578
## 132                   0 spring       L 25.49131 -80.48578
## 133                   0 spring       L 25.49131 -80.48578
## 134                   0 spring       L 25.49131 -80.48578
## 135                   0 spring       L 25.49131 -80.48578
## 136                   0 spring       L 25.49131 -80.48578
## 137                   0 spring       L 25.49131 -80.48578
## 138                   0 spring       L 25.49131 -80.48578
## 139                   0 spring       L 25.49131 -80.48578
## 140                   0 spring       L 25.19515 -80.34592
## 141                   0 spring       L 25.19515 -80.34592
## 142                   0 spring       L 25.19515 -80.34592
## 143                   0 spring       L 25.19515 -80.34592
## 144                   0 spring       S 25.19515 -80.34592
## 145                   0 spring       L 25.19515 -80.34592
## 146                   0 spring       L 25.19515 -80.34592
## 147                   0 spring       L 25.19515 -80.34592
## 148                   0 spring       L 25.19515 -80.34592
## 149                   0 spring       L 25.19515 -80.34592
## 150                   0 spring       S 25.19515 -80.34592
## 151                   0 spring       L 25.19515 -80.34592
## 152                   0 spring       L 25.19515 -80.34592
## 153                   0 spring       L 25.19515 -80.34592
## 154                   0 spring       L 25.19515 -80.34592
## 155                   0 spring       L 25.19515 -80.34592
## 156                   0 spring       L 25.19515 -80.34592
## 157                   0 spring       L 25.19515 -80.34592
## 158                   0 spring       L 25.19515 -80.34592
## 159                   0 spring       S 25.19515 -80.34592
## 160                   0 spring       L 25.19515 -80.34592
## 161                   0 spring       S 25.19515 -80.34592
## 162                   0 spring       L 25.19515 -80.34592
## 163                   0 spring       L 25.19515 -80.34592
## 164                   0 spring       L 25.19515 -80.34592
## 165                   0 spring       L 25.19515 -80.34592
## 166                   0 spring       L 25.19515 -80.34592
## 167                   0 spring       L 25.19515 -80.34592
## 168                   0 spring       L 25.19515 -80.34592
## 169                   0 spring       L 25.19515 -80.34592
## 170                   0 spring       L 25.19515 -80.34592
## 171                   0 spring       L 25.19515 -80.34592
## 172                   0 spring       L 25.19515 -80.34592
## 173                   0 spring       L 25.19515 -80.34592
## 174                   0 spring       L 25.19515 -80.34592
## 175                   0 spring       S 25.19515 -80.34592
## 176                   0 spring       L 25.19515 -80.34592
## 177                   0 spring       L 25.19515 -80.34592
## 178                   0 spring       L 25.19515 -80.34592
## 179                   0 spring       L 25.19515 -80.34592
## 180                   0 spring       L 25.19515 -80.34592
## 181                   0 spring       L 25.19515 -80.34592
## 182                   0 spring       S 25.19515 -80.34592
## 183                   0 spring       L 25.19515 -80.34592
## 184                   0 spring       S 25.19515 -80.34592
## 185                   0 spring       L 25.19515 -80.34592
## 186                   0 spring       L 25.19515 -80.34592
## 187                   0 spring       L 25.19515 -80.34592
## 188                   0 spring       L 25.19515 -80.34592
## 189                   0 spring       S 25.19515 -80.34592
## 190                   0 spring       S 25.19515 -80.34592
## 191                   0 spring       L 25.19515 -80.34592
## 192                   0 spring       L 25.19515 -80.34592
## 193                   0 spring       S 25.19515 -80.34592
## 194                   0 spring       S 25.19515 -80.34592
## 195                   0 spring       L 25.19515 -80.34592
## 196                   0 spring       L 25.19515 -80.34592
## 197                   0 spring       L 25.19515 -80.34592
## 198                   0 spring       L 25.19515 -80.34592
## 199                   0 spring       L 25.19515 -80.34592
## 200                   0 spring       L 25.19515 -80.34592
## 201                   0 spring       L 27.93615 -81.57455
## 202                   0 spring       L 27.93615 -81.57455
## 203                   0 spring       L 27.93615 -81.57455
## 204                   0 spring       L 27.93615 -81.57455
## 205                   0 spring       L 27.93615 -81.57455
## 206                   0 spring       L 27.93615 -81.57455
## 207                   0 spring       L 27.93615 -81.57455
## 208                   0 spring       L 27.93615 -81.57455
## 209                   0 spring       L 27.93615 -81.57455
## 210                   0 spring       L 27.93615 -81.57455
## 211                   0 spring       L 27.93615 -81.57455
## 212                   0 spring       L 27.93615 -81.57455
## 213                   0 spring       L 27.93615 -81.57455
## 214                   0 spring       S 27.93615 -81.57455
## 215                   0 spring       L 27.93615 -81.57455
## 216                   0 spring       S 27.93615 -81.57455
## 217                   0 spring       L 27.93615 -81.57455
## 218                   0 spring       S 27.93615 -81.57455
## 219                   0 spring       L 27.93615 -81.57455
## 220                   0 spring       L 27.93615 -81.57455
## 221                   0 spring       L 27.93615 -81.57455
## 222                   0 spring       L 27.93615 -81.57455
## 223                   0 spring       L 27.93615 -81.57455
## 224                   0 spring       L 27.93615 -81.57455
## 225                   0 spring       S 27.93615 -81.57455
## 226                   0 spring       L 27.93615 -81.57455
## 227                   0 spring       L 27.93615 -81.57455
## 228                   0 spring       L 27.93615 -81.57455
## 229                   0 spring       S 27.93615 -81.57455
## 230                   0 spring       L 27.93615 -81.57455
## 231                   0 spring       L 27.93615 -81.57455
## 232                   0 spring       L 27.93615 -81.57455
## 233                   0 spring       L 27.93615 -81.57455
## 234                   0 spring       L 27.93615 -81.57455
## 235                   0 spring       L 27.93615 -81.57455
## 236                   0 spring       L 27.93615 -81.57455
## 237                   0 spring       L 27.93615 -81.57455
## 238                   0 spring       L 27.93615 -81.57455
## 239                   0 spring       L 27.93615 -81.57455
## 240                   0 spring       L 27.93615 -81.57455
## 241                   0 spring       L 27.93615 -81.57455
## 242                   0 spring       S 27.93615 -81.57455
## 243                   0 spring       L 27.93615 -81.57455
## 244                   0 spring       L 27.93615 -81.57455
## 245                   0 spring       L 27.93615 -81.57455
## 246                   0 spring       L 27.93615 -81.57455
## 247                   0 spring       L 27.93615 -81.57455
## 248                   0 spring       L 27.93615 -81.57455
## 249                   0 spring       L 27.93615 -81.57455
## 250                   0 spring       L 27.93615 -81.57455
## 251                   0 spring       L 27.93615 -81.57455
## 252                   0 spring       L 27.93615 -81.57455
## 253                   0 spring       L 27.93615 -81.57455
## 254                   0 spring       L 27.93615 -81.57455
## 255                   0 spring       L 27.93615 -81.57455
## 256                   0 spring       L 27.93615 -81.57455
## 257                   0 spring       L 27.93615 -81.57455
## 258                   0 spring       S 27.93615 -81.57455
## 259                   0 spring       L 27.93615 -81.57455
## 260                   0 spring       L 27.93615 -81.57455
## 261                   0 spring       S 28.79622 -81.87803
## 262                   0 spring       S 28.79622 -81.87803
## 263                   0 spring       L 28.79622 -81.87803
## 264                   0 spring       S 28.79622 -81.87803
## 265                   0 spring       L 28.79622 -81.87803
## 266                   0 spring       S 28.79622 -81.87803
## 267                   0 spring       L 28.79622 -81.87803
## 268                   0 spring       L 28.79622 -81.87803
## 269                   0 spring       L 28.79622 -81.87803
## 270                   0 spring       L 28.79622 -81.87803
## 271                   0 spring       L 28.79622 -81.87803
## 272                   0 spring       L 28.79622 -81.87803
## 273                   0 spring       L 28.79622 -81.87803
## 274                   0 spring       S 28.79622 -81.87803
## 275                   0 spring       L 28.79622 -81.87803
## 276                   0 spring       L 28.79622 -81.87803
## 277                   0 spring       L 28.79622 -81.87803
## 278                   0 spring       L 28.79622 -81.87803
## 279                   0 spring       L 28.79622 -81.87803
## 280                   0 spring       L 28.79622 -81.87803
## 281                   0 spring       S 28.79622 -81.87803
## 282                   0 spring       L 28.79622 -81.87803
## 283                   0 spring       L 28.79622 -81.87803
## 284                   0 spring       S 28.79622 -81.87803
## 285                   0 spring       L 28.79622 -81.87803
## 286                   0 spring       L 24.96984 -80.55743
## 287                   0 spring       S 24.96984 -80.55743
## 288                   0 spring       L 24.96984 -80.55743
## 289                   0 spring       L 24.96984 -80.55743
## 290                   0 spring       L 24.96984 -80.55743
## 291                   0 spring       L 24.96984 -80.55743
## 292                   0 spring       L 24.96984 -80.55743
## 293                   0 spring       S 24.96984 -80.55743
## 294                   0 spring       L 24.96984 -80.55743
## 295                   0 spring       S 24.96984 -80.55743
## 296                   0 spring       S 24.96984 -80.55743
## 297                   0 spring       S 24.96984 -80.55743
## 298                   0 spring       L 24.96984 -80.55743
## 299                   0 spring       S 24.96984 -80.55743
## 300                   0 spring       L 24.96984 -80.55743
## 301                   0 spring       L 24.96984 -80.55743
## 302                   0 spring       L 24.96984 -80.55743
## 303                   0 spring       L 24.96984 -80.55743
## 304                   0 spring       S 24.96984 -80.55743
## 305                   0 spring       L 24.96984 -80.55743
## 306                   0 spring       L 24.96984 -80.55743
## 307                   0 spring       S 24.96984 -80.55743
## 308                   0 spring       S 24.96984 -80.55743
## 309                   0 spring       L 24.96984 -80.55743
## 310                   0 spring       S 24.96984 -80.55743
## 311                   0 spring       S 24.96984 -80.55743
## 312                   0 spring       S 24.96984 -80.55743
## 313                   0 spring       L 24.96984 -80.55743
## 314                   0 spring       L 24.96984 -80.55743
## 315                   0 spring       L 24.96984 -80.55743
## 316                   0 spring       L 24.96984 -80.55743
## 317                   0 spring       S 24.96984 -80.55743
## 318                   0 spring       S 24.96984 -80.55743
## 319                   0 spring       L 24.96984 -80.55743
## 320                   0 spring       S 24.96984 -80.55743
## 321                   0 spring       L 24.96984 -80.55743
## 322                   7 winter       L 26.63387 -81.87980
## 323                   7 winter       L 26.63387 -81.87980
## 324                   7 winter       L 26.63387 -81.87980
## 325                   7 winter       L 26.63387 -81.87980
## 326                   7 winter       L 26.63387 -81.87980
## 327                   7 winter       L 26.63387 -81.87980
## 328                   7 winter       L 26.63387 -81.87980
## 329                   7 winter       L 26.63387 -81.87980
## 330                   7 winter       L 26.63387 -81.87980
## 331                   7 winter       L 26.63387 -81.87980
## 332                   7 winter       L 26.63387 -81.87980
## 333                   7 winter       S 26.63387 -81.87980
## 334                   7 winter       L 26.63387 -81.87980
## 335                   7 winter       L 26.63387 -81.87980
## 336                   7 winter       L 26.63387 -81.87980
## 337                   7 winter       L 26.63387 -81.87980
## 338                   7 winter       L 26.63387 -81.87980
## 339                   7 winter       L 26.63387 -81.87980
## 340                   7 winter       L 26.63387 -81.87980
## 341                   7 winter       L 26.63387 -81.87980
## 342                   7 winter       L 26.63387 -81.87980
## 343                   7 winter       L 26.63387 -81.87980
## 344                   7 winter       L 26.63387 -81.87980
## 345                   7 winter       L 26.63387 -81.87980
## 346                   7 winter       L 26.63387 -81.87980
## 347                   7 winter       L 26.63387 -81.87980
## 348                   7 winter       L 26.63387 -81.87980
## 349                   7 winter       L 26.63387 -81.87980
## 350                   7 winter       L 26.63387 -81.87980
## 351                   7 winter       L 26.63387 -81.87980
## 352                   7 winter       L 26.63387 -81.87980
## 353                   7 winter       L 26.63387 -81.87980
## 354                   7 winter       L 26.63387 -81.87980
## 355                   7 winter       L 26.63387 -81.87980
## 356                   7 winter       L 26.63387 -81.87980
## 357                   7 winter       L 26.63387 -81.87980
## 358                   7 winter       L 26.63387 -81.87980
## 359                   7 winter       L 26.63387 -81.87980
## 360                   7 winter       L 26.63387 -81.87980
## 361                   7 winter       L 26.63387 -81.87980
## 362                   7 winter       L 26.63387 -81.87980
## 363                   7 winter       L 26.63387 -81.87980
## 364                   7 winter       L 26.63387 -81.87980
## 365                   7 winter       L 26.63387 -81.87980
## 366                   7 winter       L 26.63387 -81.87980
## 367                   7 winter       L 26.63387 -81.87980
## 368                   7 winter       L 26.63387 -81.87980
## 369                   7 winter       L 26.63387 -81.87980
## 370                   7 winter       L 26.63387 -81.87980
## 371                   7 winter       L 26.63387 -81.87980
## 372                   7 winter       L 26.63387 -81.87980
## 373                   7 winter       L 26.63387 -81.87980
## 374                   7 winter       L 26.63387 -81.87980
## 375                   7 winter       L 26.63387 -81.87980
## 376                   7 winter       L 26.63387 -81.87980
## 377                   7 winter       L 26.63387 -81.87980
## 378                   7 winter       L 26.63387 -81.87980
## 379                   7 winter       L 26.63387 -81.87980
## 380                   7 winter       L 26.63387 -81.87980
## 381                   7 winter       L 26.63387 -81.87980
## 382                   7 winter       L 26.63387 -81.87980
## 383                   7 winter       L 26.63387 -81.87980
## 384                   7 winter       L 26.63387 -81.87980
## 385                   7 winter       L 26.63387 -81.87980
## 386                   7 winter       L 26.63387 -81.87980
## 387                   7 winter       L 26.63387 -81.87980
## 388                   7 winter       L 26.63387 -81.87980
## 389                   7 winter       L 26.63387 -81.87980
## 390                   7 winter       L 26.63387 -81.87980
## 391                   7 winter       L 26.63387 -81.87980
## 392                   7 winter       L 26.63387 -81.87980
## 393                   7 winter       L 26.63387 -81.87980
## 394                   7 winter       L 26.63387 -81.87980
## 395                   7 winter       L 26.63387 -81.87980
## 396                   7 winter       L 26.63387 -81.87980
## 397                   7 winter       L 29.66374 -82.36091
## 398                   7 winter       L 29.66374 -82.36091
## 399                   7 winter       L 29.66374 -82.36091
## 400                   7 winter       L 29.66374 -82.36091
## 401                   7 winter       L 29.66374 -82.36091
## 402                   7 winter       L 29.66374 -82.36091
## 403                   7 winter       L 29.66374 -82.36091
## 404                   7 winter       L 29.66374 -82.36091
## 405                   7 winter       L 29.66374 -82.36091
## 406                   7 winter       L 29.66374 -82.36091
## 407                   7 winter       L 29.66374 -82.36091
## 408                   7 winter       L 29.66374 -82.36091
## 409                   7 winter       L 29.66374 -82.36091
## 410                   7 winter       L 29.66374 -82.36091
## 411                   7 winter       S 25.57106 -80.45500
## 412                   7 winter       S 25.57106 -80.45500
## 413                   7 winter       L 25.57106 -80.45500
## 414                   7 winter       L 25.57106 -80.45500
## 415                   7 winter       S 25.57106 -80.45500
## 416                   7 winter       S 25.57106 -80.45500
## 417                   7 winter       L 25.57106 -80.45500
## 418                   7 winter       L 25.57106 -80.45500
## 419                   7 winter       S 25.57106 -80.45500
## 420                   7 winter       L 25.57106 -80.45500
## 421                   7 winter       S 25.57106 -80.45500
## 422                   7 winter       L 25.57106 -80.45500
## 423                   7 winter       S 25.57106 -80.45500
## 424                   7 winter       S 25.57106 -80.45500
## 425                   7 winter       L 25.57106 -80.45500
## 426                   7 winter       L 25.57106 -80.45500
## 427                   7 winter       S 25.57106 -80.45500
## 428                   7 winter       S 25.57106 -80.45500
## 429                   7 winter       S 25.57106 -80.45500
## 430                   7 winter       L 25.57106 -80.45500
## 431                   7 winter       L 25.57106 -80.45500
## 432                   7 winter       L 25.57106 -80.45500
## 433                   7 winter       L 25.57106 -80.45500
## 434                   7 winter       L 25.49131 -80.48578
## 435                   7 winter       S 25.49131 -80.48578
## 436                   7 winter       L 25.49131 -80.48578
## 437                   7 winter       S 25.49131 -80.48578
## 438                   7 winter       S 25.49131 -80.48578
## 439                   7 winter       L 25.49131 -80.48578
## 440                   7 winter       L 25.49131 -80.48578
## 441                   7 winter       L 25.49131 -80.48578
## 442                   7 winter       L 25.49131 -80.48578
## 443                   7 winter       L 25.49131 -80.48578
## 444                   7 winter       S 25.49131 -80.48578
## 445                   7 winter       L 25.49131 -80.48578
## 446                   7 winter       L 25.49131 -80.48578
## 447                   7 winter       L 25.49131 -80.48578
## 448                   7 winter       S 25.49131 -80.48578
## 449                   7 winter       S 25.49131 -80.48578
## 450                   7 winter       L 25.49131 -80.48578
## 451                   7 winter       S 25.49131 -80.48578
## 452                   7 winter       S 25.49131 -80.48578
## 453                   7 winter       L 25.49131 -80.48578
## 454                   7 winter       L 25.49131 -80.48578
## 455                   7 winter       S 25.49131 -80.48578
## 456                   7 winter       L 25.49131 -80.48578
## 457                   7 winter       L 25.49131 -80.48578
## 458                   7 winter       S 25.49131 -80.48578
## 459                   7 winter       L 25.49131 -80.48578
## 460                   7 winter       L 25.49131 -80.48578
## 461                   7 winter       L 25.49131 -80.48578
## 462                   7 winter       L 25.49131 -80.48578
## 463                   7 winter       L 25.12308 -80.41528
## 464                   7 winter       L 25.12308 -80.41528
## 465                   7 winter       S 25.12308 -80.41528
## 466                   7 winter       L 25.12308 -80.41528
## 467                   7 winter       L 25.12308 -80.41528
## 468                   7 winter       L 25.12308 -80.41528
## 469                   7 winter       L 25.12308 -80.41528
## 470                   7 winter       S 25.12308 -80.41528
## 471                   7 winter       L 25.12308 -80.41528
## 472                   7 winter       S 25.12308 -80.41528
## 473                   7 winter       L 25.12308 -80.41528
## 474                   7 winter       L 25.12308 -80.41528
## 475                   7 winter       L 25.12308 -80.41528
## 476                   7 winter       L 25.12308 -80.41528
## 477                   7 winter       L 25.12308 -80.41528
## 478                   7 winter       S 25.12308 -80.41528
## 479                   7 winter       S 25.12308 -80.41528
## 480                   7 winter       L 25.12308 -80.41528
## 481                   7 winter       L 25.12308 -80.41528
## 482                   7 winter       L 25.12308 -80.41528
## 483                   7 winter       L 25.12308 -80.41528
## 484                   7 winter       L 25.12308 -80.41528
## 485                   7 winter       L 25.12308 -80.41528
## 486                   7 winter       L 25.12308 -80.41528
## 487                   7 winter       L 25.12308 -80.41528
## 488                   7 winter       L 25.12308 -80.41528
## 489                   7 winter       L 25.12308 -80.41528
## 490                   7 winter       L 25.12308 -80.41528
## 491                   7 winter       L 25.12308 -80.41528
## 492                   7 winter       L 25.12308 -80.41528
## 493                   7 winter       S 25.12308 -80.41528
## 494                   7 winter       L 25.12308 -80.41528
## 495                   7 winter       L 27.90335 -81.58946
## 496                   7 winter       L 27.90335 -81.58946
## 497                   7 winter       L 27.90335 -81.58946
## 498                   7 winter       L 27.90335 -81.58946
## 499                   7 winter       L 27.90335 -81.58946
## 500                   7 winter       L 27.90335 -81.58946
## 501                   7 winter       L 27.90335 -81.58946
## 502                   7 winter       L 27.90335 -81.58946
## 503                   7 winter       L 27.90335 -81.58946
## 504                   7 winter       L 27.90335 -81.58946
## 505                   7 winter       L 27.90335 -81.58946
## 506                   7 winter       L 27.90335 -81.58946
## 507                   7 winter       L 27.90335 -81.58946
## 508                   7 winter       L 27.90335 -81.58946
## 509                   7 winter       L 27.90335 -81.58946
## 510                   7 winter       L 27.90335 -81.58946
## 511                   7 winter       L 27.90335 -81.58946
## 512                   7 winter       L 27.90335 -81.58946
## 513                   7 winter       L 27.90335 -81.58946
## 514                   7 winter       L 27.90335 -81.58946
## 515                   7 winter       L 27.90335 -81.58946
## 516                   7 winter       L 27.90335 -81.58946
## 517                   7 winter       L 27.90335 -81.58946
## 518                   7 winter       L 27.90335 -81.58946
## 519                   7 winter       L 27.90335 -81.58946
## 520                   7 winter       L 27.90335 -81.58946
## 521                   7 winter       L 27.90335 -81.58946
## 522                   7 winter       L 27.90335 -81.58946
## 523                   7 winter       L 27.90335 -81.58946
## 524                   7 winter       L 27.90335 -81.58946
## 525                   7 winter       L 27.90335 -81.58946
## 526                   7 winter       L 27.90335 -81.58946
## 527                   7 winter       L 27.90335 -81.58946
## 528                   7 winter       L 27.90335 -81.58946
## 529                   7 winter       L 27.90335 -81.58946
## 530                   7 winter       L 27.90335 -81.58946
## 531                   7 winter       L 27.90335 -81.58946
## 532                   7 winter       L 27.90335 -81.58946
## 533                   7 winter       L 27.90335 -81.58946
## 534                   7 winter       L 27.90335 -81.58946
## 535                   7 winter       L 27.90335 -81.58946
## 536                   7 winter       L 27.90335 -81.58946
## 537                   7 winter       L 27.90335 -81.58946
## 538                   7 winter       L 27.90335 -81.58946
## 539                   7 winter       L 27.90335 -81.58946
## 540                   7 winter       L 27.90335 -81.58946
## 541                   7 winter       L 27.90335 -81.58946
## 542                   7 winter       L 27.90335 -81.58946
## 543                   7 winter       L 27.90335 -81.58946
## 544                   7 winter       L 27.90335 -81.58946
## 545                   7 winter       L 27.90335 -81.58946
## 546                   7 winter       L 27.90335 -81.58946
## 547                   7 winter       L 27.90335 -81.58946
## 548                   7 winter       L 27.90335 -81.58946
## 549                   7 winter       L 27.90335 -81.58946
## 550                   7 winter       L 27.90335 -81.58946
## 551                   7 winter       L 27.90335 -81.58946
## 552                   7 winter       L 27.90335 -81.58946
## 553                   7 winter       L 27.90335 -81.58946
## 554                   7 winter       L 27.90335 -81.58946
## 555                   7 winter       L 27.90335 -81.58946
## 556                   7 winter       L 27.90335 -81.58946
## 557                   7 winter       L 27.90335 -81.58946
## 558                   7 winter       L 27.90335 -81.58946
## 559                   7 winter       L 27.90335 -81.58946
## 560                   7 winter       L 27.90335 -81.58946
## 561                   7 winter       L 27.90335 -81.58946
## 562                   7 winter       L 27.90335 -81.58946
## 563                   7 winter       L 27.90335 -81.58946
## 564                   7 winter       L 27.90335 -81.58946
## 565                   7 winter       L 27.90335 -81.58946
## 566                   7 winter       L 27.90335 -81.58946
## 567                   7 winter       L 27.90335 -81.58946
## 568                   7 winter       L 27.90335 -81.58946
## 569                   7 winter       L 27.90335 -81.58946
## 570                   7 winter       L 27.90335 -81.58946
## 571                   7 winter       L 27.90335 -81.58946
## 572                   7 winter       L 27.90335 -81.58946
## 573                   7 winter       L 27.90335 -81.58946
## 574                   7 winter       L 27.90335 -81.58946
## 575                   7 winter       L 27.90335 -81.58946
## 576                   7 winter       L 27.90335 -81.58946
## 577                   7 winter       L 27.90335 -81.58946
## 578                   7 winter       L 27.90335 -81.58946
## 579                   7 winter       L 28.79602 -81.87777
## 580                   7 winter       L 28.79602 -81.87777
## 581                   7 winter       L 28.79602 -81.87777
## 582                   7 winter       L 28.79602 -81.87777
## 583                   7 winter       L 28.79602 -81.87777
## 584                   7 winter       L 28.79602 -81.87777
## 585                   7 winter       L 28.79602 -81.87777
## 586                   7 winter       L 28.79602 -81.87777
## 587                   7 winter       L 28.79602 -81.87777
## 588                   7 winter       L 28.79602 -81.87777
## 589                   7 winter       L 28.79602 -81.87777
## 590                   7 winter       L 28.79602 -81.87777
## 591                   7 winter       L 28.79602 -81.87777
## 592                   7 winter       L 28.79602 -81.87777
## 593                   7 winter       L 28.79602 -81.87777
## 594                   7 winter       L 28.79602 -81.87777
## 595                   7 winter       L 28.79602 -81.87777
## 596                   7 winter       L 28.79602 -81.87777
## 597                   7 winter       L 28.79602 -81.87777
## 598                   7 winter       L 28.79602 -81.87777
## 599                   7 winter       L 28.79602 -81.87777
## 600                   7 winter       L 28.79602 -81.87777
## 601                   7 winter       L 28.79602 -81.87777
## 602                   7 winter       L 28.79602 -81.87777
## 603                   7 winter       L 28.79602 -81.87777
## 604                   7 winter       L 28.79602 -81.87777
## 605                   7 winter       L 28.79602 -81.87777
## 606                   7 winter       L 28.79602 -81.87777
## 607                   7 winter       L 28.79602 -81.87777
## 608                   7 winter       L 28.79602 -81.87777
## 609                   7 winter       L 28.79602 -81.87777
## 610                   7 winter       L 28.79602 -81.87777
## 611                   7 winter       L 28.79602 -81.87777
## 612                   7 winter       L 28.79602 -81.87777
## 613                   7 winter       L 28.79602 -81.87777
## 614                   7 winter       L 28.79602 -81.87777
## 615                   7 winter       L 28.79602 -81.87777
## 616                   7 winter       L 28.79602 -81.87777
## 617                   7 winter       L 28.79602 -81.87777
## 618                   7 winter       L 28.79602 -81.87777
## 619                   7 winter       L 28.79602 -81.87777
## 620                   7 winter       L 28.79602 -81.87777
## 621                   7 winter       L 28.79602 -81.87777
## 622                   7 winter       L 28.79602 -81.87777
## 623                   7 winter       L 28.79602 -81.87777
## 624                   7 winter       L 28.79602 -81.87777
## 625                   7 winter       L 28.79602 -81.87777
## 626                   7 winter       L 28.79602 -81.87777
## 627                   7 winter       S 28.79602 -81.87777
## 628                   7 winter       L 28.79602 -81.87777
## 629                   7 winter       L 28.79602 -81.87777
## 630                   7 winter       L 28.79602 -81.87777
## 631                   7 winter       L 28.79602 -81.87777
## 632                   7 winter       L 28.79602 -81.87777
## 633                   7 winter       L 28.79602 -81.87777
## 634                   7 winter       L 28.79602 -81.87777
## 635                   7 winter       L 28.79602 -81.87777
## 636                   7 winter       L 28.79602 -81.87777
## 637                   7 winter       L 28.79602 -81.87777
## 638                   7 winter       L 28.79602 -81.87777
## 639                   7 winter       L 28.79602 -81.87777
## 640                   7 winter       L 28.79602 -81.87777
## 641                   7 winter       L 28.79602 -81.87777
## 642                   7 winter       L 28.79602 -81.87777
## 643                   7 winter       L 28.79602 -81.87777
## 644                   7 winter       L 28.79602 -81.87777
## 645                   7 winter       L 28.79602 -81.87777
## 646                   7 winter       L 28.79602 -81.87777
## 647                   7 winter       L 28.79602 -81.87777
## 648                   7 winter       L 28.79602 -81.87777
## 649                   7 winter       L 28.79602 -81.87777
## 650                   7 winter       L 28.79602 -81.87777
## 651                   7 winter       L 28.79602 -81.87777
## 652                   7 winter       L 28.79602 -81.87777
## 653                   7 winter       L 28.79602 -81.87777
## 654                   7 winter       L 28.79602 -81.87777
## 655                   7 winter       L 28.79602 -81.87777
## 656                   7 winter       L 28.79602 -81.87777
## 657                   7 winter       L 28.79602 -81.87777
## 658                   7 winter       L 28.79602 -81.87777
## 659                   7 winter       L 28.79602 -81.87777
## 660                   7 winter       L 28.79602 -81.87777
## 661                   7 winter       L 28.79602 -81.87777
## 662                   7 winter       L 28.79602 -81.87777
## 663                   7 winter       L 28.79602 -81.87777
## 664                   7 winter       L 28.79602 -81.87777
## 665                   7 winter       S 28.79602 -81.87777
## 666                   7 winter       L 28.79602 -81.87777
## 667                   7 winter       L 28.79602 -81.87777
## 668                   7 winter       L 28.79602 -81.87777
## 669                   7 winter       L 28.79602 -81.87777
## 670                   7 winter       L 24.96448 -80.56739
## 671                   7 winter       L 24.96448 -80.56739
## 672                   7 winter       L 24.96448 -80.56739
## 673                   7 winter       L 24.96448 -80.56739
## 674                   7 winter       L 24.96448 -80.56739
## 675                   7 winter       L 24.96448 -80.56739
## 676                   7 winter       L 24.96448 -80.56739
## 677                   7 winter       L 24.96448 -80.56739
## 678                   7 winter       L 24.96448 -80.56739
## 679                   7 winter       S 24.96448 -80.56739
## 680                   7 winter       L 24.96448 -80.56739
## 681                   7 winter       L 24.96448 -80.56739
## 682                   7 winter       L 24.96448 -80.56739
## 683                   7 winter       L 24.96448 -80.56739
## 684                   7 winter       L 24.96448 -80.56739
## 685                   7 winter       L 24.96448 -80.56739
## 686                   7 winter       L 24.96448 -80.56739
## 687                   7 winter       L 24.96448 -80.56739
## 688                   7 winter       L 24.96448 -80.56739
## 689                   7 winter       L 24.96448 -80.56739
## 690                   7 winter       L 24.96448 -80.56739
## 691                   7 winter       L 24.96448 -80.56739
## 692                   7 winter       L 24.96448 -80.56739
## 693                   7 winter       L 24.96448 -80.56739
## 694                   7 winter       L 24.96448 -80.56739
## 695                   7 winter       L 24.96448 -80.56739
## 696                   7 winter       S 24.96448 -80.56739
## 697                   7 winter       L 24.96448 -80.56739
## 698                   7 winter       L 24.96448 -80.56739
## 699                   7 winter       L 24.96448 -80.56739
## 700                   7 winter       L 24.96448 -80.56739
## 701                   7 winter       S 24.96448 -80.56739
## 702                   7 winter       L 24.96448 -80.56739
## 703                   7 winter       S 24.96448 -80.56739
## 704                   7 winter       L 24.96448 -80.56739
## 705                  11 spring       L 29.66374 -82.36091
## 706                  11 spring       L 29.66374 -82.36091
## 707                  11 spring       L 29.66374 -82.36091
## 708                  11 spring       L 29.66374 -82.36091
## 709                  11 spring       L 29.66374 -82.36091
## 710                  11 spring       L 29.66374 -82.36091
## 711                  11 spring       L 29.66374 -82.36091
## 712                  11 spring       L 29.66374 -82.36091
## 713                  11 spring       L 29.66374 -82.36091
## 714                  11 spring       L 29.66374 -82.36091
## 715                  11 spring       L 29.66374 -82.36091
## 716                  11 spring       L 29.66374 -82.36091
## 717                  11 spring       L 29.66374 -82.36091
## 718                  11 spring       L 29.66374 -82.36091
## 719                  11 spring       L 29.66374 -82.36091
## 720                  11 spring       L 29.66374 -82.36091
## 721                  11 spring       L 29.66374 -82.36091
## 722                  11 spring       L 29.66374 -82.36091
## 723                  11 spring       L 29.66374 -82.36091
## 724                  11 spring       L 29.66374 -82.36091
## 725                  11 spring       L 29.66374 -82.36091
## 726                  11 spring       S 29.66374 -82.36091
## 727                  11 spring       L 29.66374 -82.36091
## 728                  11 spring       L 29.66374 -82.36091
## 729                  11 spring       L 29.66374 -82.36091
## 730                  11 spring       L 29.66374 -82.36091
## 731                  11 spring       L 29.66374 -82.36091
## 732                  11 spring       S 29.66374 -82.36091
## 733                  11 spring       L 29.66374 -82.36091
## 734                  11 spring       L 29.66374 -82.36091
## 735                  11 spring       L 29.66374 -82.36091
## 736                  11 spring       L 29.66374 -82.36091
## 737                  11 spring       L 29.66374 -82.36091
## 738                  11 spring       L 29.66374 -82.36091
## 739                  11 spring       L 29.66374 -82.36091
## 740                  11 spring       L 29.66374 -82.36091
## 741                  11 spring       L 29.66374 -82.36091
## 742                  11 spring       L 29.66374 -82.36091
## 743                  11 spring       L 29.66374 -82.36091
## 744                  11 spring       L 29.66374 -82.36091
## 745                  11 spring       L 29.66374 -82.36091
## 746                  11 spring       L 29.66374 -82.36091
## 747                  11 spring       L 29.66374 -82.36091
## 748                  11 spring       L 29.66374 -82.36091
## 749                  11 spring       L 29.66374 -82.36091
## 750                  11 spring       L 29.66374 -82.36091
## 751                  11 spring       L 29.66374 -82.36091
## 752                  11 spring       L 29.66374 -82.36091
## 753                  11 spring       L 25.57106 -80.45500
## 754                  11 spring       L 25.57106 -80.45500
## 755                  11 spring       L 25.57106 -80.45500
## 756                  11 spring       L 25.57106 -80.45500
## 757                  11 spring       L 25.57106 -80.45500
## 758                  11 spring       S 25.57106 -80.45500
## 759                  11 spring       S 25.57106 -80.45500
## 760                  11 spring       S 25.57106 -80.45500
## 761                  11 spring       S 25.57106 -80.45500
## 762                  11 spring       S 25.57106 -80.45500
## 763                  11 spring       S 25.57106 -80.45500
## 764                  11 spring       S 25.57106 -80.45500
## 765                  11 spring       L 25.57106 -80.45500
## 766                  11 spring       L 25.57106 -80.45500
## 767                  11 spring       L 25.57106 -80.45500
## 768                  11 spring       L 25.57106 -80.45500
## 769                  11 spring       S 25.57106 -80.45500
## 770                  11 spring       S 25.12308 -80.41528
## 771                  11 spring       S 25.12308 -80.41528
## 772                  11 spring       S 25.12308 -80.41528
## 773                  11 spring       L 25.12308 -80.41528
## 774                  11 spring       S 25.12308 -80.41528
## 775                  11 spring       S 25.12308 -80.41528
## 776                  11 spring       L 25.12308 -80.41528
## 777                  11 spring       S 25.12308 -80.41528
## 778                  11 spring       L 25.12308 -80.41528
## 779                  11 spring       S 25.12308 -80.41528
## 780                  11 spring       S 25.12308 -80.41528
## 781                  11 spring       L 25.12308 -80.41528
## 782                  11 spring       S 25.12308 -80.41528
## 783                  11 spring       L 25.12308 -80.41528
## 784                  11 spring       L 25.12308 -80.41528
## 785                  11 spring       S 25.12308 -80.41528
## 786                  11 spring       S 25.12308 -80.41528
## 787                  11 spring       S 25.12308 -80.41528
## 788                  11 spring       L 25.12308 -80.41528
## 789                  11 spring       L 25.12308 -80.41528
## 790                  11 spring       S 25.12308 -80.41528
## 791                  11 spring       L 25.12308 -80.41528
## 792                  11 spring       L 25.12308 -80.41528
## 793                  11 spring       S 25.12308 -80.41528
## 794                  11 spring       S 25.12308 -80.41528
## 795                  11 spring       S 25.12308 -80.41528
## 796                  11 spring       L 25.12308 -80.41528
## 797                  11 spring       S 25.12308 -80.41528
## 798                  11 spring       L 25.12308 -80.41528
## 799                  11 spring       S 25.12308 -80.41528
## 800                  11 spring       S 25.12308 -80.41528
## 801                  11 spring       L 25.12308 -80.41528
## 802                  11 spring       S 25.12308 -80.41528
## 803                  11 spring       L 25.12308 -80.41528
## 804                  11 spring       L 25.12308 -80.41528
## 805                  11 spring       L 25.12308 -80.41528
## 806                  11 spring       S 25.12308 -80.41528
## 807                  11 spring       S 25.12308 -80.41528
## 808                  11 spring       L 25.12308 -80.41528
## 809                  11 spring       L 25.12308 -80.41528
## 810                  11 spring       S 27.90335 -81.58946
## 811                  11 spring       L 27.90335 -81.58946
## 812                  11 spring       L 27.90335 -81.58946
## 813                  11 spring       L 27.90335 -81.58946
## 814                  11 spring       L 27.90335 -81.58946
## 815                  11 spring       L 27.90335 -81.58946
## 816                  11 spring       L 27.90335 -81.58946
## 817                  11 spring       L 27.90335 -81.58946
## 818                  11 spring       L 27.90335 -81.58946
## 819                  11 spring       L 27.90335 -81.58946
## 820                  11 spring       L 27.90335 -81.58946
## 821                  11 spring       L 27.90335 -81.58946
## 822                  11 spring       L 27.90335 -81.58946
## 823                  11 spring       L 27.90335 -81.58946
## 824                  11 spring       L 27.90335 -81.58946
## 825                  11 spring       L 27.90335 -81.58946
## 826                  11 spring       L 27.90335 -81.58946
## 827                  11 spring       S 27.90335 -81.58946
## 828                  11 spring       L 27.90335 -81.58946
## 829                  11 spring       L 27.90335 -81.58946
## 830                  11 spring       L 27.90335 -81.58946
## 831                  11 spring       L 27.90335 -81.58946
## 832                  11 spring       S 27.90335 -81.58946
## 833                  11 spring       L 27.90335 -81.58946
## 834                  11 spring       L 27.90335 -81.58946
## 835                  11 spring       L 27.90335 -81.58946
## 836                  11 spring       L 27.90335 -81.58946
## 837                  11 spring       L 27.90335 -81.58946
## 838                  11 spring       L 27.90335 -81.58946
## 839                  11 spring       S 27.90335 -81.58946
## 840                  11 spring       L 27.90335 -81.58946
## 841                  11 spring       L 27.90335 -81.58946
## 842                  11 spring       L 27.90335 -81.58946
## 843                  11 spring       L 27.90335 -81.58946
## 844                  11 spring       L 27.90335 -81.58946
## 845                  11 spring       L 27.90335 -81.58946
## 846                  11 spring       L 27.90335 -81.58946
## 847                  11 spring       L 27.90335 -81.58946
## 848                  11 spring       S 27.90335 -81.58946
## 849                  11 spring       L 27.90335 -81.58946
## 850                  11 spring       L 27.90335 -81.58946
## 851                  11 spring       L 27.90335 -81.58946
## 852                  11 spring       L 27.90335 -81.58946
## 853                  11 spring       L 27.90335 -81.58946
## 854                  11 spring       L 28.79602 -81.87777
## 855                  11 spring       L 28.79602 -81.87777
## 856                  11 spring       L 28.79602 -81.87777
## 857                  11 spring       L 28.79602 -81.87777
## 858                  11 spring       L 28.79602 -81.87777
## 859                  11 spring       L 28.79602 -81.87777
## 860                  11 spring       L 28.79602 -81.87777
## 861                  11 spring       L 28.79602 -81.87777
## 862                  11 spring       L 28.79602 -81.87777
## 863                  11 spring       L 28.79602 -81.87777
## 864                  11 spring       L 28.79602 -81.87777
## 865                  11 spring       L 28.79602 -81.87777
## 866                  11 spring       L 28.79602 -81.87777
## 867                  11 spring       L 28.79602 -81.87777
## 868                  11 spring       L 24.96448 -80.56739
## 869                  11 spring       S 24.96448 -80.56739
## 870                  11 spring       L 24.96448 -80.56739
## 871                  11 spring       S 24.96448 -80.56739
## 872                  11 spring       S 24.96448 -80.56739
## 873                  11 spring       S 24.96448 -80.56739
## 874                  11 spring       L 24.96448 -80.56739
## 875                  11 spring       L 24.96448 -80.56739
## 876                  11 spring       S 24.96448 -80.56739
## 877                  11 spring       S 24.96448 -80.56739
## 878                  11 spring       L 24.96448 -80.56739
## 879                  11 spring       S 24.96448 -80.56739
## 880                  11 spring       L 24.96448 -80.56739
## 881                  11 spring       L 24.96448 -80.56739
## 882                  11 spring       S 24.96448 -80.56739
## 883                  11 spring       L 24.96448 -80.56739
## 884                  11 spring       L 24.96448 -80.56739
## 885                  11 spring       S 24.96448 -80.56739
## 886                  11 spring       L 24.96448 -80.56739
## 887                  11 spring       L 24.96448 -80.56739
## 888                  11 spring       S 24.96448 -80.56739
## 889                  11 spring       L 24.96448 -80.56739
## 890                  11 spring       L 24.96448 -80.56739
## 891                  11 spring       L 24.96448 -80.56739
## 892                  11 spring       L 24.96448 -80.56739
## 893                  11 spring       S 24.96448 -80.56739
## 894                  11 spring       L 24.96448 -80.56739
## 895                  11 spring       S 24.96448 -80.56739
## 896                  11 spring       L 24.96448 -80.56739
## 897                  11 spring       L 24.96448 -80.56739
## 898                  11 spring       S 24.96448 -80.56739
## 899                  11 spring       S 24.96448 -80.56739
## 900                  11 spring       S 24.96448 -80.56739
## 901                  11 spring       S 24.96448 -80.56739
## 902                  11 spring       S 24.96448 -80.56739
## 903                  11 spring       L 24.96448 -80.56739
## 904                  11 spring       L 24.96448 -80.56739
## 905                  11 spring       S 24.96448 -80.56739
## 906                  11 spring       L 24.96448 -80.56739
## 907                  11 spring       L 24.96448 -80.56739
## 908                  11 spring       L 24.96448 -80.56739
## 909                  11 spring       S 24.96448 -80.56739
## 910                  11 spring       L 24.96448 -80.56739
## 911                  11 spring       L 24.96448 -80.56739
## 912                  23 spring       S 25.12308 -80.41528
## 913                  23 spring       S 25.12308 -80.41528
## 914                  23 spring       S 25.12308 -80.41528
## 915                  23 spring       L 25.12308 -80.41528
## 916                  23 spring       S 25.12308 -80.41528
## 917                  23 spring       S 25.12308 -80.41528
## 918                  23 spring       L 25.12308 -80.41528
## 919                  23 spring       S 25.12308 -80.41528
## 920                  23 spring       S 25.12308 -80.41528
## 921                  23 spring       S 25.12308 -80.41528
## 922                  23 spring       S 25.12308 -80.41528
## 923                  23 spring       S 25.12308 -80.41528
## 924                  23 spring       S 25.12308 -80.41528
## 925                  23 spring       S 25.12308 -80.41528
## 926                  23 spring       L 25.12308 -80.41528
## 927                  23 spring       S 25.12308 -80.41528
## 928                  23 spring       S 25.12308 -80.41528
## 929                  23 spring       S 25.12308 -80.41528
## 930                  23 spring       L 25.12308 -80.41528
## 931                  23 spring       S 25.12308 -80.41528
## 932                  23 spring       S 25.12308 -80.41528
## 933                  23 spring       L 25.12308 -80.41528
## 934                  23 spring       S 25.12308 -80.41528
## 935                  23 spring       L 25.12308 -80.41528
## 936                  23 spring       L 25.12308 -80.41528
## 937                  23 spring       L 25.12308 -80.41528
## 938                  23 spring       S 25.12308 -80.41528
## 939                  23 spring       S 25.12308 -80.41528
## 940                  23 spring       S 25.12308 -80.41528
## 941                  23 spring       L 25.12308 -80.41528
## 942                  23 spring       S 25.12308 -80.41528
## 943                  23 spring       S 25.12308 -80.41528
## 944                  23 spring       S 25.12308 -80.41528
## 945                  23 spring       S 25.12308 -80.41528
## 946                  23 spring       S 25.12308 -80.41528
## 947                  23 spring       S 25.12308 -80.41528
## 948                  23 spring       S 25.12308 -80.41528
## 949                  23 spring       S 25.12308 -80.41528
## 950                  23 spring       S 25.12308 -80.41528
## 951                  23 spring       S 25.12308 -80.41528
## 952                  23 spring       L 25.12308 -80.41528
## 953                  23 spring       S 25.12308 -80.41528
## 954                  23 spring       S 25.12308 -80.41528
## 955                  23 spring       S 25.12308 -80.41528
## 956                  23 spring       S 25.12308 -80.41528
## 957                  23 spring       L 25.12308 -80.41528
## 958                  23 spring       S 25.12308 -80.41528
## 959                  23 spring       S 25.12308 -80.41528
## 960                  23 spring       S 25.12308 -80.41528
## 961                  23 spring       S 25.12308 -80.41528
## 962                  23 spring       S 25.12308 -80.41528
## 963                  23 spring       L 27.90335 -81.58946
## 964                  23 spring       L 27.90335 -81.58946
## 965                  23 spring       L 27.90335 -81.58946
## 966                  23 spring       L 27.90335 -81.58946
## 967                  23 spring       L 27.90335 -81.58946
## 968                  23 spring       L 27.90335 -81.58946
## 969                  23 spring       L 27.90335 -81.58946
## 970                  23 spring       L 27.90335 -81.58946
## 971                  23 spring       L 27.90335 -81.58946
## 972                  23 spring       L 27.90335 -81.58946
## 973                  23 spring       L 27.90335 -81.58946
## 974                  23 spring       L 27.90335 -81.58946
## 975                  23 spring       L 27.90335 -81.58946
## 976                  23 spring       L 27.90335 -81.58946
## 977                  23 spring       L 27.90335 -81.58946
## 978                  23 spring       L 27.90335 -81.58946
## 979                  23 spring       L 27.90335 -81.58946
## 980                  23 spring       L 27.90335 -81.58946
## 981                  23 spring       L 27.90335 -81.58946
## 982                  23 spring       L 27.90335 -81.58946
## 983                  23 spring       L 27.90335 -81.58946
## 984                  23 spring       L 27.90335 -81.58946
## 985                  23 spring       L 27.90335 -81.58946
## 986                  23 spring       L 27.90335 -81.58946
## 987                  23 spring       L 27.90335 -81.58946
## 988                  23 spring       L 27.90335 -81.58946
## 989                  23 spring       L 27.90335 -81.58946
## 990                  23 spring       L 27.90335 -81.58946
## 991                  23 spring       L 27.90335 -81.58946
## 992                  23 spring       L 27.90335 -81.58946
## 993                  23 spring       L 27.90335 -81.58946
## 994                  23 spring       L 27.90335 -81.58946
## 995                  23 spring       L 27.90335 -81.58946
## 996                  23 spring       L 27.90335 -81.58946
## 997                  23 spring       L 27.90335 -81.58946
## 998                  23 spring       L 27.90335 -81.58946
## 999                  23 spring       L 27.90335 -81.58946
## 1000                 23 spring       L 27.90335 -81.58946
## 1001                 23 spring       L 27.90335 -81.58946
## 1002                 23 spring       L 27.90335 -81.58946
## 1003                 23 spring       L 27.90335 -81.58946
## 1004                 23 spring       L 27.90335 -81.58946
## 1005                 23 spring       L 27.90335 -81.58946
## 1006                 23 spring       L 27.90335 -81.58946
## 1007                 23 spring       L 27.90335 -81.58946
## 1008                 23 spring       L 27.90335 -81.58946
## 1009                 23 spring       L 27.90335 -81.58946
## 1010                 23 spring       L 27.90335 -81.58946
## 1011                 23 spring       L 27.90335 -81.58946
## 1012                 23 spring       L 27.90335 -81.58946
## 1013                 23 spring       L 27.90335 -81.58946
## 1014                 23 spring       L 27.90335 -81.58946
## 1015                 23 spring       L 27.90335 -81.58946
## 1016                 23 spring       L 28.79602 -81.87777
## 1017                 23 spring       L 28.79602 -81.87777
## 1018                 23 spring       L 28.79602 -81.87777
## 1019                 23 spring       L 28.79602 -81.87777
## 1020                 23 spring       L 28.79602 -81.87777
## 1021                 23 spring       L 28.79602 -81.87777
## 1022                 23 spring       L 28.79602 -81.87777
## 1023                 23 spring       L 28.79602 -81.87777
## 1024                 23 spring       L 28.79602 -81.87777
## 1025                 23 spring       L 28.79602 -81.87777
## 1026                 23 spring       S 28.79602 -81.87777
## 1027                 23 spring       L 28.79602 -81.87777
## 1028                 23 spring       L 28.79602 -81.87777
## 1029                 23 spring       L 28.79602 -81.87777
## 1030                 23 spring       L 28.79602 -81.87777
## 1031                 23 spring       L 28.79602 -81.87777
## 1032                 23 spring       L 28.79602 -81.87777
## 1033                 23 spring       L 28.79602 -81.87777
## 1034                 23 spring       L 28.79602 -81.87777
## 1035                 23 spring       L 28.79602 -81.87777
## 1036                 23 spring       L 28.79602 -81.87777
## 1037                 23 spring       L 28.79602 -81.87777
## 1038                 23 spring       L 28.79602 -81.87777
## 1039                 23 spring       L 28.79602 -81.87777
## 1040                 23 spring       L 28.79602 -81.87777
## 1041                 23 spring       S 28.79602 -81.87777
## 1042                 23 spring       L 28.79602 -81.87777
## 1043                 23 spring       L 28.79602 -81.87777
## 1044                 23 spring       L 28.79602 -81.87777
## 1045                 23 spring       L 28.79602 -81.87777
## 1046                 23 spring       L 28.79602 -81.87777
## 1047                 23 spring       L 28.79602 -81.87777
## 1048                 23 spring       S 28.79602 -81.87777
## 1049                 23 spring       L 28.79602 -81.87777
## 1050                 23 spring       L 28.79602 -81.87777
## 1051                 23 spring       L 28.79602 -81.87777
## 1052                 23 spring       S 24.96448 -80.56739
## 1053                 23 spring       L 24.96448 -80.56739
## 1054                 23 spring       S 24.96448 -80.56739
## 1055                 23 spring       S 24.96448 -80.56739
## 1056                 23 spring       L 24.96448 -80.56739
## 1057                 23 spring       L 24.96448 -80.56739
## 1058                 23 spring       L 24.96448 -80.56739
## 1059                 23 spring       S 24.96448 -80.56739
## 1060                 23 spring       L 24.96448 -80.56739
## 1061                 23 spring       L 24.96448 -80.56739
## 1062                 23 spring       S 24.96448 -80.56739
## 1063                 23 spring       L 24.96448 -80.56739
## 1064                 43 winter       L 29.66374 -82.36091
## 1065                 43 winter       L 29.66374 -82.36091
## 1066                 43 winter       L 29.66374 -82.36091
## 1067                 43 winter       L 29.66374 -82.36091
## 1068                 43 winter       L 29.66374 -82.36091
## 1069                 43 winter       L 29.66374 -82.36091
## 1070                 43 winter       L 29.66374 -82.36091
## 1071                 43 winter       L 29.66374 -82.36091
## 1072                 43 winter       L 29.66374 -82.36091
## 1073                 43 winter       L 29.66374 -82.36091
## 1074                 43 winter       L 29.66374 -82.36091
## 1075                 43 winter       L 29.66374 -82.36091
## 1076                 43 winter       L 29.66374 -82.36091
## 1077                 43 winter       L 29.66374 -82.36091
## 1078                 43 winter       L 29.66374 -82.36091
## 1079                 43 winter       L 29.66374 -82.36091
## 1080                 43 winter       L 29.66374 -82.36091
## 1081                 43 winter       L 29.66374 -82.36091
## 1082                 43 winter       L 29.66374 -82.36091
## 1083                 43 winter       L 29.66374 -82.36091
## 1084                 43 winter       L 29.66374 -82.36091
## 1085                 43 winter       L 29.66374 -82.36091
## 1086                 43 winter       L 29.66374 -82.36091
## 1087                 43 winter       L 29.66374 -82.36091
## 1088                 43 winter       L 29.66374 -82.36091
## 1089                 43 winter       L 29.66374 -82.36091
## 1090                 43 winter       L 29.66374 -82.36091
## 1091                 43 winter       L 29.66374 -82.36091
## 1092                 43 winter       L 29.66374 -82.36091
## 1093                 43 winter       L 29.66374 -82.36091
## 1094                 43 winter       L 29.66374 -82.36091
## 1095                 43 winter       L 29.66374 -82.36091
## 1096                 43 winter       L 29.66374 -82.36091
## 1097                 43 winter       L 29.66374 -82.36091
## 1098                 43 winter       S 29.66374 -82.36091
## 1099                 43 winter       L 29.66374 -82.36091
## 1100                 43 winter       L 29.66374 -82.36091
## 1101                 43 winter       L 29.66374 -82.36091
## 1102                 43 winter       L 29.66374 -82.36091
## 1103                 43 winter       L 29.66374 -82.36091
## 1104                 43 winter       L 29.66374 -82.36091
## 1105                 43 winter       L 29.66374 -82.36091
## 1106                 43 winter       L 29.66374 -82.36091
## 1107                 43 winter       S 29.66374 -82.36091
## 1108                 43 winter       L 29.66374 -82.36091
## 1109                 43 winter       L 29.66374 -82.36091
## 1110                 43 winter       S 29.66374 -82.36091
## 1111                 43 winter       L 29.66374 -82.36091
## 1112                 43 winter       L 29.66374 -82.36091
## 1113                 43 winter       L 29.66374 -82.36091
## 1114                 43 winter       S 29.66374 -82.36091
## 1115                 43 winter       L 29.66374 -82.36091
## 1116                 43 winter       L 29.66374 -82.36091
## 1117                 43 winter       L 29.66374 -82.36091
## 1118                 43 winter       L 29.66374 -82.36091
## 1119                 43 winter       L 29.66374 -82.36091
## 1120                 43 winter       L 29.66374 -82.36091
## 1121                 43 winter       L 25.49172 -80.48586
## 1122                 43 winter       S 25.49172 -80.48586
## 1123                 43 winter       S 25.49172 -80.48586
## 1124                 43 winter       L 25.49172 -80.48586
## 1125                 43 winter       L 25.49172 -80.48586
## 1126                 43 winter       S 25.49172 -80.48586
## 1127                 43 winter       L 25.49172 -80.48586
## 1128                 43 winter       L 25.49172 -80.48586
## 1129                 43 winter       S 25.49172 -80.48586
## 1130                 43 winter       L 25.49172 -80.48586
## 1131                 43 winter       L 25.49172 -80.48586
## 1132                 43 winter       L 25.49172 -80.48586
## 1133                 43 winter       L 25.49172 -80.48586
## 1134                 43 winter       L 25.19515 -80.34592
## 1135                 43 winter       L 25.19515 -80.34592
## 1136                 43 winter       L 25.19515 -80.34592
## 1137                 43 winter       S 25.19515 -80.34592
## 1138                 43 winter       L 25.19515 -80.34592
## 1139                 43 winter       S 25.19515 -80.34592
## 1140                 43 winter       L 25.19515 -80.34592
## 1141                 43 winter       L 25.19515 -80.34592
## 1142                 43 winter       L 25.19515 -80.34592
## 1143                 43 winter       L 25.19515 -80.34592
## 1144                 43 winter       L 25.19515 -80.34592
## 1145                 43 winter       S 25.19515 -80.34592
## 1146                 43 winter       S 25.19515 -80.34592
## 1147                 43 winter       L 25.19515 -80.34592
## 1148                 43 winter       L 25.19515 -80.34592
## 1149                 43 winter       L 25.19515 -80.34592
## 1150                 43 winter       L 25.19515 -80.34592
## 1151                 43 winter       L 25.19515 -80.34592
## 1152                 43 winter       L 25.19515 -80.34592
## 1153                 43 winter       L 25.19515 -80.34592
## 1154                 43 winter       L 25.19515 -80.34592
## 1155                 43 winter       S 25.19515 -80.34592
## 1156                 43 winter       L 25.19515 -80.34592
## 1157                 43 winter       S 25.19515 -80.34592
## 1158                 43 winter       L 25.19515 -80.34592
## 1159                 43 winter       S 25.19515 -80.34592
## 1160                 43 winter       L 25.19515 -80.34592
## 1161                 43 winter       L 25.19515 -80.34592
## 1162                 43 winter       L 25.19515 -80.34592
## 1163                 43 winter       L 25.19515 -80.34592
## 1164                 43 winter       L 25.19515 -80.34592
## 1165                 43 winter       L 25.19515 -80.34592
## 1166                 43 winter       L 25.19515 -80.34592
## 1167                 43 winter       L 25.19515 -80.34592
## 1168                 43 winter       S 25.19515 -80.34592
## 1169                 43 winter       L 25.19515 -80.34592
## 1170                 43 winter       S 25.19515 -80.34592
## 1171                 43 winter       S 25.19515 -80.34592
## 1172                 43 winter       S 25.19515 -80.34592
## 1173                 43 winter       L 25.19515 -80.34592
## 1174                 43 winter       L 25.19515 -80.34592
## 1175                 43 winter       S 25.19515 -80.34592
## 1176                 43 winter       L 25.19515 -80.34592
## 1177                 43 winter       L 25.19515 -80.34592
## 1178                 43 winter       L 25.19515 -80.34592
## 1179                 43 winter       S 25.19515 -80.34592
## 1180                 43 winter       L 25.19515 -80.34592
## 1181                 43 winter       S 25.19515 -80.34592
## 1182                 43 winter       L 25.19515 -80.34592
## 1183                 43 winter       L 25.19515 -80.34592
## 1184                 43 winter       L 25.19515 -80.34592
## 1185                 43 winter       L 25.19515 -80.34592
## 1186                 43 winter       L 25.19515 -80.34592
## 1187                 43 winter       L 25.12308 -80.41528
## 1188                 43 winter       L 25.12308 -80.41528
## 1189                 43 winter       L 25.12308 -80.41528
## 1190                 43 winter       S 25.12308 -80.41528
## 1191                 43 winter       L 25.12308 -80.41528
## 1192                 43 winter       L 25.12308 -80.41528
## 1193                 43 winter       S 25.12308 -80.41528
## 1194                 43 winter       L 25.12308 -80.41528
## 1195                 43 winter       S 25.12308 -80.41528
## 1196                 43 winter       L 25.12308 -80.41528
## 1197                 43 winter       L 25.12308 -80.41528
## 1198                 43 winter       L 27.93574 -81.57414
## 1199                 43 winter       L 27.93574 -81.57414
## 1200                 43 winter       L 27.93574 -81.57414
## 1201                 43 winter       L 27.93574 -81.57414
## 1202                 43 winter       L 27.93574 -81.57414
## 1203                 43 winter       L 27.93574 -81.57414
## 1204                 43 winter       L 27.93574 -81.57414
## 1205                 43 winter       S 27.93574 -81.57414
## 1206                 43 winter       L 27.93574 -81.57414
## 1207                 43 winter       L 27.93574 -81.57414
## 1208                 43 winter       L 27.93574 -81.57414
## 1209                 43 winter       L 27.93574 -81.57414
## 1210                 43 winter       L 27.93574 -81.57414
## 1211                 43 winter       L 27.93574 -81.57414
## 1212                 43 winter       L 27.93574 -81.57414
## 1213                 43 winter       L 28.80523 -81.88178
## 1214                 43 winter       L 28.80523 -81.88178
## 1215                 43 winter       L 28.80523 -81.88178
## 1216                 43 winter       L 28.80523 -81.88178
## 1217                 43 winter       L 28.80523 -81.88178
## 1218                 43 winter       L 28.80523 -81.88178
## 1219                 43 winter       L 28.80523 -81.88178
## 1220                 43 winter       L 28.80523 -81.88178
## 1221                 43 winter       L 28.80523 -81.88178
## 1222                 43 winter       L 28.80523 -81.88178
## 1223                 43 winter       L 28.80523 -81.88178
## 1224                 43 winter       L 28.80523 -81.88178
## 1225                 43 winter       L 28.80523 -81.88178
## 1226                 43 winter       L 28.80523 -81.88178
## 1227                 43 winter       L 28.80523 -81.88178
## 1228                 43 winter       L 28.80523 -81.88178
## 1229                 43 winter       L 28.80523 -81.88178
## 1230                 43 winter       L 28.80523 -81.88178
## 1231                 43 winter       L 28.80523 -81.88178
## 1232                 43 winter       L 28.80523 -81.88178
## 1233                 43 winter       L 28.79602 -81.87777
## 1234                 43 winter       L 28.79602 -81.87777
## 1235                 43 winter       L 28.79602 -81.87777
## 1236                 43 winter       L 28.79602 -81.87777
## 1237                 43 winter       L 28.79602 -81.87777
## 1238                 43 winter       L 28.79602 -81.87777
## 1239                 43 winter       L 28.79602 -81.87777
## 1240                 43 winter       L 28.79602 -81.87777
## 1241                 43 winter       L 28.79602 -81.87777
## 1242                 43 winter       L 28.79602 -81.87777
## 1243                 43 winter       L 28.79602 -81.87777
## 1244                 43 winter       S 28.79602 -81.87777
## 1245                 43 winter       L 28.79602 -81.87777
## 1246                 43 winter       L 28.79602 -81.87777
## 1247                 43 winter       L 28.79602 -81.87777
## 1248                 43 winter       L 28.79602 -81.87777
## 1249                 43 winter       L 28.79602 -81.87777
## 1250                 43 winter       L 28.79602 -81.87777
## 1251                 43 winter       L 28.79602 -81.87777
## 1252                 43 winter       L 28.79602 -81.87777
## 1253                 43 winter       L 28.79602 -81.87777
## 1254                 43 winter       L 28.79602 -81.87777
## 1255                 43 winter       L 28.79602 -81.87777
## 1256                 43 winter       L 28.79602 -81.87777
## 1257                 43 winter       L 28.79602 -81.87777
## 1258                 43 winter       L 28.79602 -81.87777
## 1259                 43 winter       L 28.79602 -81.87777
## 1260                 43 winter       L 28.79602 -81.87777
## 1261                 43 winter       L 28.79602 -81.87777
## 1262                 43 winter       L 28.79602 -81.87777
## 1263                 43 winter       L 28.79602 -81.87777
## 1264                 43 winter       L 28.79602 -81.87777
## 1265                 43 winter       L 28.79602 -81.87777
## 1266                 43 winter       L 28.79602 -81.87777
## 1267                 43 winter       L 28.79602 -81.87777
## 1268                 43 winter       L 28.79602 -81.87777
## 1269                 43 winter       L 28.79602 -81.87777
## 1270                 43 winter       L 28.79602 -81.87777
## 1271                 43 winter       L 28.79602 -81.87777
## 1272                 43 winter       L 28.79602 -81.87777
## 1273                 43 winter       L 28.79602 -81.87777
## 1274                 43 winter       L 28.79602 -81.87777
## 1275                 43 winter       L 28.79602 -81.87777
## 1276                 43 winter       L 28.79602 -81.87777
## 1277                 43 winter       L 28.79602 -81.87777
## 1278                 43 winter       S 24.97998 -80.54862
## 1279                 43 winter       L 24.97998 -80.54862
## 1280                 43 winter       L 24.97998 -80.54862
## 1281                 43 winter       S 24.97998 -80.54862
## 1282                 43 winter       L 24.97998 -80.54862
## 1283                 43 winter       L 24.97998 -80.54862
## 1284                 43 winter       S 24.97998 -80.54862
## 1285                 43 winter       L 24.97998 -80.54862
## 1286                 43 winter       L 24.97998 -80.54862
## 1287                 43 winter       S 24.97998 -80.54862
## 1288                 43 winter       L 24.97998 -80.54862
## 1289                 43 winter       S 24.97998 -80.54862
## 1290                 43 winter       S 24.97998 -80.54862
## 1291                 43 winter       S 24.97998 -80.54862
## 1292                 43 winter       S 24.97998 -80.54862
## 1293                 43 winter       L 24.97998 -80.54862
## 1294                 43 winter       L 24.97998 -80.54862
## 1295                 43 winter       L 24.97998 -80.54862
## 1296                 43 winter       L 24.97998 -80.54862
## 1297                 43 winter       L 24.97998 -80.54862
## 1298                 43 winter       S 24.97998 -80.54862
## 1299                 43 winter       S 24.97998 -80.54862
## 1300                 43 winter       L 24.97998 -80.54862
## 1301                 43 winter       S 24.97998 -80.54862
## 1302                 43 winter       S 24.97998 -80.54862
## 1303                 43 winter       L 24.97998 -80.54862
## 1304                 43 winter       L 24.97998 -80.54862
## 1305                 43 winter       S 24.97998 -80.54862
## 1306                 43 winter       L 24.97998 -80.54862
## 1307                 43 winter       L 24.97998 -80.54862
## 1308                 43 winter       L 24.97998 -80.54862
## 1309                 43 winter       L 24.97998 -80.54862
## 1310                 43 winter       L 24.97998 -80.54862
## 1311                 43 winter       L 24.97998 -80.54862
## 1312                 43 winter       S 24.97998 -80.54862
## 1313                 43 winter       S 24.97998 -80.54862
## 1314                 43 winter       L 24.97998 -80.54862
## 1315                 51 summer       L 29.66668 -82.35574
## 1316                 51 summer       L 29.66668 -82.35574
## 1317                 51 summer       L 29.66668 -82.35574
## 1318                 51 summer       S 29.66668 -82.35574
## 1319                 51 summer       L 29.66668 -82.35574
## 1320                 51 summer       L 29.66668 -82.35574
## 1321                 51 summer       S 29.66668 -82.35574
## 1322                 51 summer       L 29.66668 -82.35574
## 1323                 51 summer       L 29.66668 -82.35574
## 1324                 51 summer       L 29.66668 -82.35574
## 1325                 51 summer       L 29.66668 -82.35574
## 1326                 51 summer       L 29.66668 -82.35574
## 1327                 51 summer       L 29.66668 -82.35574
## 1328                 51 summer       L 29.66668 -82.35574
## 1329                 51 summer       L 29.66668 -82.35574
## 1330                 51 summer       L 29.66668 -82.35574
## 1331                 51 summer       S 29.66668 -82.35574
## 1332                 51 summer       L 29.66668 -82.35574
## 1333                 51 summer       L 29.66668 -82.35574
## 1334                 51 summer       L 29.66668 -82.35574
## 1335                 51 summer       L 29.66668 -82.35574
## 1336                 51 summer       L 29.66668 -82.35574
## 1337                 51 summer       L 29.66668 -82.35574
## 1338                 51 summer       L 29.66668 -82.35574
## 1339                 51 summer       L 29.66668 -82.35574
## 1340                 51 summer       S 29.66668 -82.35574
## 1341                 51 summer       L 29.66668 -82.35574
## 1342                 51 summer       L 29.66668 -82.35574
## 1343                 51 summer       L 29.66668 -82.35574
## 1344                 51 summer       L 29.66668 -82.35574
## 1345                 51 summer       L 29.66668 -82.35574
## 1346                 51 summer       L 29.66668 -82.35574
## 1347                 51 summer       L 29.66668 -82.35574
## 1348                 51 summer       L 29.66668 -82.35574
## 1349                 51 summer       L 29.66668 -82.35574
## 1350                 51 summer       L 29.66668 -82.35574
## 1351                 51 summer       L 29.66668 -82.35574
## 1352                 51 summer       L 29.66668 -82.35574
## 1353                 51 summer       L 29.66668 -82.35574
## 1354                 51 summer       L 29.66668 -82.35574
## 1355                 51 summer       L 29.66668 -82.35574
## 1356                 51 summer       L 29.66668 -82.35574
## 1357                 51 summer       L 29.66668 -82.35574
## 1358                 51 summer       S 29.66668 -82.35574
## 1359                 51 summer       L 29.66668 -82.35574
## 1360                 51 summer       L 29.66668 -82.35574
## 1361                 51 summer       L 29.66668 -82.35574
## 1362                 51 summer       L 29.66668 -82.35574
## 1363                 51 summer       L 29.66668 -82.35574
## 1364                 51 summer       L 29.66668 -82.35574
## 1365                 51 summer       L 29.66668 -82.35574
## 1366                 51 summer       L 29.66668 -82.35574
## 1367                 51 summer       L 29.66668 -82.35574
## 1368                 51 summer       L 29.66668 -82.35574
## 1369                 51 summer       L 29.66668 -82.35574
## 1370                 51 summer       L 29.66668 -82.35574
## 1371                 51 summer       L 29.66668 -82.35574
## 1372                 51 summer       L 29.66668 -82.35574
## 1373                 51 summer       L 29.66668 -82.35574
## 1374                 51 summer       S 29.66668 -82.35574
## 1375                 51 summer       L 25.49157 -80.48569
## 1376                 51 summer       S 25.49157 -80.48569
## 1377                 51 summer       L 25.49157 -80.48569
## 1378                 51 summer       L 25.49157 -80.48569
## 1379                 51 summer       S 25.49157 -80.48569
## 1380                 51 summer       L 25.49157 -80.48569
## 1381                 51 summer       L 25.49157 -80.48569
## 1382                 51 summer       L 25.49157 -80.48569
## 1383                 51 summer       L 25.49157 -80.48569
## 1384                 51 summer       L 25.49157 -80.48569
## 1385                 51 summer       L 25.49157 -80.48569
## 1386                 51 summer       L 25.49157 -80.48569
## 1387                 51 summer       L 25.49157 -80.48569
## 1388                 51 summer       L 25.49157 -80.48569
## 1389                 51 summer       L 25.49157 -80.48569
## 1390                 51 summer       L 25.49157 -80.48569
## 1391                 51 summer       L 25.49157 -80.48569
## 1392                 51 summer       L 25.49157 -80.48569
## 1393                 51 summer       S 25.49157 -80.48569
## 1394                 51 summer       L 25.49157 -80.48569
## 1395                 51 summer       L 25.49157 -80.48569
## 1396                 51 summer       L 25.49157 -80.48569
## 1397                 51 summer       L 25.49157 -80.48569
## 1398                 51 summer       L 25.49157 -80.48569
## 1399                 51 summer       L 25.49157 -80.48569
## 1400                 51 summer       L 25.49157 -80.48569
## 1401                 51 summer       L 25.49157 -80.48569
## 1402                 51 summer       L 25.49157 -80.48569
## 1403                 51 summer       S 25.49157 -80.48569
## 1404                 51 summer       L 25.49157 -80.48569
## 1405                 51 summer       L 25.49157 -80.48569
## 1406                 51 summer       L 25.49157 -80.48569
## 1407                 51 summer       L 25.49157 -80.48569
## 1408                 51 summer       S 25.49157 -80.48569
## 1409                 51 summer       L 25.49157 -80.48569
## 1410                 51 summer       L 25.49157 -80.48569
## 1411                 51 summer       L 25.49157 -80.48569
## 1412                 51 summer       L 25.49157 -80.48569
## 1413                 51 summer       L 25.49157 -80.48569
## 1414                 51 summer       L 25.49157 -80.48569
## 1415                 51 summer       L 25.49157 -80.48569
## 1416                 51 summer       L 25.49157 -80.48569
## 1417                 51 summer       L 25.49157 -80.48569
## 1418                 51 summer       S 25.49157 -80.48569
## 1419                 51 summer       L 25.49157 -80.48569
## 1420                 51 summer       L 25.49157 -80.48569
## 1421                 51 summer       L 25.49157 -80.48569
## 1422                 51 summer       L 25.49157 -80.48569
## 1423                 51 summer       L 25.49157 -80.48569
## 1424                 51 summer       L 25.49157 -80.48569
## 1425                 51 summer       L 25.49157 -80.48569
## 1426                 51 summer       L 25.49157 -80.48569
## 1427                 51 summer       L 25.49157 -80.48569
## 1428                 51 summer       L 25.49157 -80.48569
## 1429                 51 summer       L 25.49157 -80.48569
## 1430                 51 summer       L 25.49157 -80.48569
## 1431                 51 summer       L 25.49157 -80.48569
## 1432                 51 summer       L 25.49157 -80.48569
## 1433                 51 summer       L 25.49157 -80.48569
## 1434                 51 summer       L 25.49157 -80.48569
## 1435                 51 summer       L 25.49157 -80.48569
## 1436                 51 summer       L 25.49157 -80.48569
## 1437                 51 summer       L 25.49157 -80.48569
## 1438                 51 summer       L 25.49157 -80.48569
## 1439                 51 summer       L 25.49157 -80.48569
## 1440                 51 summer       L 25.49157 -80.48569
## 1441                 51 summer       L 25.49157 -80.48569
## 1442                 51 summer       L 25.49157 -80.48569
## 1443                 51 summer       L 25.49157 -80.48569
## 1444                 51 summer       L 25.49157 -80.48569
## 1445                 51 summer       L 25.49157 -80.48569
## 1446                 51 summer       L 25.49157 -80.48569
## 1447                 51 summer       L 25.49157 -80.48569
## 1448                 51 summer       L 25.49157 -80.48569
## 1449                 51 summer       L 25.49157 -80.48569
## 1450                 51 summer       L 25.49157 -80.48569
## 1451                 51 summer       L 25.49157 -80.48569
## 1452                 51 summer       L 25.49157 -80.48569
## 1453                 51 summer       L 25.49157 -80.48569
## 1454                 51 summer       L 25.49157 -80.48569
## 1455                 51 summer       L 25.49157 -80.48569
## 1456                 51 summer       L 25.49157 -80.48569
## 1457                 51 summer       L 25.49157 -80.48569
## 1458                 51 summer       L 25.49157 -80.48569
## 1459                 51 summer       L 25.49157 -80.48569
## 1460                 51 summer       L 25.49157 -80.48569
## 1461                 51 summer       L 25.49157 -80.48569
## 1462                 51 summer       L 25.49157 -80.48569
## 1463                 51 summer       L 25.49157 -80.48569
## 1464                 51 summer       L 25.49157 -80.48569
## 1465                 51 summer       L 25.49157 -80.48569
## 1466                 51 summer       L 25.49157 -80.48569
## 1467                 51 summer       L 25.49157 -80.48569
## 1468                 51 summer       L 25.49157 -80.48569
## 1469                 51 summer       L 25.49157 -80.48569
## 1470                 51 summer       L 25.49157 -80.48569
## 1471                 51 summer       L 25.49157 -80.48569
## 1472                 51 summer       L 25.49157 -80.48569
## 1473                 51 summer       L 25.49157 -80.48569
## 1474                 51 summer       L 25.49157 -80.48569
## 1475                 51 summer       L 25.49157 -80.48569
## 1476                 51 summer       L 25.49157 -80.48569
## 1477                 51 summer       L 25.49157 -80.48569
## 1478                 51 summer       L 25.49157 -80.48569
## 1479                 51 summer       L 25.49157 -80.48569
## 1480                 51 summer       L 25.49157 -80.48569
## 1481                 51 summer       L 25.49157 -80.48569
## 1482                 51 summer       L 25.49157 -80.48569
## 1483                 51 summer       L 25.49157 -80.48569
## 1484                 51 summer       L 25.49157 -80.48569
## 1485                 51 summer       L 25.49157 -80.48569
## 1486                 51 summer       L 25.49157 -80.48569
## 1487                 51 summer       L 25.49157 -80.48569
## 1488                 51 summer       L 25.49157 -80.48569
## 1489                 51 summer       L 25.49157 -80.48569
## 1490                 51 summer       L 25.49157 -80.48569
## 1491                 51 summer       L 25.49157 -80.48569
## 1492                 51 summer       L 25.49157 -80.48569
## 1493                 51 summer       L 25.49157 -80.48569
## 1494                 51 summer       L 25.49157 -80.48569
## 1495                 51 summer       L 25.49157 -80.48569
## 1496                 51 summer       L 25.49157 -80.48569
## 1497                 51 summer       L 25.49157 -80.48569
## 1498                 51 summer       L 25.49157 -80.48569
## 1499                 51 summer       L 25.49157 -80.48569
## 1500                 51 summer       L 25.49157 -80.48569
## 1501                 51 summer       L 25.49157 -80.48569
## 1502                 51 summer       L 25.12811 -80.40805
## 1503                 51 summer       L 25.12811 -80.40805
## 1504                 51 summer       L 25.12811 -80.40805
## 1505                 51 summer       S 25.12811 -80.40805
## 1506                 51 summer       L 25.12811 -80.40805
## 1507                 51 summer       L 25.12811 -80.40805
## 1508                 51 summer       L 25.12811 -80.40805
## 1509                 51 summer       L 25.12811 -80.40805
## 1510                 51 summer       L 25.12811 -80.40805
## 1511                 51 summer       L 25.12811 -80.40805
## 1512                 51 summer       L 25.12811 -80.40805
## 1513                 51 summer       S 25.12811 -80.40805
## 1514                 51 summer       L 25.12811 -80.40805
## 1515                 51 summer       L 25.12811 -80.40805
## 1516                 51 summer       L 25.12811 -80.40805
## 1517                 51 summer       L 25.12811 -80.40805
## 1518                 51 summer       L 25.12811 -80.40805
## 1519                 51 summer       L 25.12800 -80.40808
## 1520                 51 summer       L 25.12800 -80.40808
## 1521                 51 summer       L 25.12800 -80.40808
## 1522                 51 summer       L 25.12800 -80.40808
## 1523                 51 summer       L 25.12800 -80.40808
## 1524                 51 summer       S 25.12800 -80.40808
## 1525                 51 summer       S 25.12800 -80.40808
## 1526                 51 summer       L 25.12800 -80.40808
## 1527                 51 summer       L 25.12800 -80.40808
## 1528                 51 summer       L 25.12800 -80.40808
## 1529                 51 summer       L 25.12800 -80.40808
## 1530                 51 summer       L 25.12800 -80.40808
## 1531                 51 summer       L 25.12800 -80.40808
## 1532                 51 summer       L 25.12800 -80.40808
## 1533                 51 summer       L 25.12800 -80.40808
## 1534                 51 summer       L 25.12800 -80.40808
## 1535                 51 summer       S 25.12800 -80.40808
## 1536                 51 summer       L 25.12800 -80.40808
## 1537                 51 summer       L 25.19515 -80.34592
## 1538                 51 summer       L 25.19515 -80.34592
## 1539                 51 summer       L 25.19515 -80.34592
## 1540                 51 summer       L 25.19515 -80.34592
## 1541                 51 summer       S 25.19515 -80.34592
## 1542                 51 summer       L 25.19515 -80.34592
## 1543                 51 summer       L 25.19515 -80.34592
## 1544                 51 summer       L 25.19515 -80.34592
## 1545                 51 summer       S 25.19515 -80.34592
## 1546                 51 summer       S 25.19515 -80.34592
## 1547                 51 summer       L 25.19515 -80.34592
## 1548                 51 summer       L 25.19515 -80.34592
## 1549                 51 summer       S 25.19515 -80.34592
## 1550                 51 summer       L 25.19515 -80.34592
## 1551                 51 summer       S 25.19515 -80.34592
## 1552                 51 summer       S 25.19515 -80.34592
## 1553                 51 summer       L 25.19515 -80.34592
## 1554                 51 summer       L 25.19515 -80.34592
## 1555                 51 summer       S 25.19515 -80.34592
## 1556                 51 summer       L 25.19515 -80.34592
## 1557                 51 summer       L 25.19515 -80.34592
## 1558                 51 summer       L 25.19515 -80.34592
## 1559                 51 summer       L 25.19515 -80.34592
## 1560                 51 summer       S 25.19515 -80.34592
## 1561                 51 summer       L 25.19515 -80.34592
## 1562                 51 summer       S 25.19515 -80.34592
## 1563                 51 summer       S 25.19515 -80.34592
## 1564                 51 summer       S 25.19515 -80.34592
## 1565                 51 summer       S 25.19515 -80.34592
## 1566                 51 summer       S 25.19515 -80.34592
## 1567                 51 summer       S 25.19515 -80.34592
## 1568                 51 summer       L 25.19515 -80.34592
## 1569                 51 summer       S 25.19515 -80.34592
## 1570                 51 summer       L 25.19515 -80.34592
## 1571                 51 summer       S 25.19515 -80.34592
## 1572                 51 summer       S 25.19515 -80.34592
## 1573                 51 summer       L 25.19515 -80.34592
## 1574                 51 summer       L 25.19515 -80.34592
## 1575                 51 summer       L 25.19515 -80.34592
## 1576                 51 summer       L 25.19515 -80.34592
## 1577                 51 summer       L 25.19515 -80.34592
## 1578                 51 summer       L 25.19515 -80.34592
## 1579                 51 summer       L 25.19515 -80.34592
## 1580                 51 summer       L 25.19515 -80.34592
## 1581                 51 summer       L 25.19515 -80.34592
## 1582                 51 summer       L 25.19515 -80.34592
## 1583                 51 summer       L 25.19515 -80.34592
## 1584                 51 summer       L 25.19515 -80.34592
## 1585                 51 summer       L 25.19515 -80.34592
## 1586                 51 summer       S 25.19515 -80.34592
## 1587                 51 summer       L 25.19515 -80.34592
## 1588                 51 summer       S 25.19515 -80.34592
## 1589                 51 summer       L 25.19515 -80.34592
## 1590                 51 summer       L 25.19515 -80.34592
## 1591                 51 summer       L 25.19515 -80.34592
## 1592                 51 summer       L 25.19515 -80.34592
## 1593                 51 summer       S 25.19515 -80.34592
## 1594                 51 summer       L 27.93573 -81.57409
## 1595                 51 summer       L 27.93573 -81.57409
## 1596                 51 summer       L 27.93573 -81.57409
## 1597                 51 summer       L 27.93573 -81.57409
## 1598                 51 summer       L 27.93573 -81.57409
## 1599                 51 summer       L 27.93573 -81.57409
## 1600                 51 summer       L 27.93573 -81.57409
## 1601                 51 summer       L 27.93573 -81.57409
## 1602                 51 summer       L 27.93573 -81.57409
## 1603                 51 summer       L 27.93573 -81.57409
## 1604                 51 summer       L 27.93573 -81.57409
## 1605                 51 summer       L 27.93573 -81.57409
## 1606                 51 summer       L 27.93573 -81.57409
## 1607                 51 summer       L 27.93573 -81.57409
## 1608                 51 summer       L 27.93573 -81.57409
## 1609                 51 summer       S 27.93573 -81.57409
## 1610                 51 summer       L 27.93573 -81.57409
## 1611                 51 summer       S 27.93573 -81.57409
## 1612                 51 summer       L 27.93573 -81.57409
## 1613                 51 summer       L 27.93573 -81.57409
## 1614                 51 summer       L 27.93573 -81.57409
## 1615                 51 summer       L 27.93573 -81.57409
## 1616                 51 summer       L 27.93573 -81.57409
## 1617                 51 summer       L 27.93573 -81.57409
## 1618                 51 summer       L 27.93573 -81.57409
## 1619                 51 summer       S 27.93573 -81.57409
## 1620                 51 summer       L 27.93573 -81.57409
## 1621                 51 summer       L 27.93573 -81.57409
## 1622                 51 summer       L 27.93573 -81.57409
## 1623                 51 summer       L 27.93573 -81.57409
## 1624                 51 summer       L 27.93573 -81.57409
## 1625                 51 summer       L 27.93573 -81.57409
## 1626                 51 summer       L 27.93573 -81.57409
## 1627                 51 summer       L 27.93573 -81.57409
## 1628                 51 summer       S 27.93573 -81.57409
## 1629                 51 summer       S 27.93573 -81.57409
## 1630                 51 summer       L 27.93573 -81.57409
## 1631                 51 summer       L 27.93573 -81.57409
## 1632                 51 summer       L 27.93573 -81.57409
## 1633                 51 summer       S 27.93573 -81.57409
## 1634                 51 summer       S 27.93573 -81.57409
## 1635                 51 summer       L 27.93573 -81.57409
## 1636                 51 summer       L 27.93573 -81.57409
## 1637                 51 summer       S 27.93573 -81.57409
## 1638                 51 summer       S 27.93573 -81.57409
## 1639                 51 summer       L 27.93573 -81.57409
## 1640                 51 summer       S 27.93573 -81.57409
## 1641                 51 summer       S 27.93573 -81.57409
## 1642                 51 summer       L 27.93573 -81.57409
## 1643                 51 summer       S 27.93573 -81.57409
## 1644                 51 summer       L 27.93573 -81.57409
## 1645                 51 summer       S 27.93573 -81.57409
## 1646                 51 summer       L 27.93573 -81.57409
## 1647                 51 summer       L 27.93573 -81.57409
## 1648                 51 summer       S 27.93573 -81.57409
## 1649                 51 summer       L 27.93573 -81.57409
## 1650                 51 summer       L 27.93573 -81.57409
## 1651                 51 summer       S 27.93573 -81.57409
## 1652                 51 summer       L 27.93573 -81.57409
## 1653                 51 summer       L 27.93573 -81.57409
## 1654                 51 summer       S 27.93573 -81.57409
## 1655                 51 summer       L 27.93573 -81.57409
## 1656                 51 summer       S 27.93573 -81.57409
## 1657                 51 summer       S 27.93573 -81.57409
## 1658                 51 summer       S 27.93573 -81.57409
## 1659                 51 summer       S 27.93573 -81.57409
## 1660                 51 summer       L 27.93573 -81.57409
## 1661                 51 summer       S 27.93573 -81.57409
## 1662                 51 summer       L 27.93573 -81.57409
## 1663                 51 summer       L 27.93573 -81.57409
## 1664                 51 summer       L 27.93573 -81.57409
## 1665                 51 summer       L 27.93573 -81.57409
## 1666                 51 summer       L 27.93573 -81.57409
## 1667                 51 summer       S 27.93573 -81.57409
## 1668                 51 summer       S 27.93573 -81.57409
## 1669                 51 summer       L 27.93573 -81.57409
## 1670                 51 summer       S 27.93573 -81.57409
## 1671                 51 summer       S 27.93573 -81.57409
## 1672                 51 summer       S 27.93573 -81.57409
## 1673                 51 summer       L 27.93573 -81.57409
## 1674                 51 summer       S 27.93573 -81.57409
## 1675                 51 summer       L 27.93573 -81.57409
## 1676                 51 summer       S 27.93573 -81.57409
## 1677                 51 summer       S 27.93573 -81.57409
## 1678                 51 summer       S 27.93573 -81.57409
## 1679                 51 summer       S 27.93573 -81.57409
## 1680                 51 summer       L 27.93573 -81.57409
## 1681                 51 summer       S 27.93573 -81.57409
## 1682                 51 summer       L 27.93573 -81.57409
## 1683                 51 summer       L 27.93573 -81.57409
## 1684                 51 summer       S 27.93573 -81.57409
## 1685                 51 summer       L 28.80530 -81.88184
## 1686                 51 summer       L 28.80530 -81.88184
## 1687                 51 summer       S 28.80530 -81.88184
## 1688                 51 summer       S 28.80530 -81.88184
## 1689                 51 summer       S 28.80530 -81.88184
## 1690                 51 summer       L 28.80530 -81.88184
## 1691                 51 summer       L 28.80530 -81.88184
## 1692                 51 summer       L 28.80530 -81.88184
## 1693                 51 summer       L 28.80530 -81.88184
## 1694                 51 summer       S 28.80530 -81.88184
## 1695                 51 summer       L 28.80530 -81.88184
## 1696                 51 summer       L 28.80530 -81.88184
## 1697                 51 summer       L 28.80530 -81.88184
## 1698                 51 summer       L 28.80530 -81.88184
## 1699                 51 summer       S 28.80530 -81.88184
## 1700                 51 summer       S 28.80530 -81.88184
## 1701                 51 summer       L 28.80530 -81.88184
## 1702                 51 summer       S 28.80530 -81.88184
## 1703                 51 summer       L 28.80530 -81.88184
## 1704                 51 summer       L 28.80530 -81.88184
## 1705                 51 summer       L 28.80530 -81.88184
## 1706                 51 summer       L 28.80530 -81.88184
## 1707                 51 summer       L 28.80530 -81.88184
## 1708                 51 summer       S 28.80530 -81.88184
## 1709                 51 summer       L 28.80530 -81.88184
## 1710                 51 summer       L 28.80530 -81.88184
## 1711                 51 summer       S 28.80530 -81.88184
## 1712                 51 summer       L 28.80530 -81.88184
## 1713                 51 summer       L 28.80530 -81.88184
## 1714                 51 summer       L 28.80530 -81.88184
## 1715                 51 summer       L 28.80530 -81.88184
## 1716                 51 summer       L 28.80530 -81.88184
## 1717                 51 summer       L 28.80530 -81.88184
## 1718                 51 summer       S 28.80530 -81.88184
## 1719                 51 summer       S 28.80530 -81.88184
## 1720                 51 summer       L 28.80530 -81.88184
## 1721                 51 summer       L 28.80530 -81.88184
## 1722                 51 summer       S 28.80530 -81.88184
## 1723                 51 summer       L 28.80530 -81.88184
## 1724                 51 summer       L 28.80530 -81.88184
## 1725                 51 summer       S 28.80530 -81.88184
## 1726                 51 summer       L 28.80530 -81.88184
## 1727                 51 summer       L 28.80530 -81.88184
## 1728                 51 summer       L 28.80530 -81.88184
## 1729                 51 summer       S 28.80530 -81.88184
## 1730                 51 summer       S 28.80530 -81.88184
## 1731                 51 summer       L 28.80530 -81.88184
## 1732                 51 summer       L 28.80530 -81.88184
## 1733                 51 summer       L 28.80530 -81.88184
## 1734                 51 summer       S 28.80530 -81.88184
## 1735                 51 summer       S 28.80530 -81.88184
## 1736                 51 summer       S 28.80530 -81.88184
## 1737                 51 summer       S 28.80530 -81.88184
## 1738                 51 summer       S 28.80530 -81.88184
## 1739                 51 summer       S 28.80530 -81.88184
## 1740                 51 summer       S 28.80530 -81.88184
## 1741                 51 summer       L 28.80530 -81.88184
## 1742                 51 summer       S 28.80530 -81.88184
## 1743                 64   fall       L 29.66648 -82.35720
## 1744                 64   fall       L 29.66648 -82.35720
## 1745                 64   fall       L 29.66648 -82.35720
## 1746                 64   fall       L 29.66648 -82.35720
## 1747                 64   fall       L 29.66648 -82.35720
## 1748                 64   fall       L 29.66648 -82.35720
## 1749                 64   fall       L 29.66648 -82.35720
## 1750                 64   fall       L 29.66648 -82.35720
## 1751                 64   fall       L 29.66648 -82.35720
## 1752                 64   fall       L 29.66648 -82.35720
## 1753                 64   fall       L 29.66648 -82.35720
## 1754                 64   fall       L 29.66648 -82.35720
## 1755                 64   fall       L 29.66648 -82.35720
## 1756                 64   fall       L 29.66648 -82.35720
## 1757                 64   fall       L 29.66648 -82.35720
## 1758                 64   fall       L 29.66648 -82.35720
## 1759                 64   fall       S 29.66648 -82.35720
## 1760                 64   fall       L 29.66648 -82.35720
## 1761                 64   fall       L 29.66648 -82.35720
## 1762                 64   fall       L 29.66648 -82.35720
## 1763                 64   fall       L 29.66648 -82.35720
## 1764                 64   fall       L 29.66648 -82.35720
## 1765                 64   fall       L 29.66648 -82.35720
## 1766                 64   fall       L 29.66648 -82.35720
## 1767                 64   fall       L 29.66648 -82.35720
## 1768                 64   fall       L 29.66648 -82.35720
## 1769                 64   fall       L 29.66648 -82.35720
## 1770                 64   fall       L 29.66648 -82.35720
## 1771                 64   fall       L 29.66648 -82.35720
## 1772                 64   fall       L 29.66648 -82.35720
## 1773                 64   fall       L 29.66648 -82.35720
## 1774                 64   fall       L 29.66648 -82.35720
## 1775                 64   fall       L 29.66648 -82.35720
## 1776                 64   fall       L 29.66648 -82.35720
## 1777                 64   fall       L 29.66648 -82.35720
## 1778                 64   fall       L 29.66648 -82.35720
## 1779                 64   fall       L 29.66648 -82.35720
## 1780                 64   fall       L 29.66648 -82.35720
## 1781                 64   fall       L 29.66648 -82.35720
## 1782                 64   fall       L 29.66648 -82.35720
## 1783                 64   fall       L 29.66648 -82.35720
## 1784                 64   fall       L 29.66648 -82.35720
## 1785                 64   fall       L 29.66648 -82.35720
## 1786                 64   fall       L 29.66648 -82.35720
## 1787                 64   fall       L 29.66648 -82.35720
## 1788                 64   fall       L 29.66648 -82.35720
## 1789                 64   fall       L 29.66648 -82.35720
## 1790                 64   fall       L 29.66648 -82.35720
## 1791                 64   fall       L 29.66648 -82.35720
## 1792                 64   fall       L 29.66648 -82.35720
## 1793                 64   fall       L 29.66648 -82.35720
## 1794                 64   fall       L 29.66648 -82.35720
## 1795                 64   fall       L 29.66648 -82.35720
## 1796                 64   fall       L 29.66648 -82.35720
## 1797                 64   fall       L 29.66648 -82.35720
## 1798                 64   fall       S 29.66648 -82.35720
## 1799                 64   fall       L 29.66648 -82.35720
## 1800                 64   fall       L 29.66648 -82.35720
## 1801                 64   fall       L 29.66648 -82.35720
## 1802                 64   fall       L 29.66648 -82.35720
## 1803                 64   fall       S 29.66648 -82.35720
## 1804                 64   fall       L 29.66648 -82.35720
## 1805                 64   fall       L 29.66648 -82.35720
## 1806                 64   fall       L 29.66648 -82.35720
## 1807                 64   fall       L 25.19515 -80.34592
## 1808                 64   fall       L 25.19515 -80.34592
## 1809                 64   fall       L 25.19515 -80.34592
## 1810                 64   fall       L 25.19515 -80.34592
## 1811                 64   fall       S 25.19515 -80.34592
## 1812                 64   fall       S 25.19515 -80.34592
## 1813                 64   fall       S 25.19515 -80.34592
## 1814                 64   fall       S 25.19515 -80.34592
## 1815                 64   fall       L 25.19515 -80.34592
## 1816                 64   fall       S 25.19515 -80.34592
## 1817                 64   fall       S 25.19515 -80.34592
## 1818                 64   fall       L 25.19515 -80.34592
## 1819                 64   fall       S 25.19515 -80.34592
## 1820                 64   fall       S 25.19515 -80.34592
## 1821                 64   fall       L 25.19515 -80.34592
## 1822                 64   fall       S 25.19515 -80.34592
## 1823                 64   fall       L 25.19515 -80.34592
## 1824                 64   fall       S 25.19515 -80.34592
## 1825                 64   fall       L 25.19515 -80.34592
## 1826                 64   fall       L 25.19515 -80.34592
## 1827                 64   fall       L 25.19515 -80.34592
## 1828                 64   fall       S 25.19515 -80.34592
## 1829                 64   fall       S 25.19515 -80.34592
## 1830                 64   fall       L 25.19515 -80.34592
## 1831                 64   fall       S 25.19515 -80.34592
## 1832                 64   fall       L 25.19515 -80.34592
## 1833                 64   fall       L 25.19515 -80.34592
## 1834                 64   fall       S 25.19515 -80.34592
## 1835                 64   fall       S 25.19515 -80.34592
## 1836                 64   fall       S 25.19515 -80.34592
## 1837                 64   fall       L 25.19515 -80.34592
## 1838                 64   fall       S 25.19515 -80.34592
## 1839                 64   fall       L 25.19515 -80.34592
## 1840                 64   fall       L 25.19515 -80.34592
## 1841                 64   fall       L 25.19515 -80.34592
## 1842                 64   fall       S 25.19515 -80.34592
## 1843                 64   fall       S 25.19515 -80.34592
## 1844                 64   fall       S 25.19515 -80.34592
## 1845                 64   fall       S 25.19515 -80.34592
## 1846                 64   fall       S 25.19515 -80.34592
## 1847                 64   fall       L 25.19515 -80.34592
## 1848                 64   fall       S 25.19515 -80.34592
## 1849                 64   fall       L 25.19515 -80.34592
## 1850                 64   fall       L 25.19515 -80.34592
## 1851                 64   fall       L 25.19515 -80.34592
## 1852                 64   fall       S 25.19515 -80.34592
## 1853                 64   fall       L 25.19515 -80.34592
## 1854                 64   fall       L 25.19515 -80.34592
## 1855                 64   fall       L 25.19515 -80.34592
## 1856                 64   fall       L 25.19515 -80.34592
## 1857                 64   fall       S 25.19515 -80.34592
## 1858                 64   fall       S 25.19515 -80.34592
## 1859                 64   fall       L 25.19515 -80.34592
## 1860                 64   fall       S 25.19515 -80.34592
## 1861                 64   fall       S 25.19515 -80.34592
## 1862                 64   fall       L 25.19515 -80.34592
## 1863                 64   fall       L 25.19515 -80.34592
## 1864                 64   fall       S 25.19515 -80.34592
## 1865                 64   fall       L 25.19515 -80.34592
## 1866                 64   fall       S 25.19515 -80.34592
## 1867                 64   fall       L 25.19515 -80.34592
## 1868                 64   fall       S 25.19515 -80.34592
## 1869                 64   fall       L 25.19515 -80.34592
## 1870                 64   fall       S 25.19515 -80.34592
## 1871                 64   fall       L 25.19515 -80.34592
## 1872                 64   fall       S 25.19515 -80.34592
## 1873                 64   fall       S 25.19515 -80.34592
## 1874                 64   fall       S 25.19515 -80.34592
## 1875                 64   fall       L 27.93575 -81.57412
## 1876                 64   fall       L 27.93575 -81.57412
## 1877                 64   fall       L 27.93575 -81.57412
## 1878                 64   fall       L 27.93575 -81.57412
## 1879                 64   fall       L 27.93575 -81.57412
## 1880                 64   fall       L 27.93575 -81.57412
## 1881                 64   fall       L 27.93575 -81.57412
## 1882                 64   fall       S 27.93575 -81.57412
## 1883                 64   fall       L 27.93575 -81.57412
## 1884                 64   fall       L 27.93575 -81.57412
## 1885                 64   fall       L 27.93575 -81.57412
## 1886                 64   fall       L 27.93575 -81.57412
## 1887                 64   fall       L 27.93575 -81.57412
## 1888                 64   fall       L 27.93575 -81.57412
## 1889                 64   fall       L 27.93575 -81.57412
## 1890                 64   fall       L 27.93575 -81.57412
## 1891                 64   fall       L 27.93575 -81.57412
## 1892                 64   fall       L 27.93575 -81.57412
## 1893                 64   fall       L 27.93575 -81.57412
## 1894                 64   fall       L 27.93575 -81.57412
## 1895                 64   fall       L 27.93575 -81.57412
## 1896                 64   fall       L 27.93575 -81.57412
## 1897                 64   fall       L 27.93575 -81.57412
## 1898                 64   fall       L 27.93575 -81.57412
## 1899                 64   fall       L 27.93575 -81.57412
## 1900                 64   fall       S 27.93575 -81.57412
## 1901                 64   fall       L 27.93575 -81.57412
## 1902                 64   fall       L 27.93575 -81.57412
## 1903                 64   fall       S 27.93575 -81.57412
## 1904                 64   fall       L 27.93575 -81.57412
## 1905                 64   fall       L 27.93575 -81.57412
## 1906                 64   fall       L 27.93575 -81.57412
## 1907                 64   fall       L 27.93575 -81.57412
## 1908                 64   fall       L 27.93575 -81.57412
## 1909                 64   fall       L 27.93575 -81.57412
## 1910                 64   fall       L 27.93575 -81.57412
## 1911                 64   fall       L 27.93575 -81.57412
## 1912                 64   fall       L 27.93575 -81.57412
## 1913                 64   fall       L 27.93575 -81.57412
## 1914                 64   fall       L 27.93575 -81.57412
## 1915                 64   fall       L 28.81527 -81.88217
## 1916                 72 spring       L 29.66679 -82.35761
## 1917                 72 spring       L 29.66679 -82.35761
## 1918                 72 spring       L 29.66679 -82.35761
## 1919                 72 spring       L 29.66679 -82.35761
## 1920                 72 spring       L 29.66679 -82.35761
## 1921                 72 spring       S 29.66679 -82.35761
## 1922                 72 spring       L 29.66679 -82.35761
## 1923                 72 spring       L 29.66679 -82.35761
## 1924                 72 spring       L 29.66679 -82.35761
## 1925                 72 spring       L 29.66197 -82.34728
## 1926                 72 spring       L 29.66197 -82.34728
## 1927                 72 spring       L 29.66197 -82.34728
## 1928                 72 spring       L 29.66197 -82.34728
## 1929                 72 spring       L 29.66197 -82.34728
## 1930                 72 spring       L 29.66197 -82.34728
## 1931                 72 spring       L 29.66197 -82.34728
## 1932                 72 spring       L 29.66197 -82.34728
## 1933                 72 spring       L 29.66197 -82.34728
## 1934                 72 spring       L 29.66197 -82.34728
## 1935                 72 spring       S 29.66197 -82.34728
## 1936                 72 spring       L 29.66197 -82.34728
## 1937                 72 spring       L 29.66197 -82.34728
## 1938                 72 spring       L 29.66197 -82.34728
## 1939                 72 spring       L 29.66197 -82.34728
## 1940                 72 spring       L 29.66197 -82.34728
## 1941                 72 spring       L 29.66197 -82.34728
## 1942                 72 spring       L 29.66197 -82.34728
## 1943                 72 spring       L 29.66197 -82.34728
## 1944                 72 spring       L 29.66197 -82.34728
## 1945                 72 spring       L 29.66197 -82.34728
## 1946                 72 spring       L 29.66197 -82.34728
## 1947                 72 spring       L 29.66197 -82.34728
## 1948                 72 spring       L 29.66197 -82.34728
## 1949                 72 spring       L 29.66197 -82.34728
## 1950                 72 spring       L 29.66197 -82.34728
## 1951                 72 spring       L 29.66197 -82.34728
## 1952                 72 spring       L 29.66197 -82.34728
## 1953                 72 spring       L 29.66197 -82.34728
## 1954                 72 spring       L 29.66197 -82.34728
## 1955                 72 spring       L 29.66197 -82.34728
## 1956                 72 spring       L 29.66197 -82.34728
## 1957                 72 spring       L 29.66197 -82.34728
## 1958                 72 spring       L 29.66197 -82.34728
## 1959                 72 spring       L 29.66197 -82.34728
## 1960                 72 spring       L 29.66197 -82.34728
## 1961                 72 spring       L 29.66197 -82.34728
## 1962                 72 spring       L 29.66197 -82.34728
## 1963                 72 spring       L 29.66197 -82.34728
## 1964                 72 spring       L 29.66197 -82.34728
## 1965                 72 spring       S 25.48862 -80.48976
## 1966                 72 spring       L 25.48862 -80.48976
## 1967                 72 spring       L 25.48862 -80.48976
## 1968                 72 spring       L 25.48862 -80.48976
## 1969                 72 spring       L 25.48862 -80.48976
## 1970                 72 spring       L 25.48862 -80.48976
## 1971                 72 spring       S 25.48862 -80.48976
## 1972                 72 spring       L 25.48862 -80.48976
## 1973                 72 spring       L 25.48862 -80.48976
## 1974                 72 spring       S 25.48862 -80.48976
## 1975                 72 spring       S 25.48862 -80.48976
## 1976                 72 spring       S 25.48862 -80.48976
## 1977                 72 spring       L 25.48862 -80.48976
## 1978                 72 spring       S 25.48862 -80.48976
## 1979                 72 spring       S 25.48862 -80.48976
## 1980                 72 spring       L 25.48862 -80.48976
## 1981                 72 spring       L 25.48862 -80.48976
## 1982                 72 spring       S 25.48862 -80.48976
## 1983                 72 spring       S 25.12848 -80.40754
## 1984                 72 spring       S 25.12848 -80.40754
## 1985                 72 spring       S 25.12848 -80.40754
## 1986                 72 spring       L 25.12848 -80.40754
## 1987                 72 spring       L 25.12848 -80.40754
## 1988                 72 spring       L 25.12848 -80.40754
## 1989                 72 spring       L 25.12848 -80.40754
## 1990                 72 spring       S 25.12848 -80.40754
## 1991                 72 spring       S 25.12848 -80.40754
## 1992                 72 spring       S 25.12848 -80.40754
## 1993                 72 spring       S 25.12848 -80.40754
## 1994                 72 spring       S 25.12848 -80.40754
## 1995                 72 spring       S 25.12848 -80.40754
## 1996                 72 spring       L 25.12848 -80.40754
## 1997                 72 spring       S 25.12848 -80.40754
## 1998                 72 spring       S 25.12848 -80.40754
## 1999                 72 spring       S 25.12848 -80.40754
## 2000                 72 spring       L 25.12848 -80.40754
## 2001                 72 spring       L 25.12848 -80.40754
## 2002                 72 spring       L 25.12848 -80.40754
## 2003                 72 spring       L 25.12848 -80.40754
## 2004                 72 spring       S 25.12848 -80.40754
## 2005                 72 spring       L 25.12848 -80.40754
## 2006                 72 spring       L 25.12848 -80.40754
## 2007                 72 spring       S 25.12848 -80.40754
## 2008                 72 spring       L 25.12848 -80.40754
## 2009                 72 spring       S 25.12848 -80.40754
## 2010                 72 spring       S 25.12848 -80.40754
## 2011                 72 spring       S 25.12848 -80.40754
## 2012                 72 spring       S 25.12848 -80.40754
## 2013                 72 spring       L 25.12848 -80.40754
## 2014                 72 spring       S 25.12848 -80.40754
## 2015                 72 spring       L 25.12848 -80.40754
## 2016                 72 spring       S 25.12848 -80.40754
## 2017                 72 spring       S 25.12848 -80.40754
## 2018                 72 spring       S 25.12848 -80.40754
## 2019                 72 spring       L 25.12848 -80.40754
## 2020                 72 spring       S 25.12848 -80.40754
## 2021                 72 spring       S 25.12848 -80.40754
## 2022                 72 spring       S 25.12848 -80.40754
## 2023                 72 spring       S 25.12848 -80.40754
## 2024                 72 spring       L 25.12848 -80.40754
## 2025                 72 spring       S 25.12848 -80.40754
## 2026                 72 spring       S 25.12848 -80.40754
## 2027                 72 spring       S 25.12848 -80.40754
## 2028                 72 spring       S 25.12848 -80.40754
## 2029                 72 spring       L 25.12848 -80.40754
## 2030                 72 spring       L 25.12848 -80.40754
## 2031                 72 spring       L 25.12848 -80.40754
## 2032                 72 spring       S 25.12848 -80.40754
## 2033                 72 spring       S 25.12848 -80.40754
## 2034                 72 spring       L 25.12848 -80.40754
## 2035                 72 spring       S 25.12848 -80.40754
## 2036                 72 spring       L 25.12848 -80.40754
## 2037                 72 spring       S 25.12848 -80.40754
## 2038                 72 spring       L 25.12848 -80.40754
## 2039                 72 spring       S 25.12848 -80.40754
## 2040                 72 spring       S 25.12848 -80.40754
## 2041                 72 spring       S 25.12848 -80.40754
## 2042                 72 spring       L 25.12848 -80.40754
## 2043                 72 spring       S 25.12848 -80.40754
## 2044                 72 spring       S 25.12848 -80.40754
## 2045                 72 spring       S 25.12848 -80.40754
## 2046                 72 spring       S 25.12848 -80.40754
## 2047                 72 spring       S 25.12848 -80.40754
## 2048                 72 spring       S 25.12848 -80.40754
## 2049                 72 spring       S 25.12848 -80.40754
## 2050                 72 spring       L 25.12848 -80.40754
## 2051                 72 spring       S 25.12848 -80.40754
## 2052                 72 spring       S 25.12848 -80.40754
## 2053                 72 spring       L 25.12848 -80.40754
## 2054                 72 spring       S 25.12848 -80.40754
## 2055                 72 spring       S 25.12848 -80.40754
## 2056                 72 spring       L 25.12848 -80.40754
## 2057                 72 spring       S 25.12848 -80.40754
## 2058                 72 spring       S 25.12848 -80.40754
## 2059                 72 spring       L 27.29866 -81.36612
## 2060                 72 spring       L 27.29866 -81.36612
## 2061                 72 spring       L 27.29866 -81.36612
## 2062                 72 spring       L 27.29866 -81.36612
## 2063                 72 spring       L 27.29866 -81.36612
## 2064                 72 spring       L 27.29866 -81.36612
## 2065                 72 spring       L 27.29866 -81.36612
## 2066                 72 spring       L 27.29866 -81.36612
## 2067                 72 spring       S 27.29866 -81.36612
## 2068                 72 spring       L 27.29866 -81.36612
## 2069                 72 spring       S 27.29866 -81.36612
## 2070                 72 spring       L 27.29866 -81.36612
## 2071                 72 spring       S 27.29866 -81.36612
## 2072                 72 spring       L 27.29866 -81.36612
## 2073                 72 spring       L 27.29866 -81.36612
## 2074                 72 spring       L 27.29866 -81.36612
## 2075                 72 spring       L 27.29866 -81.36612
## 2076                 72 spring       S 27.29866 -81.36612
## 2077                 72 spring       L 27.29866 -81.36612
## 2078                 72 spring       S 27.29866 -81.36612
## 2079                 72 spring       L 27.29866 -81.36612
## 2080                 72 spring       L 27.29866 -81.36612
## 2081                 72 spring       L 27.29866 -81.36612
## 2082                 72 spring       L 27.29866 -81.36612
## 2083                 72 spring       L 27.29866 -81.36612
## 2084                 72 spring       L 27.29866 -81.36612
## 2085                 72 spring       L 27.29866 -81.36612
## 2086                 72 spring       L 27.29866 -81.36612
## 2087                 72 spring       L 27.29866 -81.36612
## 2088                 72 spring       L 27.29866 -81.36612
## 2089                 72 spring       L 27.29866 -81.36612
## 2090                 72 spring       L 27.29866 -81.36612
## 2091                 72 spring       L 27.29866 -81.36612
## 2092                 72 spring       L 27.29866 -81.36612
## 2093                 72 spring       L 27.29866 -81.36612
## 2094                 72 spring       L 27.29866 -81.36612
## 2095                 72 spring       L 27.29866 -81.36612
## 2096                 72 spring       L 27.29866 -81.36612
## 2097                 72 spring       L 27.29866 -81.36612
## 2098                 72 spring       L 27.29866 -81.36612
## 2099                 72 spring       L 27.29866 -81.36612
## 2100                 72 spring       L 27.29866 -81.36612
## 2101                 72 spring       L 27.29866 -81.36612
## 2102                 72 spring       L 27.29866 -81.36612
## 2103                 72 spring       S 27.29866 -81.36612
## 2104                 72 spring       L 27.29866 -81.36612
## 2105                 72 spring       L 27.29866 -81.36612
## 2106                 72 spring       S 27.29866 -81.36612
## 2107                 72 spring       L 27.29866 -81.36612
## 2108                 72 spring       S 27.29866 -81.36612
## 2109                 72 spring       L 27.29866 -81.36612
## 2110                 72 spring       L 27.29866 -81.36612
## 2111                 72 spring       L 27.29866 -81.36612
## 2112                 72 spring       L 27.29866 -81.36612
## 2113                 72 spring       L 27.29866 -81.36612
## 2114                 72 spring       L 27.29866 -81.36612
## 2115                 72 spring       L 27.29866 -81.36612
## 2116                 72 spring       L 27.29866 -81.36612
## 2117                 72 spring       L 27.29866 -81.36612
## 2118                 72 spring       L 27.29866 -81.36612
## 2119                 72 spring       L 27.29866 -81.36612
## 2120                 72 spring       L 27.29866 -81.36612
## 2121                 72 spring       L 25.19515 -80.34592
## 2122                 72 spring       L 25.19515 -80.34592
## 2123                 72 spring       L 25.19515 -80.34592
## 2124                 72 spring       L 25.19515 -80.34592
## 2125                 72 spring       S 25.19515 -80.34592
## 2126                 72 spring       L 25.19515 -80.34592
## 2127                 72 spring       S 25.19515 -80.34592
## 2128                 72 spring       L 25.19515 -80.34592
## 2129                 72 spring       L 25.19515 -80.34592
## 2130                 72 spring       L 25.19515 -80.34592
## 2131                 72 spring       S 25.19515 -80.34592
## 2132                 72 spring       L 25.19515 -80.34592
## 2133                 72 spring       L 25.19515 -80.34592
## 2134                 72 spring       L 25.19515 -80.34592
## 2135                 72 spring       L 25.19515 -80.34592
## 2136                 72 spring       S 25.19515 -80.34592
## 2137                 72 spring       L 25.19515 -80.34592
## 2138                 72 spring       L 25.19515 -80.34592
## 2139                 72 spring       L 25.19515 -80.34592
## 2140                 72 spring       L 25.19515 -80.34592
## 2141                 72 spring       L 25.19515 -80.34592
## 2142                 72 spring       S 25.19515 -80.34592
## 2143                 72 spring       L 25.19515 -80.34592
## 2144                 72 spring       S 25.19515 -80.34592
## 2145                 72 spring       S 25.19515 -80.34592
## 2146                 72 spring       L 25.19515 -80.34592
## 2147                 72 spring       S 25.19515 -80.34592
## 2148                 72 spring       L 25.19515 -80.34592
## 2149                 72 spring       S 25.19515 -80.34592
## 2150                 72 spring       L 25.19515 -80.34592
## 2151                 72 spring       S 25.19515 -80.34592
## 2152                 72 spring       S 25.19515 -80.34592
## 2153                 72 spring       L 25.19515 -80.34592
## 2154                 72 spring       L 25.19515 -80.34592
## 2155                 72 spring       L 25.19515 -80.34592
## 2156                 72 spring       L 25.19515 -80.34592
## 2157                 72 spring       L 25.19515 -80.34592
## 2158                 72 spring       L 25.19515 -80.34592
## 2159                 72 spring       L 25.19515 -80.34592
## 2160                 72 spring       S 25.19515 -80.34592
## 2161                 72 spring       L 25.19515 -80.34592
## 2162                 72 spring       L 25.19515 -80.34592
## 2163                 72 spring       S 25.19515 -80.34592
## 2164                 72 spring       S 25.19515 -80.34592
## 2165                 72 spring       L 25.19515 -80.34592
## 2166                 72 spring       L 25.19515 -80.34592
## 2167                 72 spring       L 25.19515 -80.34592
## 2168                 72 spring       L 25.19515 -80.34592
## 2169                 72 spring       S 25.19515 -80.34592
## 2170                 72 spring       L 25.19515 -80.34592
## 2171                 72 spring       L 25.19515 -80.34592
## 2172                 72 spring       S 25.19515 -80.34592
## 2173                 72 spring       L 25.19515 -80.34592
## 2174                 72 spring       S 25.19515 -80.34592
## 2175                 72 spring       L 25.19515 -80.34592
## 2176                 72 spring       L 25.19515 -80.34592
## 2177                 72 spring       L 25.19515 -80.34592
## 2178                 72 spring       S 25.19515 -80.34592
## 2179                 72 spring       S 25.19515 -80.34592
## 2180                 72 spring       S 25.19515 -80.34592
## 2181                 72 spring       S 25.19515 -80.34592
## 2182                 72 spring       S 25.19515 -80.34592
## 2183                 72 spring       S 25.19515 -80.34592
## 2184                 72 spring       L 25.19515 -80.34592
## 2185                 72 spring       L 25.19515 -80.34592
## 2186                 72 spring       S 25.19515 -80.34592
## 2187                 72 spring       L 25.19515 -80.34592
## 2188                 72 spring       L 25.19515 -80.34592
## 2189                 72 spring       L 25.19515 -80.34592
## 2190                 72 spring       L 25.19515 -80.34592
## 2191                 72 spring       S 25.19515 -80.34592
## 2192                 72 spring       L 25.19515 -80.34592
## 2193                 72 spring       S 25.19515 -80.34592
## 2194                 72 spring       S 25.19515 -80.34592
## 2195                 72 spring       L 25.19515 -80.34592
## 2196                 72 spring       L 25.19515 -80.34592
## 2197                 72 spring       S 25.19515 -80.34592
## 2198                 72 spring       L 25.19515 -80.34592
## 2199                 72 spring       L 25.19515 -80.34592
## 2200                 72 spring       S 25.19515 -80.34592
## 2201                 72 spring       L 25.19515 -80.34592
## 2202                 72 spring       S 25.19515 -80.34592
## 2203                 72 spring       L 25.19515 -80.34592
## 2204                 72 spring       S 25.19515 -80.34592
## 2205                 72 spring       S 25.19515 -80.34592
## 2206                 72 spring       L 25.19515 -80.34592
## 2207                 72 spring       L 25.19515 -80.34592
## 2208                 72 spring       L 25.19515 -80.34592
## 2209                 72 spring       S 25.19515 -80.34592
## 2210                 72 spring       S 25.19515 -80.34592
## 2211                 72 spring       S 25.19515 -80.34592
## 2212                 72 spring       S 25.19515 -80.34592
## 2213                 72 spring       S 25.19515 -80.34592
## 2214                 72 spring       L 25.19515 -80.34592
## 2215                 72 spring       S 25.19515 -80.34592
## 2216                 72 spring       S 25.19515 -80.34592
## 2217                 72 spring       S 25.19515 -80.34592
## 2218                 72 spring       S 25.19515 -80.34592
## 2219                 72 spring       L 25.19515 -80.34592
## 2220                 72 spring       S 25.19515 -80.34592
## 2221                 72 spring       S 25.19515 -80.34592
## 2222                 72 spring       S 25.19515 -80.34592
## 2223                 72 spring       L 25.19515 -80.34592
## 2224                 72 spring       L 25.19515 -80.34592
## 2225                 72 spring       S 25.19515 -80.34592
## 2226                 72 spring       L 25.19515 -80.34592
## 2227                 72 spring       S 25.19515 -80.34592
## 2228                 72 spring       S 25.19515 -80.34592
## 2229                 72 spring       S 25.19515 -80.34592
## 2230                 72 spring       S 25.19515 -80.34592
## 2231                 72 spring       S 25.19515 -80.34592
## 2232                 72 spring       S 25.19515 -80.34592
## 2233                 72 spring       L 25.19515 -80.34592
## 2234                 72 spring       S 25.19515 -80.34592
## 2235                 72 spring       S 25.19515 -80.34592
## 2236                 72 spring       L 25.19515 -80.34592
## 2237                 72 spring       L 25.19515 -80.34592
## 2238                 72 spring       S 25.19515 -80.34592
## 2239                 72 spring       L 25.19515 -80.34592
## 2240                 72 spring       L 25.19515 -80.34592
## 2241                 72 spring       S 25.19515 -80.34592
## 2242                 72 spring       S 25.19515 -80.34592
## 2243                 72 spring       L 25.19515 -80.34592
## 2244                 72 spring       L 25.19515 -80.34592
## 2245                 72 spring       L 25.19515 -80.34592
## 2246                 72 spring       L 25.19515 -80.34592
## 2247                 72 spring       L 25.19515 -80.34592
## 2248                 72 spring       S 25.19515 -80.34592
## 2249                 72 spring       L 25.19515 -80.34592
## 2250                 72 spring       S 25.19515 -80.34592
## 2251                 72 spring       L 25.19515 -80.34592
## 2252                 72 spring       S 25.19515 -80.34592
## 2253                 72 spring       S 25.19515 -80.34592
## 2254                 72 spring       L 25.19515 -80.34592
## 2255                 72 spring       S 25.19515 -80.34592
## 2256                 72 spring       S 25.19515 -80.34592
## 2257                 72 spring       S 25.19515 -80.34592
## 2258                 72 spring       S 25.19515 -80.34592
## 2259                 72 spring       S 25.19515 -80.34592
## 2260                 72 spring       S 25.19515 -80.34592
## 2261                 72 spring       S 25.19515 -80.34592
## 2262                 72 spring       S 25.19515 -80.34592
## 2263                 72 spring       L 25.19515 -80.34592
## 2264                 72 spring       L 25.19515 -80.34592
## 2265                 72 spring       L 25.19515 -80.34592
## 2266                 72 spring       L 25.19515 -80.34592
## 2267                 72 spring       S 25.19515 -80.34592
## 2268                 72 spring       L 25.19515 -80.34592
## 2269                 72 spring       L 25.19515 -80.34592
## 2270                 72 spring       L 25.19515 -80.34592
## 2271                 72 spring       L 25.19515 -80.34592
## 2272                 72 spring       L 25.19515 -80.34592
## 2273                 72 spring       S 25.19515 -80.34592
## 2274                 72 spring       L 25.19515 -80.34592
## 2275                 72 spring       S 25.19515 -80.34592
## 2276                 72 spring       S 25.19515 -80.34592
## 2277                 72 spring       L 25.19515 -80.34592
## 2278                 72 spring       S 25.19515 -80.34592
## 2279                 72 spring       L 25.19515 -80.34592
## 2280                 72 spring       S 25.19515 -80.34592
## 2281                 72 spring       L 25.19515 -80.34592
## 2282                 72 spring       S 25.19515 -80.34592
## 2283                 72 spring       S 25.19515 -80.34592
## 2284                 72 spring       S 25.19515 -80.34592
## 2285                 72 spring       L 25.19515 -80.34592
## 2286                 72 spring       L 25.19515 -80.34592
## 2287                 72 spring       S 25.19515 -80.34592
## 2288                 72 spring       L 25.19515 -80.34592
## 2289                 72 spring       S 25.19515 -80.34592
## 2290                 72 spring       L 25.19515 -80.34592
## 2291                 72 spring       L 25.19515 -80.34592
## 2292                 72 spring       L 25.19515 -80.34592
## 2293                 72 spring       L 25.19515 -80.34592
## 2294                 72 spring       L 25.19515 -80.34592
## 2295                 72 spring       S 25.19515 -80.34592
## 2296                 72 spring       S 25.19515 -80.34592
## 2297                 72 spring       L 25.19515 -80.34592
## 2298                 72 spring       S 25.19515 -80.34592
## 2299                 72 spring       S 25.19515 -80.34592
## 2300                 72 spring       S 25.19515 -80.34592
## 2301                 72 spring       S 25.19515 -80.34592
## 2302                 72 spring       L 25.19515 -80.34592
## 2303                 72 spring       S 25.19515 -80.34592
## 2304                 72 spring       L 25.19515 -80.34592
## 2305                 72 spring       S 25.19515 -80.34592
## 2306                 72 spring       S 25.19515 -80.34592
## 2307                 72 spring       S 25.19515 -80.34592
## 2308                 72 spring       L 25.19515 -80.34592
## 2309                 72 spring       S 25.19515 -80.34592
## 2310                 72 spring       L 25.19515 -80.34592
## 2311                 72 spring       L 25.19515 -80.34592
## 2312                 72 spring       L 25.19515 -80.34592
## 2313                 72 spring       L 25.19515 -80.34592
## 2314                 72 spring       S 25.19515 -80.34592
## 2315                 72 spring       S 25.19515 -80.34592
## 2316                 72 spring       L 25.19515 -80.34592
## 2317                 72 spring       S 25.19515 -80.34592
## 2318                 72 spring       S 25.19515 -80.34592
## 2319                 72 spring       S 25.19515 -80.34592
## 2320                 72 spring       S 25.19515 -80.34592
## 2321                 72 spring       L 25.19515 -80.34592
## 2322                 72 spring       S 25.19515 -80.34592
## 2323                 72 spring       S 25.19515 -80.34592
## 2324                 72 spring       S 25.19515 -80.34592
## 2325                 72 spring       S 25.19515 -80.34592
## 2326                 72 spring       S 25.19515 -80.34592
## 2327                 72 spring       S 25.19515 -80.34592
## 2328                 72 spring       L 25.19515 -80.34592
## 2329                 72 spring       S 25.19515 -80.34592
## 2330                 72 spring       S 25.19515 -80.34592
## 2331                 72 spring       S 25.19515 -80.34592
## 2332                 72 spring       S 25.19515 -80.34592
## 2333                 72 spring       L 25.19515 -80.34592
## 2334                 72 spring       L 25.19515 -80.34592
## 2335                 72 spring       L 25.19515 -80.34592
## 2336                 72 spring       L 25.19515 -80.34592
## 2337                 72 spring       L 25.19515 -80.34592
## 2338                 72 spring       S 25.19515 -80.34592
## 2339                 72 spring       L 25.19515 -80.34592
## 2340                 72 spring       L 25.19515 -80.34592
## 2341                 72 spring       L 25.19515 -80.34592
## 2342                 72 spring       L 25.19515 -80.34592
## 2343                 72 spring       L 25.19515 -80.34592
## 2344                 72 spring       L 25.19515 -80.34592
## 2345                 72 spring       L 25.19515 -80.34592
## 2346                 72 spring       L 25.19515 -80.34592
## 2347                 72 spring       L 25.19515 -80.34592
## 2348                 72 spring       L 25.19515 -80.34592
## 2349                 72 spring       L 25.19515 -80.34592
## 2350                 72 spring       L 25.19515 -80.34592
## 2351                 72 spring       L 25.19515 -80.34592
## 2352                 72 spring       L 25.19515 -80.34592
## 2353                 72 spring       L 25.19515 -80.34592
## 2354                 72 spring       L 25.19515 -80.34592
## 2355                 72 spring       S 25.19515 -80.34592
## 2356                 72 spring       L 25.19515 -80.34592
## 2357                 72 spring       L 25.19515 -80.34592
## 2358                 72 spring       L 25.19515 -80.34592
## 2359                 72 spring       L 25.19515 -80.34592
## 2360                 72 spring       S 25.19515 -80.34592
## 2361                 72 spring       L 25.19515 -80.34592
## 2362                 72 spring       L 25.19515 -80.34592
## 2363                 72 spring       L 25.19515 -80.34592
## 2364                 72 spring       L 25.19515 -80.34592
## 2365                 72 spring       S 25.19515 -80.34592
## 2366                 72 spring       L 25.19515 -80.34592
## 2367                 72 spring       S 25.19515 -80.34592
## 2368                 72 spring       S 25.19515 -80.34592
## 2369                 72 spring       S 24.96448 -80.56739
## 2370                 72 spring       L 24.96448 -80.56739
## 2371                 72 spring       S 24.96448 -80.56739
## 2372                 72 spring       L 24.96448 -80.56739
## 2373                 72 spring       L 24.96448 -80.56739
## 2374                 72 spring       L 24.96448 -80.56739
## 2375                 72 spring       S 24.96448 -80.56739
## 2376                 72 spring       S 24.96448 -80.56739
## 2377                 72 spring       S 24.96448 -80.56739
## 2378                 72 spring       S 24.96448 -80.56739
## 2379                 72 spring       S 24.96448 -80.56739
## 2380                 72 spring       L 24.96448 -80.56739
## 2381                 72 spring       S 24.96448 -80.56739
## 2382                 72 spring       S 24.96448 -80.56739
## 2383                 72 spring       S 24.96448 -80.56739
## 2384                 72 spring       S 24.96448 -80.56739
## 2385                 72 spring       S 24.96448 -80.56739
## 2386                 72 spring       S 24.96448 -80.56739
## 2387                 72 spring       S 24.96448 -80.56739
## 2388                 72 spring       L 24.96448 -80.56739
## 2389                 72 spring       S 24.96448 -80.56739
## 2390                 72 spring       L 24.96448 -80.56739
## 2391                 72 spring       L 24.96448 -80.56739
## 2392                 72 spring       S 24.96448 -80.56739
## 2393                 72 spring       S 24.96448 -80.56739
## 2394                 72 spring       L 24.96448 -80.56739
## 2395                 72 spring       L 24.96448 -80.56739
## 2396                 72 spring       S 24.96448 -80.56739
## 2397                 72 spring       S 24.96448 -80.56739
## 2398                 72 spring       S 24.96448 -80.56739
## 2399                 72 spring       S 24.96448 -80.56739
## 2400                 72 spring       L 24.96448 -80.56739
## 2401                 72 spring       S 24.96448 -80.56739
## 2402                 72 spring       S 24.96448 -80.56739
## 2403                 77   fall       L 29.66182 -82.34721
## 2404                 77   fall       L 29.66182 -82.34721
## 2405                 77   fall       L 29.66182 -82.34721
## 2406                 77   fall       L 29.66182 -82.34721
## 2407                 77   fall       L 29.66182 -82.34721
## 2408                 77   fall       L 29.66182 -82.34721
## 2409                 77   fall       L 29.66182 -82.34721
## 2410                 77   fall       L 29.66182 -82.34721
## 2411                 77   fall       L 29.66182 -82.34721
## 2412                 77   fall       L 29.66182 -82.34721
## 2413                 77   fall       L 29.66182 -82.34721
## 2414                 77   fall       L 29.66182 -82.34721
## 2415                 77   fall       S 29.66182 -82.34721
## 2416                 77   fall       S 29.66182 -82.34721
## 2417                 77   fall       L 29.66182 -82.34721
## 2418                 77   fall       L 29.66182 -82.34721
## 2419                 77   fall       L 25.49197 -80.48562
## 2420                 77   fall       L 25.49197 -80.48562
## 2421                 77   fall       L 25.49197 -80.48562
## 2422                 77   fall       L 25.49197 -80.48562
## 2423                 77   fall       L 25.49197 -80.48562
## 2424                 77   fall       L 25.49197 -80.48562
## 2425                 77   fall       L 25.49197 -80.48562
## 2426                 77   fall       L 25.49197 -80.48562
## 2427                 77   fall       L 25.49197 -80.48562
## 2428                 77   fall       L 25.49197 -80.48562
## 2429                 77   fall       L 25.49197 -80.48562
## 2430                 77   fall       L 25.49197 -80.48562
## 2431                 77   fall       L 25.49197 -80.48562
## 2432                 77   fall       L 25.49197 -80.48562
## 2433                 77   fall       L 25.49197 -80.48562
## 2434                 77   fall       S 25.49197 -80.48562
## 2435                 77   fall       L 25.49197 -80.48562
## 2436                 77   fall       L 25.49197 -80.48562
## 2437                 77   fall       L 25.49197 -80.48562
## 2438                 77   fall       L 25.49197 -80.48562
## 2439                 77   fall       L 25.49197 -80.48562
## 2440                 77   fall       L 25.49197 -80.48562
## 2441                 77   fall       L 25.49197 -80.48562
## 2442                 77   fall       L 25.49197 -80.48562
## 2443                 77   fall       L 25.49197 -80.48562
## 2444                 77   fall       L 25.49197 -80.48562
## 2445                 77   fall       L 25.49197 -80.48562
## 2446                 77   fall       L 25.49197 -80.48562
## 2447                 77   fall       L 25.49197 -80.48562
## 2448                 77   fall       L 25.49197 -80.48562
## 2449                 77   fall       L 25.49197 -80.48562
## 2450                 77   fall       L 25.49197 -80.48562
## 2451                 77   fall       L 25.49197 -80.48562
## 2452                 77   fall       L 25.49197 -80.48562
## 2453                 77   fall       L 25.49197 -80.48562
## 2454                 77   fall       L 25.19515 -80.34592
## 2455                 77   fall       L 25.19515 -80.34592
## 2456                 77   fall       S 25.19515 -80.34592
## 2457                 77   fall       L 25.19515 -80.34592
## 2458                 77   fall       L 25.19515 -80.34592
## 2459                 77   fall       L 25.19515 -80.34592
## 2460                 77   fall       S 25.19515 -80.34592
## 2461                 77   fall       L 25.19515 -80.34592
## 2462                 77   fall       L 25.19515 -80.34592
## 2463                 77   fall       L 25.19515 -80.34592
## 2464                 77   fall       L 25.19515 -80.34592
## 2465                 77   fall       L 25.19515 -80.34592
## 2466                 77   fall       L 25.19515 -80.34592
## 2467                 77   fall       L 25.19515 -80.34592
## 2468                 77   fall       L 25.19515 -80.34592
## 2469                 77   fall       L 25.19515 -80.34592
## 2470                 77   fall       L 27.29866 -81.36612
## 2471                 77   fall       L 27.29866 -81.36612
## 2472                 77   fall       L 27.29866 -81.36612
## 2473                 77   fall       L 27.29866 -81.36612
## 2474                 77   fall       L 27.29866 -81.36612
## 2475                 77   fall       L 27.29866 -81.36612
## 2476                 77   fall       L 27.29866 -81.36612
## 2477                 77   fall       L 27.29866 -81.36612
## 2478                 77   fall       L 27.29866 -81.36612
## 2479                 77   fall       L 27.29866 -81.36612
## 2480                 77   fall       L 27.29866 -81.36612
## 2481                 77   fall       L 27.29866 -81.36612
## 2482                 77   fall       L 27.29866 -81.36612
## 2483                 77   fall       L 27.29866 -81.36612
## 2484                 77   fall       L 27.29866 -81.36612
## 2485                 77   fall       L 27.29866 -81.36612
## 2486                 77   fall       L 27.29866 -81.36612
## 2487                 77   fall       L 27.29866 -81.36612
## 2488                 77   fall       L 27.29866 -81.36612
## 2489                 77   fall       L 27.29866 -81.36612
## 2490                 77   fall       L 27.29866 -81.36612
## 2491                 77   fall       L 27.29866 -81.36612
## 2492                 77   fall       L 27.29866 -81.36612
## 2493                 77   fall       L 27.29866 -81.36612
## 2494                 77   fall       L 27.29866 -81.36612
## 2495                 77   fall       L 27.29866 -81.36612
## 2496                 77   fall       L 27.29866 -81.36612
## 2497                 77   fall       L 27.29866 -81.36612
## 2498                 77   fall       L 27.29866 -81.36612
## 2499                 77   fall       L 27.29866 -81.36612
## 2500                 77   fall       L 27.29866 -81.36612
## 2501                 77   fall       L 27.29866 -81.36612
## 2502                 77   fall       L 27.29866 -81.36612
## 2503                 77   fall       L 27.29866 -81.36612
## 2504                 77   fall       L 27.29866 -81.36612
## 2505                 77   fall       L 27.29866 -81.36612
## 2506                 77   fall       L 27.29866 -81.36612
## 2507                 77   fall       L 27.29866 -81.36612
## 2508                 77   fall       L 27.29866 -81.36612
## 2509                 77   fall       L 27.29866 -81.36612
## 2510                 77   fall       L 27.29866 -81.36612
## 2511                 77   fall       L 27.29866 -81.36612
## 2512                 77   fall       L 27.29866 -81.36612
## 2513                 77   fall       L 27.90335 -81.58946
## 2514                 77   fall       L 27.90335 -81.58946
## 2515                 77   fall       L 27.90335 -81.58946
## 2516                 77   fall       L 27.90335 -81.58946
## 2517                 77   fall       L 27.90335 -81.58946
## 2518                 77   fall       L 27.90335 -81.58946
## 2519                 77   fall       L 27.90335 -81.58946
## 2520                 77   fall       L 27.90335 -81.58946
## 2521                 77   fall       L 27.90335 -81.58946
## 2522                 77   fall       L 27.90335 -81.58946
## 2523                 77   fall       L 27.90335 -81.58946
## 2524                 77   fall       L 27.90335 -81.58946
## 2525                 77   fall       L 27.90335 -81.58946
## 2526                 77   fall       L 27.90335 -81.58946
## 2527                 77   fall       L 27.90335 -81.58946
## 2528                 77   fall       L 27.90335 -81.58946
## 2529                 77   fall       L 27.90335 -81.58946
## 2530                 77   fall       L 27.90335 -81.58946
## 2531                 77   fall       L 27.90335 -81.58946
## 2532                 77   fall       S 27.90335 -81.58946
## 2533                 77   fall       L 27.90335 -81.58946
## 2534                 77   fall       L 27.90335 -81.58946
## 2535                 77   fall       L 27.90335 -81.58946
## 2536                 77   fall       L 28.81298 -81.87789
## 2537                 77   fall       L 28.81298 -81.87789
## 2538                 77   fall       L 28.81298 -81.87789
## 2539                 77   fall       L 28.81298 -81.87789
## 2540                 77   fall       L 28.81298 -81.87789
## 2541                 77   fall       S 28.81298 -81.87789
## 2542                 77   fall       L 28.81298 -81.87789
## 2543                 77   fall       L 28.81298 -81.87789
## 2544                 77   fall       L 28.81298 -81.87789
## 2545                 77   fall       L 28.81298 -81.87789
## 2546                 77   fall       L 28.81298 -81.87789
## 2547                 77   fall       L 28.81298 -81.87789
## 2548                 77   fall       L 28.81527 -81.88217
## 2549                 77   fall       L 28.81527 -81.88217
## 2550                 77   fall       L 28.81527 -81.88217
## 2551                 77   fall       L 28.81527 -81.88217
## 2552                 77   fall       L 28.81527 -81.88217
## 2553                 77   fall       L 28.81527 -81.88217
## 2554                 77   fall       L 28.81527 -81.88217
## 2555                 77   fall       L 28.81527 -81.88217
## 2556                 77   fall       L 28.81527 -81.88217
## 2557                 77   fall       L 28.81527 -81.88217
## 2558                 77   fall       L 28.81527 -81.88217
## 2559                 77   fall       L 28.81527 -81.88217
## 2560                 77   fall       L 28.81527 -81.88217
## 2561                 77   fall       L 28.81527 -81.88217
## 2562                 77   fall       L 25.19515 -80.34592
## 2563                 77   fall       L 25.19515 -80.34592
## 2564                 77   fall       L 25.19515 -80.34592
## 2565                 77   fall       L 25.19515 -80.34592
## 2566                 77   fall       L 25.19515 -80.34592
## 2567                 77   fall       L 25.19515 -80.34592
## 2568                 77   fall       S 25.19515 -80.34592
## 2569                 77   fall       L 25.19515 -80.34592
## 2570                 77   fall       L 25.19515 -80.34592
## 2571                 77   fall       L 25.19515 -80.34592
## 2572                 77   fall       L 25.19515 -80.34592
## 2573                 77   fall       L 25.19515 -80.34592
## 2574                 77   fall       L 25.19515 -80.34592
## 2575                 77   fall       S 25.19515 -80.34592
## 2576                 77   fall       L 25.19515 -80.34592
## 2577                 77   fall       L 25.19515 -80.34592
## 2578                 77   fall       S 25.19515 -80.34592
## 2579                 77   fall       S 25.19515 -80.34592
## 2580                 77   fall       L 25.19515 -80.34592
## 2581                 77   fall       L 25.19515 -80.34592
## 2582                 77   fall       S 25.19515 -80.34592
## 2583                 77   fall       L 25.19515 -80.34592
## 2584                 77   fall       L 25.19515 -80.34592
## 2585                 77   fall       S 25.19515 -80.34592
## 2586                 77   fall       L 25.19515 -80.34592
## 2587                 77   fall       L 25.19515 -80.34592
## 2588                 77   fall       L 25.19515 -80.34592
## 2589                 77   fall       L 25.19515 -80.34592
## 2590                 77   fall       L 25.19515 -80.34592
## 2591                 77   fall       S 25.19515 -80.34592
## 2592                 77   fall       L 25.19515 -80.34592
## 2593                 77   fall       L 25.19515 -80.34592
## 2594                 77   fall       L 25.19515 -80.34592
## 2595                 77   fall       L 25.19515 -80.34592
## 2596                 77   fall       L 25.19515 -80.34592
## 2597                 77   fall       L 25.19515 -80.34592
## 2598                 77   fall       L 25.19515 -80.34592
## 2599                 77   fall       L 25.19515 -80.34592
## 2600                 77   fall       L 25.19515 -80.34592
## 2601                 77   fall       L 25.19515 -80.34592
## 2602                 77   fall       S 25.19515 -80.34592
## 2603                 77   fall       L 25.19515 -80.34592
## 2604                 77   fall       L 25.19515 -80.34592
## 2605                 77   fall       S 25.19515 -80.34592
## 2606                 77   fall       L 25.19515 -80.34592
## 2607                 77   fall       L 25.19515 -80.34592
## 2608                 77   fall       L 25.19515 -80.34592
## 2609                 77   fall       L 25.19515 -80.34592
## 2610                 77   fall       L 25.19515 -80.34592
## 2611                 77   fall       L 25.19515 -80.34592
## 2612                 77   fall       L 25.19515 -80.34592
## 2613                 77   fall       L 25.19515 -80.34592
## 2614                 77   fall       L 25.19515 -80.34592
## 2615                 77   fall       L 25.19515 -80.34592
## 2616                 77   fall       L 25.19515 -80.34592
## 2617                 77   fall       L 25.19515 -80.34592
## 2618                 77   fall       L 25.19515 -80.34592
## 2619                 77   fall       L 25.19515 -80.34592
## 2620                 77   fall       L 25.19515 -80.34592
## 2621                 77   fall       L 25.19515 -80.34592
## 2622                 77   fall       L 25.19515 -80.34592
## 2623                 77   fall       L 25.19515 -80.34592
## 2624                 77   fall       L 25.19515 -80.34592
## 2625                 77   fall       L 25.19515 -80.34592
## 2626                 77   fall       L 25.19515 -80.34592
## 2627                 77   fall       L 25.19515 -80.34592
## 2628                 77   fall       L 25.19515 -80.34592
## 2629                 77   fall       L 25.19515 -80.34592
## 2630                 77   fall       L 25.19515 -80.34592
## 2631                 77   fall       L 25.19515 -80.34592
## 2632                 77   fall       L 25.19515 -80.34592
## 2633                 77   fall       L 25.19515 -80.34592
## 2634                 77   fall       S 25.19515 -80.34592
## 2635                 77   fall       S 25.19515 -80.34592
## 2636                 77   fall       L 25.19515 -80.34592
## 2637                 77   fall       S 25.19515 -80.34592
## 2638                 77   fall       L 25.19515 -80.34592
## 2639                 77   fall       L 25.19515 -80.34592
## 2640                 77   fall       S 25.19515 -80.34592
## 2641                 77   fall       S 25.19515 -80.34592
## 2642                 77   fall       S 25.19515 -80.34592
## 2643                 77   fall       S 24.98519 -80.54710
## 2644                 77   fall       S 24.98519 -80.54710
## 2645                 77   fall       L 24.98519 -80.54710
## 2646                 77   fall       L 24.98519 -80.54710
## 2647                 77   fall       L 24.98519 -80.54710
## 2648                 77   fall       L 24.98519 -80.54710
## 2649                 77   fall       S 24.98519 -80.54710
## 2650                 77   fall       S 24.98519 -80.54710
## 2651                 77   fall       S 24.98519 -80.54710
## 2652                 77   fall       L 24.98519 -80.54710
## 2653                 77   fall       L 24.98519 -80.54710
## 2654                 77   fall       L 24.98519 -80.54710
## 2655                 77   fall       S 24.98519 -80.54710
## 2656                 77   fall       L 24.98519 -80.54710
## 2657                 77   fall       L 24.98519 -80.54710
## 2658                 81 winter       L 29.66200 -82.34731
## 2659                 81 winter       L 29.66200 -82.34731
## 2660                 81 winter       L 29.66200 -82.34731
## 2661                 81 winter       L 29.66200 -82.34731
## 2662                 81 winter       L 29.66200 -82.34731
## 2663                 81 winter       L 29.66200 -82.34731
## 2664                 81 winter       L 29.66200 -82.34731
## 2665                 81 winter       L 29.66200 -82.34731
## 2666                 81 winter       L 29.66200 -82.34731
## 2667                 81 winter       L 29.66200 -82.34731
## 2668                 81 winter       L 29.66200 -82.34731
## 2669                 81 winter       L 29.66200 -82.34731
## 2670                 81 winter       L 29.66200 -82.34731
## 2671                 81 winter       L 29.66200 -82.34731
## 2672                 81 winter       L 29.66200 -82.34731
## 2673                 81 winter       L 29.66200 -82.34731
## 2674                 81 winter       L 29.66200 -82.34731
## 2675                 81 winter       L 29.66202 -82.34731
## 2676                 81 winter       L 29.66202 -82.34731
## 2677                 81 winter       L 29.66202 -82.34731
## 2678                 81 winter       L 29.66202 -82.34731
## 2679                 81 winter       L 29.66202 -82.34731
## 2680                 81 winter       L 29.66202 -82.34731
## 2681                 81 winter       L 29.66202 -82.34731
## 2682                 81 winter       L 29.66202 -82.34731
## 2683                 81 winter       L 29.66202 -82.34731
## 2684                 81 winter       L 29.66202 -82.34731
## 2685                 81 winter       L 29.66202 -82.34731
## 2686                 81 winter       L 29.66202 -82.34731
## 2687                 81 winter       L 29.66202 -82.34731
## 2688                 81 winter       L 29.66202 -82.34731
## 2689                 81 winter       L 29.66202 -82.34731
## 2690                 81 winter       L 29.66202 -82.34731
## 2691                 81 winter       L 29.66202 -82.34731
## 2692                 81 winter       L 29.66202 -82.34731
## 2693                 81 winter       L 29.66202 -82.34731
## 2694                 81 winter       L 25.49136 -80.48582
## 2695                 81 winter       L 25.49136 -80.48582
## 2696                 81 winter       L 25.49136 -80.48582
## 2697                 81 winter       L 25.49136 -80.48582
## 2698                 81 winter       L 25.49136 -80.48582
## 2699                 81 winter       L 25.49136 -80.48582
## 2700                 81 winter       L 25.49136 -80.48582
## 2701                 81 winter       L 25.49136 -80.48582
## 2702                 81 winter       L 25.49136 -80.48582
## 2703                 81 winter       L 25.49136 -80.48582
## 2704                 81 winter       L 25.49136 -80.48582
## 2705                 81 winter       L 25.49136 -80.48582
## 2706                 81 winter       L 25.49136 -80.48582
## 2707                 81 winter       L 25.49136 -80.48582
## 2708                 81 winter       L 25.49136 -80.48582
## 2709                 81 winter       L 25.49136 -80.48582
## 2710                 81 winter       L 25.49136 -80.48582
## 2711                 81 winter       L 25.49136 -80.48582
## 2712                 81 winter       L 25.49136 -80.48582
## 2713                 81 winter       L 25.49136 -80.48582
## 2714                 81 winter       L 25.49136 -80.48582
## 2715                 81 winter       L 25.49136 -80.48582
## 2716                 81 winter       L 25.49136 -80.48582
## 2717                 81 winter       L 25.49136 -80.48582
## 2718                 81 winter       L 25.49136 -80.48582
## 2719                 81 winter       L 25.49136 -80.48582
## 2720                 81 winter       L 25.49136 -80.48582
## 2721                 81 winter       L 25.49136 -80.48582
## 2722                 81 winter       S 25.49136 -80.48582
## 2723                 81 winter       S 25.49136 -80.48582
## 2724                 81 winter       S 25.49136 -80.48582
## 2725                 81 winter       L 25.49136 -80.48582
## 2726                 81 winter       L 25.49136 -80.48582
## 2727                 81 winter       S 25.49136 -80.48582
## 2728                 81 winter       S 25.49136 -80.48582
## 2729                 81 winter       S 25.49136 -80.48582
## 2730                 81 winter       S 25.49136 -80.48582
## 2731                 81 winter       L 25.49136 -80.48582
## 2732                 81 winter       L 25.49136 -80.48582
## 2733                 81 winter       L 25.49136 -80.48582
## 2734                 81 winter       L 25.49136 -80.48582
## 2735                 81 winter       L 25.49136 -80.48582
## 2736                 81 winter       L 25.10002 -80.43752
## 2737                 81 winter       L 25.10002 -80.43752
## 2738                 81 winter       L 25.10002 -80.43752
## 2739                 81 winter       L 25.10002 -80.43752
## 2740                 81 winter       L 25.12846 -80.40809
## 2741                 81 winter       L 25.12846 -80.40809
## 2742                 81 winter       L 25.12846 -80.40809
## 2743                 81 winter       L 25.12846 -80.40809
## 2744                 81 winter       L 25.12846 -80.40809
## 2745                 81 winter       L 25.12846 -80.40809
## 2746                 81 winter       L 25.10002 -80.43752
## 2747                 81 winter       L 25.10002 -80.43752
## 2748                 81 winter       L 25.10002 -80.43752
## 2749                 81 winter       L 25.10002 -80.43752
## 2750                 81 winter       L 25.12846 -80.40809
## 2751                 81 winter       L 25.12846 -80.40809
## 2752                 81 winter       L 25.12846 -80.40809
## 2753                 81 winter       L 25.12846 -80.40809
## 2754                 81 winter       L 25.10002 -80.43752
## 2755                 81 winter       L 25.10002 -80.43752
## 2756                 81 winter       L 25.10002 -80.43752
## 2757                 81 winter       L 25.10002 -80.43752
## 2758                 81 winter       L 25.10002 -80.43752
## 2759                 81 winter       L 25.12846 -80.40809
## 2760                 81 winter       L 25.12846 -80.40809
## 2761                 81 winter       L 25.12846 -80.40809
## 2762                 81 winter       L 25.12846 -80.40809
## 2763                 81 winter       L 25.10002 -80.43752
## 2764                 81 winter       L 25.10002 -80.43752
## 2765                 81 winter       L 25.10002 -80.43752
## 2766                 81 winter       L 25.10002 -80.43752
## 2767                 81 winter       L 25.10002 -80.43752
## 2768                 81 winter       L 25.12846 -80.40809
## 2769                 81 winter       L 25.12846 -80.40809
## 2770                 81 winter       L 25.12846 -80.40809
## 2771                 81 winter       L 25.12846 -80.40809
## 2772                 81 winter       L 25.10002 -80.43752
## 2773                 81 winter       L 25.10002 -80.43752
## 2774                 81 winter       L 25.10002 -80.43752
## 2775                 81 winter       L 25.10002 -80.43752
## 2776                 81 winter       L 25.10002 -80.43752
## 2777                 81 winter       L 25.12846 -80.40809
## 2778                 81 winter       L 25.12846 -80.40809
## 2779                 81 winter       L 25.12846 -80.40809
## 2780                 81 winter       S 25.12858 -80.40809
## 2781                 81 winter       S 25.12858 -80.40809
## 2782                 81 winter       S 25.12858 -80.40809
## 2783                 81 winter       S 25.12858 -80.40809
## 2784                 81 winter       S 25.12858 -80.40809
## 2785                 81 winter       S 25.12858 -80.40809
## 2786                 81 winter       S 25.12858 -80.40809
## 2787                 81 winter       S 25.12858 -80.40809
## 2788                 81 winter       S 25.12858 -80.40809
## 2789                 81 winter       S 25.12858 -80.40809
## 2790                 81 winter       S 25.12858 -80.40809
## 2791                 81 winter       S 25.12858 -80.40809
## 2792                 81 winter       S 25.12858 -80.40809
## 2793                 81 winter       S 25.12858 -80.40809
## 2794                 81 winter       S 25.12858 -80.40809
## 2795                 81 winter       S 25.12858 -80.40809
## 2796                 81 winter       S 25.12858 -80.40809
## 2797                 81 winter       S 25.12858 -80.40809
## 2798                 81 winter       S 25.12858 -80.40809
## 2799                 81 winter       S 25.12858 -80.40809
## 2800                 81 winter       S 25.12858 -80.40809
## 2801                 81 winter       S 25.12858 -80.40809
## 2802                 81 winter       S 25.12858 -80.40809
## 2803                 81 winter       L 25.12858 -80.40809
## 2804                 81 winter       S 25.12858 -80.40809
## 2805                 81 winter       S 25.12858 -80.40809
## 2806                 81 winter       S 25.12858 -80.40809
## 2807                 81 winter       S 25.12858 -80.40809
## 2808                 81 winter       L 25.12858 -80.40809
## 2809                 81 winter       S 25.12858 -80.40809
## 2810                 81 winter       L 25.12858 -80.40809
## 2811                 81 winter       L 25.12858 -80.40809
## 2812                 81 winter       L 27.29866 -81.36612
## 2813                 81 winter       L 27.29866 -81.36612
## 2814                 81 winter       L 27.29866 -81.36612
## 2815                 81 winter       L 27.29866 -81.36612
## 2816                 81 winter       L 27.29866 -81.36612
## 2817                 81 winter       L 27.29866 -81.36612
## 2818                 81 winter       L 27.29866 -81.36612
## 2819                 81 winter       L 27.29866 -81.36612
## 2820                 81 winter       L 27.29866 -81.36612
## 2821                 81 winter       L 27.29866 -81.36612
## 2822                 81 winter       L 27.29866 -81.36612
## 2823                 81 winter       L 27.29866 -81.36612
## 2824                 81 winter       L 27.29866 -81.36612
## 2825                 81 winter       L 27.29866 -81.36612
## 2826                 81 winter       L 27.29866 -81.36612
## 2827                 81 winter       L 27.29866 -81.36612
## 2828                 81 winter       L 27.29866 -81.36612
## 2829                 81 winter       L 27.29866 -81.36612
## 2830                 81 winter       L 27.29866 -81.36612
## 2831                 81 winter       L 27.29866 -81.36612
## 2832                 81 winter       L 27.29866 -81.36612
## 2833                 81 winter       L 27.29866 -81.36612
## 2834                 81 winter       L 27.29866 -81.36612
## 2835                 81 winter       L 27.29866 -81.36612
## 2836                 81 winter       L 27.29866 -81.36612
## 2837                 81 winter       L 27.29866 -81.36612
## 2838                 81 winter       L 27.29866 -81.36612
## 2839                 81 winter       L 27.29866 -81.36612
## 2840                 81 winter       L 27.29866 -81.36612
## 2841                 81 winter       L 27.29866 -81.36612
## 2842                 81 winter       L 27.29866 -81.36612
## 2843                 81 winter       L 27.29866 -81.36612
## 2844                 81 winter       L 27.29866 -81.36612
## 2845                 81 winter       L 27.29866 -81.36612
## 2846                 81 winter       L 27.29866 -81.36612
## 2847                 81 winter       L 27.29866 -81.36612
## 2848                 81 winter       L 27.29866 -81.36612
## 2849                 81 winter       L 27.29866 -81.36612
## 2850                 81 winter       L 27.29866 -81.36612
## 2851                 81 winter       L 27.29866 -81.36612
## 2852                 81 winter       L 27.29866 -81.36612
## 2853                 81 winter       L 27.29866 -81.36612
## 2854                 81 winter       L 27.29866 -81.36612
## 2855                 81 winter       L 27.89674 -81.58047
## 2856                 81 winter       L 27.89674 -81.58047
## 2857                 81 winter       L 27.89674 -81.58047
## 2858                 81 winter       L 27.89674 -81.58047
## 2859                 81 winter       L 27.89674 -81.58047
## 2860                 81 winter       L 27.89674 -81.58047
## 2861                 81 winter       L 27.89674 -81.58047
## 2862                 81 winter       L 27.89674 -81.58047
## 2863                 81 winter       L 27.89674 -81.58047
## 2864                 81 winter       L 27.89674 -81.58047
## 2865                 81 winter       L 27.89674 -81.58047
## 2866                 81 winter       L 27.89674 -81.58047
## 2867                 81 winter       L 27.89674 -81.58047
## 2868                 81 winter       L 27.89674 -81.58047
## 2869                 81 winter       L 27.89674 -81.58047
## 2870                 81 winter       L 27.89674 -81.58047
## 2871                 81 winter       L 27.89674 -81.58047
## 2872                 81 winter       L 27.89674 -81.58047
## 2873                 81 winter       L 27.89674 -81.58047
## 2874                 81 winter       L 27.89674 -81.58047
## 2875                 81 winter       L 27.89674 -81.58047
## 2876                 81 winter       L 27.89674 -81.58047
## 2877                 81 winter       L 27.89674 -81.58047
## 2878                 81 winter       L 27.89674 -81.58047
## 2879                 81 winter       L 27.89674 -81.58047
## 2880                 81 winter       L 27.89674 -81.58047
## 2881                 81 winter       L 27.89674 -81.58047
## 2882                 81 winter       L 27.89674 -81.58047
## 2883                 81 winter       L 27.89674 -81.58047
## 2884                 81 winter       L 27.89674 -81.58047
## 2885                 81 winter       L 27.89674 -81.58047
## 2886                 81 winter       L 27.89674 -81.58047
## 2887                 81 winter       L 27.89674 -81.58047
## 2888                 81 winter       S 27.89674 -81.58047
## 2889                 81 winter       L 27.89674 -81.58047
## 2890                 81 winter       L 27.89674 -81.58047
## 2891                 81 winter       L 27.89674 -81.58047
## 2892                 81 winter       L 27.89674 -81.58047
## 2893                 81 winter       L 27.89674 -81.58047
## 2894                 81 winter       L 27.89674 -81.58047
## 2895                 81 winter       L 27.89674 -81.58047
## 2896                 81 winter       L 27.89674 -81.58047
## 2897                 81 winter       L 27.89674 -81.58047
## 2898                 81 winter       L 27.89674 -81.58047
## 2899                 81 winter       L 27.89674 -81.58047
## 2900                 81 winter       L 27.89674 -81.58047
## 2901                 81 winter       L 27.89674 -81.58047
## 2902                 81 winter       L 27.89674 -81.58047
## 2903                 81 winter       L 27.89674 -81.58047
## 2904                 81 winter       L 27.89674 -81.58047
## 2905                 81 winter       L 28.79634 -81.87788
## 2906                 81 winter       L 28.79634 -81.87788
## 2907                 81 winter       L 28.79634 -81.87788
## 2908                 81 winter       L 28.79634 -81.87788
## 2909                 81 winter       L 28.79634 -81.87788
## 2910                 81 winter       L 28.79634 -81.87788
## 2911                 81 winter       L 28.79634 -81.87788
## 2912                 81 winter       L 28.79634 -81.87788
## 2913                 81 winter       L 28.79634 -81.87788
## 2914                 81 winter       L 28.79634 -81.87788
## 2915                 81 winter       L 28.79634 -81.87788
## 2916                 81 winter       L 28.79634 -81.87788
## 2917                 81 winter       L 28.79634 -81.87788
## 2918                 81 winter       L 28.79634 -81.87788
## 2919                 81 winter       S 28.79634 -81.87788
## 2920                 81 winter       L 28.79634 -81.87788
## 2921                 81 winter       L 28.79634 -81.87788
## 2922                 81 winter       L 28.79634 -81.87788
## 2923                 81 winter       L 28.79634 -81.87788
## 2924                 81 winter       L 28.79634 -81.87788
## 2925                 81 winter       L 28.79634 -81.87788
## 2926                 81 winter       L 28.79634 -81.87788
## 2927                 81 winter       L 28.79634 -81.87788
## 2928                 81 winter       L 28.79634 -81.87788
## 2929                 81 winter       L 28.79634 -81.87788
## 2930                 81 winter       L 28.79634 -81.87788
## 2931                 81 winter       S 28.79634 -81.87788
## 2932                 81 winter       L 28.79634 -81.87788
## 2933                 81 winter       L 28.79634 -81.87788
## 2934                 81 winter       L 25.19515 -80.34592
## 2935                 81 winter       L 25.19515 -80.34592
## 2936                 81 winter       L 25.19515 -80.34592
## 2937                 81 winter       L 25.19515 -80.34592
## 2938                 81 winter       L 25.19515 -80.34592
## 2939                 81 winter       L 25.19515 -80.34592
## 2940                 81 winter       L 25.19515 -80.34592
## 2941                 81 winter       L 25.19515 -80.34592
## 2942                 81 winter       L 25.19515 -80.34592
## 2943                 81 winter       L 25.19515 -80.34592
## 2944                 81 winter       L 25.19515 -80.34592
## 2945                 81 winter       L 25.19515 -80.34592
## 2946                 81 winter       L 25.19515 -80.34592
## 2947                 81 winter       L 25.19515 -80.34592
## 2948                 81 winter       L 25.19515 -80.34592
## 2949                 81 winter       L 25.19515 -80.34592
## 2950                 81 winter       L 25.19515 -80.34592
## 2951                 81 winter       L 25.19515 -80.34592
## 2952                 81 winter       L 25.19515 -80.34592
## 2953                 81 winter       L 25.19515 -80.34592
## 2954                 81 winter       L 25.19515 -80.34592
## 2955                 81 winter       L 25.19515 -80.34592
## 2956                 81 winter       L 25.19515 -80.34592
## 2957                 81 winter       L 25.19515 -80.34592
## 2958                 81 winter       L 25.19515 -80.34592
## 2959                 81 winter       L 25.19515 -80.34592
## 2960                 81 winter       L 25.19515 -80.34592
## 2961                 81 winter       L 25.19515 -80.34592
## 2962                 81 winter       L 25.19515 -80.34592
## 2963                 81 winter       L 25.19515 -80.34592
## 2964                 81 winter       L 25.19515 -80.34592
## 2965                 81 winter       L 25.19515 -80.34592
## 2966                 81 winter       L 25.19515 -80.34592
## 2967                 81 winter       L 25.19515 -80.34592
## 2968                 81 winter       L 25.19515 -80.34592
## 2969                 81 winter       L 25.19515 -80.34592
## 2970                 81 winter       L 25.19515 -80.34592
## 2971                 81 winter       L 25.19515 -80.34592
## 2972                 81 winter       L 25.19515 -80.34592
## 2973                 81 winter       L 25.19515 -80.34592
## 2974                 81 winter       L 25.19515 -80.34592
## 2975                 81 winter       L 25.19515 -80.34592
## 2976                 81 winter       L 25.19515 -80.34592
## 2977                 81 winter       L 25.19515 -80.34592
## 2978                 81 winter       L 25.19515 -80.34592
## 2979                 81 winter       L 25.19515 -80.34592
## 2980                 81 winter       L 25.19515 -80.34592
## 2981                 81 winter       L 25.19515 -80.34592
## 2982                 81 winter       L 25.19515 -80.34592
## 2983                 81 winter       L 25.19515 -80.34592
## 2984                 81 winter       L 25.19515 -80.34592
## 2985                 81 winter       L 25.19515 -80.34592
## 2986                 81 winter       L 25.19515 -80.34592
## 2987                 81 winter       L 25.19515 -80.34592
## 2988                 81 winter       L 25.19515 -80.34592
## 2989                 81 winter       L 25.19515 -80.34592
## 2990                 81 winter       L 25.19515 -80.34592
## 2991                 81 winter       L 25.19515 -80.34592
## 2992                 81 winter       L 25.19515 -80.34592
## 2993                 81 winter       L 25.19515 -80.34592
## 2994                 81 winter       L 25.19515 -80.34592
## 2995                 81 winter       L 25.19515 -80.34592
## 2996                 81 winter       L 25.19515 -80.34592
## 2997                 81 winter       L 25.19515 -80.34592
## 2998                 81 winter       L 25.19515 -80.34592
## 2999                 81 winter       L 25.19515 -80.34592
## 3000                 81 winter       L 25.19515 -80.34592
## 3001                 81 winter       L 25.19515 -80.34592
## 3002                 81 winter       L 25.19515 -80.34592
## 3003                 81 winter       L 25.19515 -80.34592
## 3004                 81 winter       L 25.19515 -80.34592
## 3005                 81 winter       L 25.19515 -80.34592
## 3006                 81 winter       L 25.19515 -80.34592
## 3007                 81 winter       L 25.19515 -80.34592
## 3008                 81 winter       L 25.19515 -80.34592
## 3009                 81 winter       L 25.19515 -80.34592
## 3010                 81 winter       L 25.19515 -80.34592
## 3011                 81 winter       L 25.19515 -80.34592
## 3012                 81 winter       L 25.19515 -80.34592
## 3013                 81 winter       L 25.19515 -80.34592
## 3014                 81 winter       L 25.19515 -80.34592
## 3015                 81 winter       L 25.19515 -80.34592
## 3016                 81 winter       L 25.19515 -80.34592
## 3017                 81 winter       L 25.19515 -80.34592
## 3018                 81 winter       L 25.19515 -80.34592
## 3019                 81 winter       L 25.19515 -80.34592
## 3020                 81 winter       L 25.19515 -80.34592
## 3021                 81 winter       L 25.19515 -80.34592
## 3022                 81 winter       L 25.19515 -80.34592
## 3023                 81 winter       L 25.19515 -80.34592
## 3024                 81 winter       L 25.19515 -80.34592
## 3025                 81 winter       L 25.19515 -80.34592
## 3026                 81 winter       L 25.19515 -80.34592
## 3027                 81 winter       L 25.19515 -80.34592
## 3028                 81 winter       L 25.19515 -80.34592
## 3029                 81 winter       S 25.19515 -80.34592
## 3030                 81 winter       L 25.19515 -80.34592
## 3031                 81 winter       L 25.19515 -80.34592
## 3032                 81 winter       L 25.19515 -80.34592
## 3033                 81 winter       L 25.19515 -80.34592
## 3034                 81 winter       L 25.19515 -80.34592
## 3035                 81 winter       L 25.19515 -80.34592
## 3036                 81 winter       L 25.19515 -80.34592
## 3037                 81 winter       L 25.19515 -80.34592
## 3038                 81 winter       L 25.19515 -80.34592
## 3039                 81 winter       L 25.19515 -80.34592
## 3040                 81 winter       L 25.19515 -80.34592
## 3041                 81 winter       L 25.19515 -80.34592
## 3042                 81 winter       L 25.19515 -80.34592
## 3043                 81 winter       L 25.19515 -80.34592
## 3044                 81 winter       L 25.19515 -80.34592
## 3045                 81 winter       L 25.19515 -80.34592
## 3046                 81 winter       L 25.19515 -80.34592
## 3047                 81 winter       L 25.19515 -80.34592
## 3048                 81 winter       L 25.19515 -80.34592
## 3049                 81 winter       L 25.19515 -80.34592
## 3050                 81 winter       L 25.19515 -80.34592
## 3051                 81 winter       L 25.19515 -80.34592
## 3052                 81 winter       L 25.19515 -80.34592
## 3053                 81 winter       L 25.19515 -80.34592
## 3054                 81 winter       L 25.19515 -80.34592
## 3055                 81 winter       L 25.19515 -80.34592
## 3056                 81 winter       L 25.19515 -80.34592
## 3057                 81 winter       L 25.19515 -80.34592
## 3058                 81 winter       L 25.19515 -80.34592
## 3059                 81 winter       L 25.19515 -80.34592
## 3060                 81 winter       L 25.19515 -80.34592
## 3061                 81 winter       L 25.19515 -80.34592
## 3062                 81 winter       L 25.19515 -80.34592
## 3063                 81 winter       L 25.19515 -80.34592
## 3064                 81 winter       L 25.19515 -80.34592
## 3065                 81 winter       L 25.19515 -80.34592
## 3066                 81 winter       L 25.19515 -80.34592
## 3067                 81 winter       L 25.19515 -80.34592
## 3068                 81 winter       L 25.19515 -80.34592
## 3069                 81 winter       L 25.19515 -80.34592
## 3070                 81 winter       L 25.19515 -80.34592
## 3071                 81 winter       L 25.19515 -80.34592
## 3072                 81 winter       L 25.19515 -80.34592
## 3073                 81 winter       L 25.19515 -80.34592
## 3074                 81 winter       L 25.19515 -80.34592
## 3075                 81 winter       L 25.19515 -80.34592
## 3076                 81 winter       S 25.19515 -80.34592
## 3077                 81 winter       L 25.19515 -80.34592
## 3078                 81 winter       S 25.19515 -80.34592
## 3079                 81 winter       L 25.19515 -80.34592
## 3080                 81 winter       S 25.19515 -80.34592
## 3081                 81 winter       S 25.19515 -80.34592
## 3082                 81 winter       S 25.19515 -80.34592
## 3083                 81 winter       S 25.19515 -80.34592
## 3084                 81 winter       L 25.19515 -80.34592
## 3085                 81 winter       S 25.19515 -80.34592
## 3086                 81 winter       S 25.19515 -80.34592
## 3087                 81 winter       S 25.19515 -80.34592
## 3088                 81 winter       S 25.19515 -80.34592
## 3089                 81 winter       S 25.19515 -80.34592
## 3090                 81 winter       S 25.19515 -80.34592
## 3091                 81 winter       L 25.19515 -80.34592
## 3092                 81 winter       L 25.19515 -80.34592
## 3093                 81 winter       L 25.19515 -80.34592
## 3094                 81 winter       L 25.19515 -80.34592
## 3095                 81 winter       L 25.19515 -80.34592
## 3096                 81 winter       S 25.19515 -80.34592
## 3097                 81 winter       S 25.19515 -80.34592
## 3098                 81 winter       S 25.19515 -80.34592
## 3099                 81 winter       S 25.19515 -80.34592
## 3100                 81 winter       L 25.19515 -80.34592
## 3101                 81 winter       L 25.19515 -80.34592
## 3102                 81 winter       L 25.19515 -80.34592
## 3103                 81 winter       L 25.19515 -80.34592
## 3104                 81 winter       S 25.19515 -80.34592
## 3105                 81 winter       S 25.19515 -80.34592
## 3106                 81 winter       S 25.19515 -80.34592
## 3107                 81 winter       S 25.19515 -80.34592
## 3108                 81 winter       S 25.19515 -80.34592
## 3109                 81 winter       S 25.19515 -80.34592
## 3110                 81 winter       S 25.19515 -80.34592
## 3111                 81 winter       S 25.19515 -80.34592
## 3112                 81 winter       S 25.19515 -80.34592
## 3113                 81 winter       S 25.19515 -80.34592
## 3114                 81 winter       S 25.19515 -80.34592
## 3115                 81 winter       S 25.19515 -80.34592
## 3116                 81 winter       S 25.19515 -80.34592
## 3117                 81 winter       S 25.19515 -80.34592
## 3118                 81 winter       S 25.19515 -80.34592
## 3119                 81 winter       S 25.19515 -80.34592
## 3120                 81 winter       S 25.19515 -80.34592
## 3121                 81 winter       S 25.19515 -80.34592
## 3122                 81 winter       S 25.19515 -80.34592
## 3123                 81 winter       S 25.19515 -80.34592
## 3124                 81 winter       S 25.19515 -80.34592
## 3125                 81 winter       S 25.19515 -80.34592
## 3126                 81 winter       S 25.19515 -80.34592
## 3127                 81 winter       S 25.19515 -80.34592
## 3128                 81 winter       S 25.19515 -80.34592
## 3129                 81 winter       S 25.19515 -80.34592
## 3130                 81 winter       S 25.19515 -80.34592
## 3131                 81 winter       L 25.19515 -80.34592
## 3132                 81 winter       S 25.19515 -80.34592
## 3133                 81 winter       S 25.19515 -80.34592
## 3134                 81 winter       S 25.19515 -80.34592
## 3135                 81 winter       S 25.19515 -80.34592
## 3136                 81 winter       L 25.19515 -80.34592
## 3137                 81 winter       S 25.19515 -80.34592
## 3138                 81 winter       S 25.19515 -80.34592
## 3139                 81 winter       S 25.19515 -80.34592
## 3140                 81 winter       S 25.19515 -80.34592
## 3141                 81 winter       S 25.19515 -80.34592
## 3142                 81 winter       S 25.19515 -80.34592
## 3143                 81 winter       L 25.19515 -80.34592
## 3144                 81 winter       S 25.19515 -80.34592
## 3145                 81 winter       S 25.19515 -80.34592
## 3146                 81 winter       L 25.19515 -80.34592
## 3147                 81 winter       S 25.19515 -80.34592
## 3148                 81 winter       L 25.19515 -80.34592
## 3149                 81 winter       S 25.19515 -80.34592
## 3150                 81 winter       L 25.19515 -80.34592
## 3151                 81 winter       L 25.19515 -80.34592
## 3152                 81 winter       L 25.19515 -80.34592
## 3153                 81 winter       L 25.19515 -80.34592
## 3154                 81 winter       L 25.19515 -80.34592
## 3155                 81 winter       L 24.97357 -80.55392
## 3156                 81 winter       L 24.97357 -80.55392
## 3157                 81 winter       L 24.97357 -80.55392
## 3158                 81 winter       L 24.97357 -80.55392
## 3159                 81 winter       L 24.97357 -80.55392
## 3160                 81 winter       L 24.96424 -80.56733
## 3161                 81 winter       L 24.96424 -80.56733
## 3162                 81 winter       L 24.96424 -80.56733
## 3163                 81 winter       L 24.96424 -80.56733
## 3164                 81 winter       L 24.96424 -80.56733
## 3165                 81 winter       L 24.97357 -80.55392
## 3166                 81 winter       L 24.97357 -80.55392
## 3167                 81 winter       L 24.97357 -80.55392
## 3168                 81 winter       L 24.97357 -80.55392
## 3169                 81 winter       L 24.97357 -80.55392
## 3170                 81 winter       L 24.96424 -80.56733
## 3171                 81 winter       L 24.96424 -80.56733
## 3172                 81 winter       L 24.96424 -80.56733
## 3173                 81 winter       L 24.96424 -80.56733
## 3174                 81 winter       L 24.96424 -80.56733
## 3175                 81 winter       L 24.97357 -80.55392
## 3176                 81 winter       L 24.97357 -80.55392
## 3177                 81 winter       L 24.97357 -80.55392
## 3178                 81 winter       L 24.97357 -80.55392
## 3179                 81 winter       L 24.97357 -80.55392
## 3180                 81 winter       L 24.96424 -80.56733
## 3181                 81 winter       L 24.96424 -80.56733
## 3182                 81 winter       L 24.96424 -80.56733
## 3183                 81 winter       L 24.96424 -80.56733
## 3184                 81 winter       L 24.97357 -80.55392
## 3185                 81 winter       L 24.97357 -80.55392
## 3186                 81 winter       L 24.97357 -80.55392
## 3187                 81 winter       L 24.96424 -80.56733
## 3188                 81 winter       L 24.96424 -80.56733
## 3189                 81 winter       L 24.96424 -80.56733
## 3190                 81 winter       L 24.96424 -80.56733
## 3191                 81 winter       L 24.96424 -80.56733
## 3192                 81 winter       L 24.96424 -80.56733
## 3193                 81 winter       L 24.96424 -80.56733
## 3194                 81 winter       L 24.96424 -80.56733
## 3195                 81 winter       L 24.96424 -80.56733
## 3196                 81 winter       L 24.96424 -80.56733
## 3197                 81 winter       L 24.96424 -80.56733
## 3198                 81 winter       L 24.96424 -80.56733
## 3199                 81 winter       L 24.96424 -80.56733
## 3200                 81 winter       L 24.96424 -80.56733
## 3201                 81 winter       L 24.96424 -80.56733
## 3202                 81 winter       L 24.96424 -80.56733
## 3203                 81 winter       L 24.96424 -80.56733
## 3204                 81 winter       L 24.96424 -80.56733
## 3205                 81 winter       L 24.96424 -80.56733
## 3206                 81 winter       S 24.96424 -80.56733
## 3207                 81 winter       S 24.96424 -80.56733
## 3208                 81 winter       S 24.96424 -80.56733
## 3209                 81 winter       S 24.96424 -80.56733
## 3210                 81 winter       S 24.96424 -80.56733
## 3211                 81 winter       L 24.96424 -80.56733
## 3212                 81 winter       L 24.96424 -80.56733
## 3213                 81 winter       S 24.96424 -80.56733
## 3214                 81 winter       S 24.96424 -80.56733
## 3215                 81 winter       S 24.96424 -80.56733
## 3216                 81 winter       L 24.96424 -80.56733
## 3217                 81 winter       S 24.96424 -80.56733
## 3218                 81 winter       S 24.96424 -80.56733
## 3219                 81 winter       S 24.96424 -80.56733
## 3220                 81 winter       S 24.96424 -80.56733
## 3221                 81 winter       S 24.96424 -80.56733
## 3222                 81 winter       S 24.96424 -80.56733
## 3223                 81 winter       L 24.96424 -80.56733
## 3224                 81 winter       L 24.97357 -80.55392
## 3225                 81 winter       L 24.97357 -80.55392
## 3226                 77   fall       L 24.96424 -80.56733
## 3227                 77   fall       L 24.96424 -80.56733
## 3228                 77   fall       L 24.96424 -80.56733
## 3229                 77   fall       L 24.96424 -80.56733
## 3230                 77   fall       L 24.96424 -80.56733
## 3231                 77   fall       L 24.96424 -80.56733
## 3232                 77   fall       L 24.96424 -80.56733
## 3233                 77   fall       L 24.96424 -80.56733
## 3234                 77   fall       S 24.96424 -80.56733
## 3235                 77   fall       L 24.96424 -80.56733
## 3236                 77   fall       L 24.96424 -80.56733
## 3237                 77   fall       L 24.96424 -80.56733
## 3238                 77   fall       L 24.96424 -80.56733
## 3239                 77   fall       L 24.96424 -80.56733
## 3240                 77   fall       S 24.96424 -80.56733
## 3241                 77   fall       S 24.96424 -80.56733
## 3242                 77   fall       L 24.96424 -80.56733
## 3243                 77   fall       L 24.96424 -80.56733
## 3244                 77   fall       S 24.96424 -80.56733
## 3245                 77   fall       L 24.96424 -80.56733
## 3246                 77   fall       L 24.96424 -80.56733
## 3247                 77   fall       L 24.96424 -80.56733
## 3248                 77   fall       L 24.96424 -80.56733
## 3249                 77   fall       L 24.96424 -80.56733
## 3250                 77   fall       L 24.96424 -80.56733
## 3251                 77   fall       L 25.49136 -80.48582
## 3252                 77   fall       L 25.49136 -80.48582
## 3253                 77   fall       L 25.49136 -80.48582
## 3254                 77   fall       L 25.49136 -80.48582
## 3255                 77   fall       L 25.49136 -80.48582
## 3256                 77   fall       L 25.49136 -80.48582
## 3257                 77   fall       L 25.49136 -80.48582
## 3258                 77   fall       L 25.49136 -80.48582
## 3259                 77   fall       L 25.49136 -80.48582
## 3260                 77   fall       S 25.49136 -80.48582
## 3261                 77   fall       L 25.49136 -80.48582
## 3262                 77   fall       L 25.49136 -80.48582
## 3263                 77   fall       L 25.19515 -80.34592
## 3264                 77   fall       L 25.19515 -80.34592
## 3265                 77   fall       L 25.19515 -80.34592
## 3266                 77   fall       L 25.19515 -80.34592
## 3267                 77   fall       L 25.19515 -80.34592
## 3268                 77   fall       L 25.19515 -80.34592
## 3269                 77   fall       L 25.19515 -80.34592
## 3270                 77   fall       L 25.19515 -80.34592
## 3271                 77   fall       L 25.19515 -80.34592
## 3272                 77   fall       L 25.19515 -80.34592
## 3273                 77   fall       L 25.19515 -80.34592
## 3274                 77   fall       L 25.19515 -80.34592
## 3275                 77   fall       S 25.19515 -80.34592
## 3276                 77   fall       L 25.19515 -80.34592
## 3277                 77   fall       L 25.19515 -80.34592
## 3278                 77   fall       L 25.19515 -80.34592
## 3279                 77   fall       L 25.19515 -80.34592
## 3280                 77   fall       L 25.19515 -80.34592
## 3281                 77   fall       L 25.19515 -80.34592
## 3282                 77   fall       L 25.19515 -80.34592
## 3283                 77   fall       L 25.19515 -80.34592
## 3284                 77   fall       L 25.19515 -80.34592
## 3285                 77   fall       L 25.19515 -80.34592
## 3286                 77   fall       L 25.19515 -80.34592
## 3287                 77   fall       L 25.19515 -80.34592
## 3288                 77   fall       L 25.19515 -80.34592
## 3289                 77   fall       L 27.29863 -81.36615
## 3290                 77   fall       L 27.29863 -81.36615
## 3291                 77   fall       L 27.29863 -81.36615
## 3292                 77   fall       L 27.29863 -81.36615
## 3293                 77   fall       L 27.29863 -81.36615
## 3294                 77   fall       L 27.29863 -81.36615
## 3295                 77   fall       L 27.29863 -81.36615
## 3296                 77   fall       S 27.29863 -81.36615
## 3297                 77   fall       L 27.29863 -81.36615
## 3298                 77   fall       L 27.29863 -81.36615
## 3299                 77   fall       L 27.29863 -81.36615
## 3300                 77   fall       L 27.29863 -81.36615
## 3301                 77   fall       L 27.29863 -81.36615
## 3302                 77   fall       L 27.29863 -81.36615
## 3303                 77   fall       L 27.29863 -81.36615
## 3304                 77   fall       L 27.29863 -81.36615
## 3305                 77   fall       L 27.29863 -81.36615
## 3306                 77   fall       L 27.29863 -81.36615
## 3307                 77   fall       L 27.29863 -81.36615
## 3308                 77   fall       L 27.29863 -81.36615
## 3309                 77   fall       L 27.29863 -81.36615
## 3310                 77   fall       L 25.19515 -80.34592
## 3311                 77   fall       L 25.19515 -80.34592
## 3312                 77   fall       L 25.19515 -80.34592
## 3313                 77   fall       L 25.19515 -80.34592
## 3314                 43   fall       L 25.55090 -80.42110
## 3315                 43   fall       S 25.55090 -80.42110
## 3316                 43   fall       S 25.55090 -80.42110
## 3317                 43   fall       S 25.55090 -80.42110
## 3318                 77   fall       L 25.12846 -80.40809
## 3319                 77   fall       L 25.12846 -80.40809
## 3320                 77   fall       L 25.12846 -80.40809
## 3321                 77   fall       L 25.12846 -80.40809
## 3322                 77   fall       L 25.12846 -80.40809
## 3323                 77   fall       L 25.12846 -80.40809
## 3324                 77   fall       L 25.12846 -80.40809
## 3325                 77   fall       L 25.19515 -80.34592
## 3326                 77   fall       L 25.19515 -80.34592
## 3327                 77   fall       L 25.19515 -80.34592
## 3328                 77   fall       S 25.19515 -80.34592
## 3329                 77   fall       L 25.19515 -80.34592
## 3330                 77   fall       S 25.19515 -80.34592
## 3331                 77   fall       L 25.12848 -80.40754
## 3332                 77   fall       L 25.12848 -80.40754
## 3333                 77   fall       L 25.12848 -80.40754
## 3334                 77   fall       L 25.19515 -80.34592
## 3335                 77   fall       L 25.19515 -80.34592
## 3336                 77   fall       L 25.19515 -80.34592
## 3337                 77   fall       L 25.19515 -80.34592
## 3338                 77   fall       L 25.19515 -80.34592
## 3339                 77   fall       L 25.19515 -80.34592
## 3340                 72 spring       L 27.89664 -81.58064
## 3341                 72 spring       S 27.89664 -81.58064
## 3342                 72 spring       L 27.89664 -81.58064
## 3343                 72 spring       L 27.89664 -81.58064
## 3344                 72 spring       L 27.89664 -81.58064
## 3345                 72 spring       L 27.89664 -81.58064
## 3346                 72 spring       L 27.89664 -81.58064
## 3347                 72 spring       L 27.89664 -81.58064
## 3348                 72 spring       L 27.89664 -81.58064
## 3349                 72 spring       L 27.89664 -81.58064
## 3350                 72 spring       L 27.89664 -81.58064
## 3351                 72 spring       L 27.89664 -81.58064
## 3352                 72 spring       L 27.89664 -81.58064
## 3353                 72 spring       L 27.89664 -81.58064
## 3354                 72 spring       L 27.89664 -81.58064
## 3355                 72 spring       L 27.89664 -81.58064
## 3356                 72 spring       L 27.89664 -81.58064
## 3357                 72 spring       L 27.89664 -81.58064
## 3358                 72 spring       L 27.89664 -81.58064
## 3359                 72 spring       L 27.89664 -81.58064
## 3360                 72 spring       L 27.89664 -81.58064
## 3361                 72 spring       L 27.89664 -81.58064
## 3362                 72 spring       L 27.89664 -81.58064
## 3363                 72 spring       L 27.89664 -81.58064
## 3364                 72 spring       L 27.89664 -81.58064
## 3365                 72 spring       L 27.89664 -81.58064
## 3366                 72 spring       L 27.89664 -81.58064
## 3367                 72 spring       L 27.89664 -81.58064
## 3368                 72 spring       L 27.89664 -81.58064
## 3369                 72 spring       L 27.89664 -81.58064
## 3370                 72 spring       L 27.89664 -81.58064
## 3371                 72 spring       L 27.89664 -81.58064
## 3372                 72 spring       L 27.89664 -81.58064
## 3373                 72 spring       L 27.89664 -81.58064
## 3374                 72 spring       L 27.89664 -81.58064
## 3375                 72 spring       L 27.89664 -81.58064
## 3376                 72 spring       L 27.89664 -81.58064
## 3377                 72 spring       L 27.89664 -81.58064
## 3378                 72 spring       L 27.89664 -81.58064
## 3379                 72 spring       L 27.89664 -81.58064
## 3380                 72 spring       L 27.89664 -81.58064
## 3381                 72 spring       L 27.89664 -81.58064
## 3382                 72 spring       L 27.89664 -81.58064
## 3383                 72 spring       L 27.89664 -81.58064
## 3384                 72 spring       L 27.89664 -81.58064
## 3385                 72 spring       L 27.89664 -81.58064
## 3386                 72 spring       L 27.89664 -81.58064
## 3387                 72 spring       L 27.89664 -81.58064
## 3388                 72 spring       L 27.89664 -81.58064
## 3389                 72 spring       L 27.89664 -81.58064
## 3390                 72 spring       L 27.89664 -81.58064
## 3391                 72 spring       L 27.89664 -81.58064
## 3392                 72 spring       L 27.89664 -81.58064
## 3393                 72 spring       L 27.89664 -81.58064
## 3394                 72 spring       L 28.79642 -81.87792
## 3395                 72 spring       L 28.79642 -81.87792
## 3396                 72 spring       L 28.79642 -81.87792
## 3397                 72 spring       L 28.79642 -81.87792
## 3398                 72 spring       L 28.79642 -81.87792
## 3399                 72 spring       L 28.79642 -81.87792
## 3400                 72 spring       L 28.79642 -81.87792
## 3401                 72 spring       L 28.79642 -81.87792
## 3402                 72 spring       L 28.79642 -81.87792
## 3403                 72 spring       L 28.79642 -81.87792
## 3404                 72 spring       L 28.79642 -81.87792
## 3405                 72 spring       L 28.79642 -81.87792
## 3406                 72 spring       L 28.79642 -81.87792
## 3407                 72 spring       L 28.79642 -81.87792
## 3408                 72 spring       L 28.79642 -81.87792
## 3409                 72 spring       L 28.79642 -81.87792
## 3410                 72 spring       L 28.79642 -81.87792
## 3411                 72 spring       L 28.79642 -81.87792
## 3412                 72 spring       L 28.79642 -81.87792
## 3413                 72 spring       L 28.79642 -81.87792
## 3414                 72 spring       L 28.79642 -81.87792
## 3415                 72 spring       L 28.79642 -81.87792
## 3416                 72 spring       L 28.79642 -81.87792
## 3417                 72 spring       L 28.79642 -81.87792
## 3418                 72 spring       L 28.79642 -81.87792
## 3419                 72 spring       L 28.79642 -81.87792
## 3420                 72 spring       L 28.79642 -81.87792
## 3421                 72 spring       L 28.79642 -81.87792
## 3422                 72 spring       L 28.79642 -81.87792
## 3423                 72 spring       L 28.79642 -81.87792
## 3424                 72 spring       L 28.79642 -81.87792
## 3425                 72 spring       L 28.79642 -81.87792
## 3426                 72 spring       L 28.79642 -81.87792
## 3427                 72 spring       L 28.79642 -81.87792
## 3428                 72 spring       L 28.79642 -81.87792
## 3429                 72 spring       L 28.79642 -81.87792
## 3430                 72 spring       L 28.79642 -81.87792
## 3431                 72 spring       L 28.79642 -81.87792
## 3432                 72 spring       L 28.79642 -81.87792
## 3433                 72 spring       L 28.79642 -81.87792
## 3434                 72 spring       L 28.79642 -81.87792
## 3435                 72 spring       L 28.79642 -81.87792
## 3436                 72 spring       L 28.79642 -81.87792
## 3437                 72 spring       L 28.79642 -81.87792
## 3438                 72 spring       L 28.79642 -81.87792
## 3439                 72 spring       L 28.79642 -81.87792
## 3440                 72 spring       L 28.79642 -81.87792
## 3441                 72 spring       L 28.79642 -81.87792
## 3442                 72 spring       L 28.79642 -81.87792
## 3443                 72 spring       L 28.79642 -81.87792
## 3444                 72 spring       L 28.79642 -81.87792
## 3445                 72 spring       S 28.79642 -81.87792
## 3446                 72 spring       L 28.79642 -81.87792
## 3447                 72 spring       L 28.79642 -81.87792
## 3448                 72 spring       L 25.49116 -80.48571
## 3449                 72 spring       L 25.49116 -80.48571
## 3450                 72 spring       L 25.49116 -80.48571
## 3451                 72 spring       L 25.49116 -80.48571
## 3452                 72 spring       L 25.49116 -80.48571
## 3453                 72 spring       L 25.49116 -80.48571
## 3454                 72 spring       L 25.49116 -80.48571
## 3455                 72 spring       L 25.49116 -80.48571
## 3456                 72 spring       L 25.49116 -80.48571
## 3457                 72 spring       L 25.49116 -80.48571
## 3458                 72 spring       L 25.49116 -80.48571
## 3459                 72 spring       L 25.49116 -80.48571
## 3460                 72 spring       L 25.49116 -80.48571
## 3461                 72 spring       L 25.49116 -80.48571
## 3462                 72 spring       L 25.49116 -80.48571
## 3463                 72 spring       L 25.49116 -80.48571
## 3464                 72 spring       L 25.49116 -80.48571
## 3465                 72 spring       L 25.49116 -80.48571
## 3466                 72 spring       L 25.49116 -80.48571
## 3467                 72 spring       L 25.49116 -80.48571
## 3468                 72 spring       L 25.49116 -80.48571
## 3469                 72 spring       L 25.49116 -80.48571
## 3470                 72 spring       L 25.49116 -80.48571
## 3471                 72 spring       L 25.49116 -80.48571
## 3472                 72 spring       L 25.49116 -80.48571
## 3473                 72 spring       L 25.49116 -80.48571
## 3474                 72 spring       L 25.49116 -80.48571
## 3475                 72 spring       L 25.49116 -80.48571
## 3476                 72 spring       L 25.49116 -80.48571
## 3477                 72 spring       L 25.49116 -80.48571
## 3478                 72 spring       S 25.49116 -80.48571
## 3479                 72 spring       L 25.49116 -80.48571
## 3480                 72 spring       S 25.49116 -80.48571
## 3481                 72 spring       L 25.49116 -80.48571
## 3482                 72 spring       L 25.49116 -80.48571
## 3483                 72 spring       L 25.49116 -80.48571
## 3484                 72 spring       L 25.49116 -80.48571
## 3485                 72 spring       S 25.49116 -80.48571
##                             diapause field_date_collected
## 1                                              04.28.2013
## 2                                              04.28.2013
## 3                                              04.28.2013
## 4                                              04.28.2013
## 5                                              04.28.2013
## 6                                              04.28.2013
## 7                                              04.28.2013
## 8                                              04.28.2013
## 9                                              04.29.2013
## 10                                             04.29.2013
## 11                                             04.29.2013
## 12                                             04.29.2013
## 13                                             04.29.2013
## 14                                             04.29.2013
## 15                                             04.29.2013
## 16                                             04.29.2013
## 17                                             04.29.2013
## 18                                             04.29.2013
## 19                                             04.29.2013
## 20                                             04.29.2013
## 21                                             04.29.2013
## 22                                             04.29.2013
## 23                                             04.29.2013
## 24                                             04.29.2013
## 25                                             04.29.2013
## 26                                             04.29.2013
## 27                                             04.29.2013
## 28                                             04.29.2013
## 29                                             04.29.2013
## 30                                             04.29.2013
## 31                                             04.29.2013
## 32                                             04.29.2013
## 33                                             04.29.2013
## 34                                             04.29.2013
## 35                                             04.29.2013
## 36                                             04.29.2013
## 37                                             04.29.2013
## 38                                             04.29.2013
## 39                                             04.29.2013
## 40                                             04.29.2013
## 41                                             04.29.2013
## 42                                             04.29.2013
## 43                                             04.29.2013
## 44                                             04.29.2013
## 45                                             04.29.2013
## 46                                             04.29.2013
## 47                                             04.29.2013
## 48                                             04.29.2013
## 49                                             04.29.2013
## 50                                             04.29.2013
## 51                                             04.29.2013
## 52                                             04.29.2013
## 53                                             04.29.2013
## 54                                             04.29.2013
## 55                                             04.29.2013
## 56                                             04.29.2013
## 57                                             04.29.2013
## 58                                             04.29.2013
## 59                                             04.29.2013
## 60                                             04.29.2013
## 61                                             04.29.2013
## 62                                             04.29.2013
## 63                                             04.29.2013
## 64                                             04.29.2013
## 65                                             04.29.2013
## 66                                             04.29.2013
## 67                                             04.29.2013
## 68                                             04.29.2013
## 69                                             04.29.2013
## 70                                             04.29.2013
## 71                                             04.29.2013
## 72                                             04.29.2013
## 73                                             04.29.2013
## 74                                             04.29.2013
## 75                                             04.29.2013
## 76                                             05.06.2013
## 77                                             05.06.2013
## 78                                             05.06.2013
## 79                                             05.06.2013
## 80                                             05.06.2013
## 81                                             05.06.2013
## 82                                             05.06.2013
## 83                                             05.06.2013
## 84                                             05.06.2013
## 85                                             05.06.2013
## 86                                             05.06.2013
## 87                                             05.06.2013
## 88                                             05.06.2013
## 89                                             05.06.2013
## 90                                             05.06.2013
## 91                                             05.06.2013
## 92                                             05.06.2013
## 93                                             05.06.2013
## 94                                             05.06.2013
## 95                                             05.06.2013
## 96                                             05.06.2013
## 97                                             05.06.2013
## 98                                             05.06.2013
## 99                                             05.06.2013
## 100                                            05.06.2013
## 101                                            05.06.2013
## 102                                            05.06.2013
## 103                                            05.06.2013
## 104                                            05.06.2013
## 105                                            05.06.2013
## 106                                            05.06.2013
## 107                                            05.06.2013
## 108                                            05.06.2013
## 109                                            05.06.2013
## 110                                            05.06.2013
## 111                                            05.06.2013
## 112                                            05.06.2013
## 113                                            05.06.2013
## 114           diapausing aggregation           04.26.2013
## 115           diapausing aggregation           04.26.2013
## 116           diapausing aggregation           04.26.2013
## 117           diapausing aggregation           04.26.2013
## 118           diapausing aggregation           04.26.2013
## 119           diapausing aggregation           04.26.2013
## 120           diapausing aggregation           04.26.2013
## 121           diapausing aggregation           04.26.2013
## 122           diapausing aggregation           04.26.2013
## 123           diapausing aggregation           04.26.2013
## 124           diapausing aggregation           04.26.2013
## 125           diapausing aggregation           04.26.2013
## 126           diapausing aggregation           04.26.2013
## 127           diapausing aggregation           04.26.2013
## 128           diapausing aggregation           04.26.2013
## 129           diapausing aggregation           04.26.2013
## 130           diapausing aggregation           04.26.2013
## 131           diapausing aggregation           04.26.2013
## 132           diapausing aggregation           04.26.2013
## 133           diapausing aggregation           04.26.2013
## 134           diapausing aggregation           04.26.2013
## 135           diapausing aggregation           04.26.2013
## 136           diapausing aggregation           04.26.2013
## 137           diapausing aggregation           04.26.2013
## 138           diapausing aggregation           04.26.2013
## 139           diapausing aggregation           04.26.2013
## 140                                            04.25.2013
## 141                                            04.25.2013
## 142                                            04.25.2013
## 143                                            04.25.2013
## 144                                            04.25.2013
## 145                                            04.25.2013
## 146                                            04.25.2013
## 147                                            04.25.2013
## 148                                            04.25.2013
## 149                                            04.25.2013
## 150                                            04.25.2013
## 151                                            04.25.2013
## 152                                            04.25.2013
## 153                                            05.05.2013
## 154                                            05.05.2013
## 155                                            05.05.2013
## 156                                            05.05.2013
## 157                                            05.05.2013
## 158                                            05.05.2013
## 159                                            05.05.2013
## 160                                            05.05.2013
## 161                                            05.05.2013
## 162                                            05.05.2013
## 163                                            05.05.2013
## 164                                            05.05.2013
## 165                                            05.05.2013
## 166                                            05.05.2013
## 167                                            05.05.2013
## 168                                            05.05.2013
## 169                                            05.05.2013
## 170                                            05.05.2013
## 171                                            05.05.2013
## 172                                            05.05.2013
## 173                                            05.05.2013
## 174                                            05.05.2013
## 175                                            05.05.2013
## 176                                            05.05.2013
## 177                                            05.05.2013
## 178                                            05.05.2013
## 179                                            05.05.2013
## 180                                            05.05.2013
## 181                                            05.05.2013
## 182                                            05.05.2013
## 183                                            05.05.2013
## 184                                            05.05.2013
## 185                                            05.05.2013
## 186                                            05.05.2013
## 187                                            05.05.2013
## 188                                            05.05.2013
## 189                                            05.05.2013
## 190                                            05.05.2013
## 191                                            05.05.2013
## 192                                            05.05.2013
## 193                                            05.05.2013
## 194                                            05.05.2013
## 195                                            05.05.2013
## 196                                            05.05.2013
## 197                                            05.05.2013
## 198                                            05.05.2013
## 199                                            05.05.2013
## 200                                            05.05.2013
## 201                                            04.30.2013
## 202                                            04.30.2013
## 203                                            04.30.2013
## 204                                            04.30.2013
## 205                                            04.30.2013
## 206                                            04.30.2013
## 207                                            04.30.2013
## 208                                            04.30.2013
## 209                                            04.30.2013
## 210                                            04.30.2013
## 211                                            04.30.2013
## 212                                            04.30.2013
## 213                                            04.30.2013
## 214                                            04.30.2013
## 215                                            04.30.2013
## 216                                            04.30.2013
## 217                                            04.30.2013
## 218                                            04.30.2013
## 219                                            04.30.2013
## 220                                            04.30.2013
## 221                                            04.30.2013
## 222                                            04.30.2013
## 223                                            04.30.2013
## 224                                            04.30.2013
## 225                                            04.30.2013
## 226                                            04.30.2013
## 227                                            04.30.2013
## 228                                            04.30.2013
## 229                                            04.30.2013
## 230                                            05.01.2013
## 231                                            05.01.2013
## 232                                            05.01.2013
## 233                                            05.01.2013
## 234                                            05.01.2013
## 235                                            05.01.2013
## 236                                            05.01.2013
## 237                                            05.01.2013
## 238                                            05.01.2013
## 239                                            05.01.2013
## 240                                            05.01.2013
## 241                                            05.01.2013
## 242                                            05.01.2013
## 243                                            05.01.2013
## 244                                            05.01.2013
## 245                                            05.01.2013
## 246                                            05.01.2013
## 247                                            05.01.2013
## 248                                            05.01.2013
## 249                                            05.01.2013
## 250                                            05.01.2013
## 251                                            05.01.2013
## 252                                            05.01.2013
## 253                                            05.01.2013
## 254                                            05.01.2013
## 255                                            05.01.2013
## 256                                            05.01.2013
## 257                                            05.01.2013
## 258                                            05.01.2013
## 259                                            05.01.2013
## 260                                            05.01.2013
## 261                                            05.02.2013
## 262                                            05.02.2013
## 263                                            05.02.2013
## 264                                            05.02.2013
## 265                                            05.02.2013
## 266                                            05.02.2013
## 267                                            05.02.2013
## 268                                            05.02.2013
## 269                                            05.02.2013
## 270                                            05.02.2013
## 271                                            05.02.2013
## 272                                            05.02.2013
## 273                                            05.02.2013
## 274                                            05.02.2013
## 275                                            05.02.2013
## 276                                            05.02.2013
## 277                                            05.02.2013
## 278                                            05.02.2013
## 279                                            05.02.2013
## 280                                            05.02.2013
## 281                                            05.02.2013
## 282                                            05.02.2013
## 283                                            05.02.2013
## 284                                            05.02.2013
## 285                                            05.02.2013
## 286                                            05.04.2013
## 287                                            05.04.2013
## 288                                            05.04.2013
## 289                                            05.04.2013
## 290                                            05.04.2013
## 291                                            05.04.2013
## 292                                            05.04.2013
## 293                                            05.04.2013
## 294                                            05.04.2013
## 295                                            05.04.2013
## 296                                            05.04.2013
## 297                                            05.04.2013
## 298                                            05.04.2013
## 299                                            05.04.2013
## 300                                            05.04.2013
## 301                                            05.04.2013
## 302                                            05.04.2013
## 303                                            05.04.2013
## 304                                            05.04.2013
## 305                                            05.04.2013
## 306                                            05.04.2013
## 307                                            05.04.2013
## 308                                            05.04.2013
## 309                                            05.04.2013
## 310                                            05.04.2013
## 311                                            05.04.2013
## 312                                            05.04.2013
## 313                                            05.04.2013
## 314                                            05.04.2013
## 315                                            05.04.2013
## 316                                            05.04.2013
## 317                                            05.04.2013
## 318                                            05.04.2013
## 319                                            05.04.2013
## 320                                            05.04.2013
## 321                                            05.04.2013
## 322                                                      
## 323                                                      
## 324                                                      
## 325                                                      
## 326                                                      
## 327                                                      
## 328                                                      
## 329                                                      
## 330                                                      
## 331                                                      
## 332                                                      
## 333                                                      
## 334                                                      
## 335                                                      
## 336                                                      
## 337                                                      
## 338                                                      
## 339                                                      
## 340                                                      
## 341                                                      
## 342                                                      
## 343                                                      
## 344                                                      
## 345                                                      
## 346                                                      
## 347                                                      
## 348                                                      
## 349                                                      
## 350                                                      
## 351                                                      
## 352                                                      
## 353                                                      
## 354                                                      
## 355                                                      
## 356                                                      
## 357                                                      
## 358                                                      
## 359                                                      
## 360                                                      
## 361                                                      
## 362                                                      
## 363                                                      
## 364                                                      
## 365                                                      
## 366                                                      
## 367                                                      
## 368                                                      
## 369                                                      
## 370                                                      
## 371                                                      
## 372                                                      
## 373                                                      
## 374                                                      
## 375                                                      
## 376                                                      
## 377                                                      
## 378                                                      
## 379                                                      
## 380                                                      
## 381                                                      
## 382                                                      
## 383                                                      
## 384                                                      
## 385                                                      
## 386                                                      
## 387                                                      
## 388                                                      
## 389                                                      
## 390                                                      
## 391                                                      
## 392                                                      
## 393                                                      
## 394                                                      
## 395                                                      
## 396                                                      
## 397                                                      
## 398                                                      
## 399                                                      
## 400                                                      
## 401                                                      
## 402                                                      
## 403                                                      
## 404                                                      
## 405                                                      
## 406                                                      
## 407                                                      
## 408                                                      
## 409                                                      
## 410                                                      
## 411                                                      
## 412                                                      
## 413                                                      
## 414                                                      
## 415                                                      
## 416                                                      
## 417                                                      
## 418                                                      
## 419                                                      
## 420                                                      
## 421                                                      
## 422                                                      
## 423                                                      
## 424                                                      
## 425                                                      
## 426                                                      
## 427                                                      
## 428                                                      
## 429                                                      
## 430                                                      
## 431                                                      
## 432                                                      
## 433                                                      
## 434                                                      
## 435                                                      
## 436                                                      
## 437                                                      
## 438                                                      
## 439                                                      
## 440                                                      
## 441                                                      
## 442                                                      
## 443                                                      
## 444                                                      
## 445                                                      
## 446                                                      
## 447                                                      
## 448                                                      
## 449                                                      
## 450                                                      
## 451                                                      
## 452                                                      
## 453                                                      
## 454                                                      
## 455                                                      
## 456                                                      
## 457                                                      
## 458                                                      
## 459                                                      
## 460                                                      
## 461                                                      
## 462                                                      
## 463                                                      
## 464                                                      
## 465                                                      
## 466                                                      
## 467                                                      
## 468                                                      
## 469                                                      
## 470                                                      
## 471                                                      
## 472                                                      
## 473                                                      
## 474                                                      
## 475                                                      
## 476                                                      
## 477                                                      
## 478                                                      
## 479                                                      
## 480                                                      
## 481                                                      
## 482                                                      
## 483                                                      
## 484                                                      
## 485                                                      
## 486                                                      
## 487                                                      
## 488                                                      
## 489                                                      
## 490                                                      
## 491                                                      
## 492                                                      
## 493                                                      
## 494                                                      
## 495                                                      
## 496                                                      
## 497                                                      
## 498                                                      
## 499                                                      
## 500                                                      
## 501                                                      
## 502                                                      
## 503                                                      
## 504                                                      
## 505                                                      
## 506                                                      
## 507                                                      
## 508                                                      
## 509                                                      
## 510                                                      
## 511                                                      
## 512                                                      
## 513                                                      
## 514                                                      
## 515                                                      
## 516                                                      
## 517                                                      
## 518                                                      
## 519                                                      
## 520                                                      
## 521                                                      
## 522                                                      
## 523                                                      
## 524                                                      
## 525                                                      
## 526                                                      
## 527                                                      
## 528                                                      
## 529                                                      
## 530                                                      
## 531                                                      
## 532                                                      
## 533                                                      
## 534                                                      
## 535                                                      
## 536                                                      
## 537                                                      
## 538                                                      
## 539                                                      
## 540                                                      
## 541                                                      
## 542                                                      
## 543                                                      
## 544                                                      
## 545                                                      
## 546                                                      
## 547                                                      
## 548                                                      
## 549                                                      
## 550                                                      
## 551                                                      
## 552                                                      
## 553                                                      
## 554                                                      
## 555                                                      
## 556                                                      
## 557                                                      
## 558                                                      
## 559                                                      
## 560                                                      
## 561                                                      
## 562                                                      
## 563                                                      
## 564                                                      
## 565                                                      
## 566                                                      
## 567                                                      
## 568                                                      
## 569                                                      
## 570                                                      
## 571                                                      
## 572                                                      
## 573                                                      
## 574                                                      
## 575                                                      
## 576                                                      
## 577                                                      
## 578                                                      
## 579                                                      
## 580                                                      
## 581                                                      
## 582                                                      
## 583                                                      
## 584                                                      
## 585                                                      
## 586                                                      
## 587                                                      
## 588                                                      
## 589                                                      
## 590                                                      
## 591                                                      
## 592                                                      
## 593                                                      
## 594                                                      
## 595                                                      
## 596                                                      
## 597                                                      
## 598                                                      
## 599                                                      
## 600                                                      
## 601                                                      
## 602                                                      
## 603                                                      
## 604                                                      
## 605                                                      
## 606                                                      
## 607                                                      
## 608                                                      
## 609                                                      
## 610                                                      
## 611                                                      
## 612                                                      
## 613                                                      
## 614                                                      
## 615                                                      
## 616                                                      
## 617                                                      
## 618                                                      
## 619                                                      
## 620                                                      
## 621                                                      
## 622                                                      
## 623                                                      
## 624                                                      
## 625                                                      
## 626                                                      
## 627                                                      
## 628                                                      
## 629                                                      
## 630                                                      
## 631                                                      
## 632                                                      
## 633                                                      
## 634                                                      
## 635                                                      
## 636                                                      
## 637                                                      
## 638                                                      
## 639                                                      
## 640                                                      
## 641                                                      
## 642                                                      
## 643                                                      
## 644                                                      
## 645                                                      
## 646                                                      
## 647                                                      
## 648                                                      
## 649                                                      
## 650                                                      
## 651                                                      
## 652                                                      
## 653                                                      
## 654                                                      
## 655                                                      
## 656                                                      
## 657                                                      
## 658                                                      
## 659                                                      
## 660                                                      
## 661                                                      
## 662                                                      
## 663                                                      
## 664                                                      
## 665                                                      
## 666                                                      
## 667                                                      
## 668                                                      
## 669                                                      
## 670                                                      
## 671                                                      
## 672                                                      
## 673                                                      
## 674                                                      
## 675                                                      
## 676                                                      
## 677                                                      
## 678                                                      
## 679                                                      
## 680                                                      
## 681                                                      
## 682                                                      
## 683                                                      
## 684                                                      
## 685                                                      
## 686                                                      
## 687                                                      
## 688                                                      
## 689                                                      
## 690                                                      
## 691                                                      
## 692                                                      
## 693                                                      
## 694                                                      
## 695                                                      
## 696                                                      
## 697                                                      
## 698                                                      
## 699                                                      
## 700                                                      
## 701                                                      
## 702                                                      
## 703                                                      
## 704                                                      
## 705                                                      
## 706                                                      
## 707                                                      
## 708                                                      
## 709                                                      
## 710                                                      
## 711                                                      
## 712                                                      
## 713                                                      
## 714                                                      
## 715                                                      
## 716                                                      
## 717                                                      
## 718                                                      
## 719                                                      
## 720                                                      
## 721                                                      
## 722                                                      
## 723                                                      
## 724                                                      
## 725                                                      
## 726                                                      
## 727                                                      
## 728                                                      
## 729                                                      
## 730                                                      
## 731                                                      
## 732                                                      
## 733                                                      
## 734                                                      
## 735                                                      
## 736                                                      
## 737                                                      
## 738                                                      
## 739                                                      
## 740                                                      
## 741                                                      
## 742                                                      
## 743                                                      
## 744                                                      
## 745                                                      
## 746                                                      
## 747                                                      
## 748                                                      
## 749                                                      
## 750                                                      
## 751                                                      
## 752                                                      
## 753                                                      
## 754                                                      
## 755                                                      
## 756                                                      
## 757                                                      
## 758                                                      
## 759                                                      
## 760                                                      
## 761                                                      
## 762                                                      
## 763                                                      
## 764                                                      
## 765                                                      
## 766                                                      
## 767                                                      
## 768                                                      
## 769                                                      
## 770                                                      
## 771                                                      
## 772                                                      
## 773                                                      
## 774                                                      
## 775                                                      
## 776                                                      
## 777                                                      
## 778                                                      
## 779                                                      
## 780                                                      
## 781                                                      
## 782                                                      
## 783                                                      
## 784                                                      
## 785                                                      
## 786                                                      
## 787                                                      
## 788                                                      
## 789                                                      
## 790                                                      
## 791                                                      
## 792                                                      
## 793                                                      
## 794                                                      
## 795                                                      
## 796                                                      
## 797                                                      
## 798                                                      
## 799                                                      
## 800                                                      
## 801                                                      
## 802                                                      
## 803                                                      
## 804                                                      
## 805                                                      
## 806                                                      
## 807                                                      
## 808                                                      
## 809                                                      
## 810                                                      
## 811                                                      
## 812                                                      
## 813                                                      
## 814                                                      
## 815                                                      
## 816                                                      
## 817                                                      
## 818                                                      
## 819                                                      
## 820                                                      
## 821                                                      
## 822                                                      
## 823                                                      
## 824                                                      
## 825                                                      
## 826                                                      
## 827                                                      
## 828                                                      
## 829                                                      
## 830                                                      
## 831                                                      
## 832                                                      
## 833                                                      
## 834                                                      
## 835                                                      
## 836                                                      
## 837                                                      
## 838                                                      
## 839                                                      
## 840                                                      
## 841                                                      
## 842                                                      
## 843                                                      
## 844                                                      
## 845                                                      
## 846                                                      
## 847                                                      
## 848                                                      
## 849                                                      
## 850                                                      
## 851                                                      
## 852                                                      
## 853                                                      
## 854                                                      
## 855                                                      
## 856                                                      
## 857                                                      
## 858                                                      
## 859                                                      
## 860                                                      
## 861                                                      
## 862                                                      
## 863                                                      
## 864                                                      
## 865                                                      
## 866                                                      
## 867                                                      
## 868                                                      
## 869                                                      
## 870                                                      
## 871                                                      
## 872                                                      
## 873                                                      
## 874                                                      
## 875                                                      
## 876                                                      
## 877                                                      
## 878                                                      
## 879                                                      
## 880                                                      
## 881                                                      
## 882                                                      
## 883                                                      
## 884                                                      
## 885                                                      
## 886                                                      
## 887                                                      
## 888                                                      
## 889                                                      
## 890                                                      
## 891                                                      
## 892                                                      
## 893                                                      
## 894                                                      
## 895                                                      
## 896                                                      
## 897                                                      
## 898                                                      
## 899                                                      
## 900                                                      
## 901                                                      
## 902                                                      
## 903                                                      
## 904                                                      
## 905                                                      
## 906                                                      
## 907                                                      
## 908                                                      
## 909                                                      
## 910                                                      
## 911                                                      
## 912                                                      
## 913                                                      
## 914                                                      
## 915                                                      
## 916                                                      
## 917                                                      
## 918                                                      
## 919                                                      
## 920                                                      
## 921                                                      
## 922                                                      
## 923                                                      
## 924                                                      
## 925                                                      
## 926                                                      
## 927                                                      
## 928                                                      
## 929                                                      
## 930                                                      
## 931                                                      
## 932                                                      
## 933                                                      
## 934                                                      
## 935                                                      
## 936                                                      
## 937                                                      
## 938                                                      
## 939                                                      
## 940                                                      
## 941                                                      
## 942                                                      
## 943                                                      
## 944                                                      
## 945                                                      
## 946                                                      
## 947                                                      
## 948                                                      
## 949                                                      
## 950                                                      
## 951                                                      
## 952                                                      
## 953                                                      
## 954                                                      
## 955                                                      
## 956                                                      
## 957                                                      
## 958                                                      
## 959                                                      
## 960                                                      
## 961                                                      
## 962                                                      
## 963                                                      
## 964                                                      
## 965                                                      
## 966                                                      
## 967                                                      
## 968                                                      
## 969                                                      
## 970                                                      
## 971                                                      
## 972                                                      
## 973                                                      
## 974                                                      
## 975                                                      
## 976                                                      
## 977                                                      
## 978                                                      
## 979                                                      
## 980                                                      
## 981                                                      
## 982                                                      
## 983                                                      
## 984                                                      
## 985                                                      
## 986                                                      
## 987                                                      
## 988                                                      
## 989                                                      
## 990                                                      
## 991                                                      
## 992                                                      
## 993                                                      
## 994                                                      
## 995                                                      
## 996                                                      
## 997                                                      
## 998                                                      
## 999                                                      
## 1000                                                     
## 1001                                                     
## 1002                                                     
## 1003                                                     
## 1004                                                     
## 1005                                                     
## 1006                                                     
## 1007                                                     
## 1008                                                     
## 1009                                                     
## 1010                                                     
## 1011                                                     
## 1012                                                     
## 1013                                                     
## 1014                                                     
## 1015                                                     
## 1016                                                     
## 1017                                                     
## 1018                                                     
## 1019                                                     
## 1020                                                     
## 1021                                                     
## 1022                                                     
## 1023                                                     
## 1024                                                     
## 1025                                                     
## 1026                                                     
## 1027                                                     
## 1028                                                     
## 1029                                                     
## 1030                                                     
## 1031                                                     
## 1032                                                     
## 1033                                                     
## 1034                                                     
## 1035                                                     
## 1036                                                     
## 1037                                                     
## 1038                                                     
## 1039                                                     
## 1040                                                     
## 1041                                                     
## 1042                                                     
## 1043                                                     
## 1044                                                     
## 1045                                                     
## 1046                                                     
## 1047                                                     
## 1048                                                     
## 1049                                                     
## 1050                                                     
## 1051                                                     
## 1052                                                     
## 1053                                                     
## 1054                                                     
## 1055                                                     
## 1056                                                     
## 1057                                                     
## 1058                                                     
## 1059                                                     
## 1060                                                     
## 1061                                                     
## 1062                                                     
## 1063                                                     
## 1064                  non-diapausing           12.18.2016
## 1065                  non-diapausing           12.18.2016
## 1066                  non-diapausing           12.18.2016
## 1067                  non-diapausing           12.18.2016
## 1068                  non-diapausing           12.18.2016
## 1069                  non-diapausing           12.18.2016
## 1070                  non-diapausing           12.18.2016
## 1071                  non-diapausing           12.18.2016
## 1072                  non-diapausing           12.18.2016
## 1073                  non-diapausing           12.18.2016
## 1074                  non-diapausing           12.18.2016
## 1075                  non-diapausing           12.18.2016
## 1076                  non-diapausing           12.18.2016
## 1077                  non-diapausing           12.18.2016
## 1078                  non-diapausing           12.18.2016
## 1079                  non-diapausing           12.18.2016
## 1080                  non-diapausing           12.18.2016
## 1081                  non-diapausing           12.18.2016
## 1082                  non-diapausing           12.18.2016
## 1083                  non-diapausing           12.18.2016
## 1084                  non-diapausing           12.18.2016
## 1085                  non-diapausing           12.18.2016
## 1086                  non-diapausing           12.18.2016
## 1087                  non-diapausing           12.18.2016
## 1088                  non-diapausing           12.18.2016
## 1089                  non-diapausing           12.18.2016
## 1090                  non-diapausing           12.18.2016
## 1091                  non-diapausing           12.18.2016
## 1092                  non-diapausing           12.18.2016
## 1093                  non-diapausing           12.18.2016
## 1094                  non-diapausing           12.18.2016
## 1095                  non-diapausing           12.18.2016
## 1096                  non-diapausing           12.18.2016
## 1097                  non-diapausing           12.18.2016
## 1098                  non-diapausing           12.18.2016
## 1099                  non-diapausing           12.18.2016
## 1100                  non-diapausing           12.18.2016
## 1101                  non-diapausing           12.18.2016
## 1102                  non-diapausing           12.18.2016
## 1103                  non-diapausing           12.18.2016
## 1104                  non-diapausing           12.18.2016
## 1105                  non-diapausing           12.18.2016
## 1106                  non-diapausing           12.18.2016
## 1107                  non-diapausing           12.18.2016
## 1108                  non-diapausing           12.18.2016
## 1109                  non-diapausing           12.18.2016
## 1110                  non-diapausing           12.18.2016
## 1111                  non-diapausing           12.18.2016
## 1112                  non-diapausing           12.18.2016
## 1113                  non-diapausing           12.18.2016
## 1114                  non-diapausing           12.18.2016
## 1115                  non-diapausing           12.18.2016
## 1116                  non-diapausing           12.18.2016
## 1117                  non-diapausing           12.18.2016
## 1118                  non-diapausing           12.18.2016
## 1119                  non-diapausing           12.18.2016
## 1120                  non-diapausing           12.18.2016
## 1121                                           12.15.2016
## 1122                                           12.15.2016
## 1123                                           12.15.2016
## 1124                                           12.15.2016
## 1125                                           12.15.2016
## 1126                                           12.15.2016
## 1127                                           12.15.2016
## 1128                                           12.15.2016
## 1129                                           12.15.2016
## 1130                                           12.15.2016
## 1131                                           12.15.2016
## 1132                                           12.15.2016
## 1133                                           12.15.2016
## 1134                                           12.14.2016
## 1135                                           12.14.2016
## 1136                                           12.14.2016
## 1137                                           12.14.2016
## 1138                                           12.14.2016
## 1139                                           12.14.2016
## 1140                                           12.14.2016
## 1141                                           12.14.2016
## 1142                                           12.14.2016
## 1143                                           12.14.2016
## 1144                                           12.14.2016
## 1145                                           12.14.2016
## 1146                                           12.14.2016
## 1147                                           12.14.2016
## 1148                                           12.14.2016
## 1149                                           12.14.2016
## 1150                                           12.14.2016
## 1151                                           12.14.2016
## 1152                                           12.14.2016
## 1153                                           12.14.2016
## 1154                                           12.14.2016
## 1155                                           12.14.2016
## 1156                                           12.14.2016
## 1157                                           12.14.2016
## 1158                                           12.14.2016
## 1159                                           12.14.2016
## 1160                                           12.14.2016
## 1161                                           12.14.2016
## 1162                                           12.14.2016
## 1163                                           12.14.2016
## 1164                                           12.14.2016
## 1165                                           12.14.2016
## 1166                                           12.14.2016
## 1167                                           12.14.2016
## 1168                                           12.14.2016
## 1169                                           12.14.2016
## 1170                                           12.14.2016
## 1171                                           12.14.2016
## 1172                                           12.14.2016
## 1173                                           12.14.2016
## 1174                                           12.14.2016
## 1175                                           12.14.2016
## 1176                                           12.14.2016
## 1177                                           12.14.2016
## 1178                                           12.14.2016
## 1179                                           12.14.2016
## 1180                                           12.14.2016
## 1181                                           12.14.2016
## 1182                                           12.14.2016
## 1183                                           12.14.2016
## 1184                                           12.14.2016
## 1185                                           12.14.2016
## 1186                                           12.14.2016
## 1187                  non-diapausing           12.14.2016
## 1188                  non-diapausing           12.14.2016
## 1189                  non-diapausing           12.14.2016
## 1190                  non-diapausing           12.14.2016
## 1191                  non-diapausing           12.14.2016
## 1192                  non-diapausing           12.14.2016
## 1193                  non-diapausing           12.14.2016
## 1194                  non-diapausing           12.14.2016
## 1195                  non-diapausing           12.14.2016
## 1196                  non-diapausing           12.14.2016
## 1197                  non-diapausing           12.14.2016
## 1198                                           12.16.2016
## 1199                                           12.16.2016
## 1200                                           12.16.2016
## 1201                                           12.16.2016
## 1202                                           12.16.2016
## 1203                                           12.16.2016
## 1204                                           12.16.2016
## 1205                                           12.16.2016
## 1206                                           12.16.2016
## 1207                                           12.16.2016
## 1208                                           12.16.2016
## 1209                                           12.16.2016
## 1210                                           12.16.2016
## 1211                                           12.16.2016
## 1212                                           12.16.2016
## 1213                                           12.13.2016
## 1214                                           12.13.2016
## 1215                                           12.13.2016
## 1216                                           12.13.2016
## 1217                                           12.13.2016
## 1218                                           12.13.2016
## 1219                                           12.13.2016
## 1220                                           12.13.2016
## 1221                                           12.13.2016
## 1222                                           12.13.2016
## 1223                                           12.13.2016
## 1224                                           12.13.2016
## 1225                                           12.13.2016
## 1226                                           12.13.2016
## 1227                                           12.13.2016
## 1228                                           12.13.2016
## 1229                                           12.13.2016
## 1230                                           12.13.2016
## 1231                                           12.13.2016
## 1232                                           12.13.2016
## 1233                  non-diapausing           12.13.2016
## 1234                  non-diapausing           12.13.2016
## 1235                  non-diapausing           12.13.2016
## 1236                  non-diapausing           12.13.2016
## 1237                  non-diapausing           12.13.2016
## 1238                  non-diapausing           12.13.2016
## 1239                  non-diapausing           12.13.2016
## 1240                  non-diapausing           12.13.2016
## 1241                  non-diapausing           12.13.2016
## 1242                  non-diapausing           12.13.2016
## 1243                  non-diapausing           12.13.2016
## 1244                  non-diapausing           12.13.2016
## 1245                  non-diapausing           12.13.2016
## 1246                  non-diapausing           12.13.2016
## 1247                  non-diapausing           12.13.2016
## 1248                  non-diapausing           12.13.2016
## 1249                  non-diapausing           12.13.2016
## 1250                  non-diapausing           12.13.2016
## 1251                  non-diapausing           12.13.2016
## 1252                  non-diapausing           12.13.2016
## 1253                  non-diapausing           12.13.2016
## 1254                  non-diapausing           12.13.2016
## 1255                  non-diapausing           12.13.2016
## 1256                  non-diapausing           12.13.2016
## 1257                  non-diapausing           12.13.2016
## 1258                  non-diapausing           12.13.2016
## 1259                  non-diapausing           12.13.2016
## 1260                  non-diapausing           12.13.2016
## 1261                  non-diapausing           12.13.2016
## 1262                  non-diapausing           12.13.2016
## 1263                  non-diapausing           12.13.2016
## 1264                  non-diapausing           12.13.2016
## 1265                  non-diapausing           12.13.2016
## 1266                  non-diapausing           12.13.2016
## 1267                  non-diapausing           12.13.2016
## 1268                  non-diapausing           12.13.2016
## 1269                  non-diapausing           12.13.2016
## 1270                  non-diapausing           12.13.2016
## 1271                  non-diapausing           12.13.2016
## 1272                  non-diapausing           12.13.2016
## 1273                  non-diapausing           12.13.2016
## 1274                  non-diapausing           12.13.2016
## 1275                  non-diapausing           12.13.2016
## 1276                  non-diapausing           12.13.2016
## 1277                  non-diapausing           12.13.2016
## 1278                  non-diapausing           12.14.2016
## 1279                  non-diapausing           12.14.2016
## 1280                  non-diapausing           12.14.2016
## 1281                  non-diapausing           12.14.2016
## 1282                  non-diapausing           12.14.2016
## 1283                  non-diapausing           12.14.2016
## 1284                  non-diapausing           12.14.2016
## 1285                  non-diapausing           12.14.2016
## 1286                  non-diapausing           12.14.2016
## 1287                  non-diapausing           12.14.2016
## 1288                  non-diapausing           12.14.2016
## 1289                  non-diapausing           12.14.2016
## 1290                  non-diapausing           12.14.2016
## 1291                  non-diapausing           12.14.2016
## 1292                  non-diapausing           12.14.2016
## 1293                  non-diapausing           12.14.2016
## 1294                  non-diapausing           12.14.2016
## 1295                  non-diapausing           12.14.2016
## 1296                  non-diapausing           12.14.2016
## 1297                  non-diapausing           12.14.2016
## 1298                  non-diapausing           12.14.2016
## 1299                  non-diapausing           12.14.2016
## 1300                  non-diapausing           12.14.2016
## 1301                  non-diapausing           12.14.2016
## 1302                  non-diapausing           12.14.2016
## 1303                  non-diapausing           12.14.2016
## 1304                  non-diapausing           12.14.2016
## 1305                  non-diapausing           12.14.2016
## 1306                  non-diapausing           12.14.2016
## 1307                  non-diapausing           12.14.2016
## 1308                  non-diapausing           12.14.2016
## 1309                  non-diapausing           12.14.2016
## 1310                  non-diapausing           12.14.2016
## 1311                  non-diapausing           12.14.2016
## 1312                  non-diapausing           12.14.2016
## 1313                  non-diapausing           12.14.2016
## 1314                  non-diapausing           12.14.2016
## 1315                  non-diapausing            8.25.2017
## 1316                  non-diapausing            8.25.2017
## 1317                  non-diapausing            8.25.2017
## 1318                  non-diapausing            8.25.2017
## 1319                  non-diapausing            8.25.2017
## 1320                  non-diapausing            8.25.2017
## 1321                  non-diapausing            8.25.2017
## 1322                  non-diapausing            8.25.2017
## 1323                  non-diapausing            8.25.2017
## 1324                  non-diapausing            8.25.2017
## 1325                  non-diapausing            8.25.2017
## 1326                  non-diapausing            8.25.2017
## 1327                  non-diapausing            8.25.2017
## 1328                  non-diapausing            8.25.2017
## 1329                  non-diapausing            8.25.2017
## 1330                  non-diapausing            8.25.2017
## 1331                  non-diapausing            8.25.2017
## 1332                  non-diapausing            8.25.2017
## 1333                  non-diapausing            8.25.2017
## 1334                  non-diapausing            8.25.2017
## 1335                  non-diapausing            8.25.2017
## 1336                  non-diapausing            8.25.2017
## 1337                  non-diapausing            8.25.2017
## 1338                  non-diapausing            8.25.2017
## 1339                  non-diapausing            8.25.2017
## 1340                  non-diapausing            8.25.2017
## 1341                  non-diapausing            8.25.2017
## 1342                  non-diapausing            8.25.2017
## 1343                  non-diapausing            8.25.2017
## 1344                  non-diapausing            8.25.2017
## 1345                  non-diapausing            8.25.2017
## 1346                  non-diapausing            8.25.2017
## 1347                  non-diapausing            8.25.2017
## 1348                  non-diapausing            8.25.2017
## 1349                  non-diapausing            8.25.2017
## 1350                  non-diapausing            8.25.2017
## 1351                  non-diapausing            8.25.2017
## 1352                  non-diapausing            8.25.2017
## 1353                  non-diapausing            8.25.2017
## 1354                  non-diapausing            8.25.2017
## 1355                  non-diapausing            8.25.2017
## 1356                  non-diapausing            8.25.2017
## 1357                  non-diapausing            8.25.2017
## 1358                  non-diapausing            8.25.2017
## 1359                  non-diapausing            8.25.2017
## 1360                  non-diapausing            8.25.2017
## 1361                  non-diapausing            8.25.2017
## 1362                  non-diapausing            8.25.2017
## 1363                  non-diapausing            8.25.2017
## 1364                  non-diapausing            8.25.2017
## 1365                  non-diapausing            8.25.2017
## 1366                  non-diapausing            8.25.2017
## 1367                  non-diapausing            8.25.2017
## 1368                  non-diapausing            8.25.2017
## 1369                  non-diapausing            8.25.2017
## 1370                  non-diapausing            8.25.2017
## 1371                  non-diapausing            8.25.2017
## 1372                  non-diapausing            8.25.2017
## 1373                  non-diapausing            8.25.2017
## 1374                  non-diapausing            8.25.2017
## 1375         diapausing aggregration           08.15.2017
## 1376         diapausing aggregration           08.15.2017
## 1377         diapausing aggregration           08.15.2017
## 1378         diapausing aggregration           08.15.2017
## 1379         diapausing aggregration           08.15.2017
## 1380         diapausing aggregration           08.15.2017
## 1381         diapausing aggregration           08.15.2017
## 1382         diapausing aggregration           08.15.2017
## 1383         diapausing aggregration           08.15.2017
## 1384         diapausing aggregration           08.15.2017
## 1385         diapausing aggregration           08.15.2017
## 1386         diapausing aggregration           08.15.2017
## 1387         diapausing aggregration           08.15.2017
## 1388         diapausing aggregration           08.15.2017
## 1389         diapausing aggregration           08.15.2017
## 1390         diapausing aggregration           08.15.2017
## 1391         diapausing aggregration           08.15.2017
## 1392         diapausing aggregration           08.15.2017
## 1393         diapausing aggregration           08.15.2017
## 1394         diapausing aggregration           08.15.2017
## 1395         diapausing aggregration           08.15.2017
## 1396         diapausing aggregration           08.15.2017
## 1397         diapausing aggregration           08.15.2017
## 1398         diapausing aggregration           08.15.2017
## 1399         diapausing aggregration           08.15.2017
## 1400         diapausing aggregration           08.15.2017
## 1401         diapausing aggregration           08.15.2017
## 1402         diapausing aggregration           08.15.2017
## 1403         diapausing aggregration           08.15.2017
## 1404         diapausing aggregration           08.15.2017
## 1405         diapausing aggregration           08.15.2017
## 1406         diapausing aggregration           08.15.2017
## 1407         diapausing aggregration           08.15.2017
## 1408         diapausing aggregration           08.15.2017
## 1409         diapausing aggregration           08.15.2017
## 1410         diapausing aggregration           08.15.2017
## 1411         diapausing aggregration           08.15.2017
## 1412         diapausing aggregration           08.15.2017
## 1413         diapausing aggregration           08.15.2017
## 1414         diapausing aggregration           08.15.2017
## 1415         diapausing aggregration           08.15.2017
## 1416         diapausing aggregration           08.15.2017
## 1417         diapausing aggregration           08.15.2017
## 1418         diapausing aggregration           08.15.2017
## 1419         diapausing aggregration           08.15.2017
## 1420         diapausing aggregration           08.15.2017
## 1421         diapausing aggregration           08.15.2017
## 1422         diapausing aggregration           08.15.2017
## 1423         diapausing aggregration           08.15.2017
## 1424         diapausing aggregration           08.15.2017
## 1425         diapausing aggregration           08.15.2017
## 1426         diapausing aggregration           08.15.2017
## 1427         diapausing aggregration           08.15.2017
## 1428         diapausing aggregration           08.15.2017
## 1429         diapausing aggregration           08.15.2017
## 1430         diapausing aggregration           08.15.2017
## 1431         diapausing aggregration           08.15.2017
## 1432         diapausing aggregration           08.15.2017
## 1433         diapausing aggregration           08.15.2017
## 1434         diapausing aggregration           08.15.2017
## 1435         diapausing aggregration           08.15.2017
## 1436         diapausing aggregration           08.15.2017
## 1437         diapausing aggregration           08.15.2017
## 1438         diapausing aggregration           08.15.2017
## 1439         diapausing aggregration           08.15.2017
## 1440         diapausing aggregration           08.15.2017
## 1441         diapausing aggregration           08.15.2017
## 1442         diapausing aggregration           08.15.2017
## 1443         diapausing aggregration           08.15.2017
## 1444         diapausing aggregration           08.15.2017
## 1445         diapausing aggregration           08.15.2017
## 1446         diapausing aggregration           08.15.2017
## 1447         diapausing aggregration           08.15.2017
## 1448         diapausing aggregration           08.15.2017
## 1449         diapausing aggregration           08.15.2017
## 1450         diapausing aggregration           08.15.2017
## 1451         diapausing aggregration           08.15.2017
## 1452         diapausing aggregration           08.15.2017
## 1453         diapausing aggregration           08.15.2017
## 1454         diapausing aggregration           08.15.2017
## 1455         diapausing aggregration           08.15.2017
## 1456         diapausing aggregration           08.15.2017
## 1457         diapausing aggregration           08.15.2017
## 1458         diapausing aggregration           08.15.2017
## 1459         diapausing aggregration           08.15.2017
## 1460         diapausing aggregration           08.15.2017
## 1461         diapausing aggregration           08.15.2017
## 1462         diapausing aggregration           08.15.2017
## 1463         diapausing aggregration           08.15.2017
## 1464         diapausing aggregration           08.15.2017
## 1465         diapausing aggregration           08.15.2017
## 1466         diapausing aggregration           08.15.2017
## 1467         diapausing aggregration           08.15.2017
## 1468         diapausing aggregration           08.15.2017
## 1469         diapausing aggregration           08.15.2017
## 1470         diapausing aggregration           08.15.2017
## 1471         diapausing aggregration           08.15.2017
## 1472         diapausing aggregration           08.15.2017
## 1473         diapausing aggregration           08.15.2017
## 1474         diapausing aggregration           08.15.2017
## 1475         diapausing aggregration           08.15.2017
## 1476         diapausing aggregration           08.15.2017
## 1477         diapausing aggregration           08.15.2017
## 1478         diapausing aggregration           08.15.2017
## 1479         diapausing aggregration           08.15.2017
## 1480         diapausing aggregration           08.15.2017
## 1481         diapausing aggregration           08.15.2017
## 1482         diapausing aggregration           08.15.2017
## 1483         diapausing aggregration           08.15.2017
## 1484         diapausing aggregration           08.15.2017
## 1485         diapausing aggregration           08.15.2017
## 1486         diapausing aggregration           08.15.2017
## 1487         diapausing aggregration           08.15.2017
## 1488         diapausing aggregration           08.15.2017
## 1489         diapausing aggregration           08.15.2017
## 1490         diapausing aggregration           08.15.2017
## 1491         diapausing aggregration           08.15.2017
## 1492         diapausing aggregration           08.15.2017
## 1493         diapausing aggregration           08.15.2017
## 1494         diapausing aggregration           08.15.2017
## 1495         diapausing aggregration           08.15.2017
## 1496         diapausing aggregration           08.15.2017
## 1497         diapausing aggregration           08.15.2017
## 1498         diapausing aggregration           08.15.2017
## 1499         diapausing aggregration           08.15.2017
## 1500         diapausing aggregration           08.15.2017
## 1501         diapausing aggregration           08.15.2017
## 1502                                           08.17.2017
## 1503                                           08.17.2017
## 1504                                           08.17.2017
## 1505                                           08.17.2017
## 1506                                           08.17.2017
## 1507                                           08.17.2017
## 1508                                           08.17.2017
## 1509                                           08.17.2017
## 1510                                           08.17.2017
## 1511                                           08.17.2017
## 1512                                           08.17.2017
## 1513                                           08.17.2017
## 1514                                           08.17.2017
## 1515                                           08.17.2017
## 1516                                           08.17.2017
## 1517                                           08.17.2017
## 1518                                           08.17.2017
## 1519                                           08.16.2017
## 1520                                           08.16.2017
## 1521                                           08.16.2017
## 1522                                           08.16.2017
## 1523                      wings torn           08.16.2017
## 1524                                           08.16.2017
## 1525                                           08.16.2017
## 1526                                           08.16.2017
## 1527                                           08.16.2017
## 1528                                           08.16.2017
## 1529                                           08.16.2017
## 1530                                           08.16.2017
## 1531                                           08.16.2017
## 1532                                           08.16.2017
## 1533                      wings torn           08.16.2017
## 1534                      wings torn           08.16.2017
## 1535                                           08.16.2017
## 1536                                           08.16.2017
## 1537                                           08.17.2017
## 1538                          marked           08.17.2017
## 1539                                           08.17.2017
## 1540                          marked           08.17.2017
## 1541                                           08.17.2017
## 1542                                           08.17.2017
## 1543                                           08.17.2017
## 1544                                           08.17.2017
## 1545                                           08.17.2017
## 1546                                           08.17.2017
## 1547                          marked           08.17.2017
## 1548                                           08.17.2017
## 1549                                           08.17.2017
## 1550                                           08.17.2017
## 1551                                           08.17.2017
## 1552                                           08.17.2017
## 1553                                           08.17.2017
## 1554                                           08.17.2017
## 1555                                           08.17.2017
## 1556                                           08.17.2017
## 1557                          marked           08.17.2017
## 1558                          marked           08.17.2017
## 1559                          marked           08.17.2017
## 1560                                           08.17.2017
## 1561                                           08.17.2017
## 1562                          marked           08.17.2017
## 1563                                           08.17.2017
## 1564                                           08.17.2017
## 1565                                           08.17.2017
## 1566                                           08.17.2017
## 1567                          marked           08.17.2017
## 1568                       tips torn           08.17.2017
## 1569                          marked           08.17.2017
## 1570                       tips torn           08.17.2017
## 1571                          marked           08.17.2017
## 1572                          marked           08.17.2017
## 1573                          marked           08.17.2017
## 1574                          marked           08.16.2017
## 1575                                           08.16.2017
## 1576                                           08.16.2017
## 1577                       tips torn           08.16.2017
## 1578                       tips torn           08.16.2017
## 1579                       tips torn           08.16.2017
## 1580                                           08.16.2017
## 1581                          marked           08.16.2017
## 1582                          marked           08.16.2017
## 1583                       tips torn           08.16.2017
## 1584                       tips torn           08.16.2017
## 1585                                           08.16.2017
## 1586                                           08.16.2017
## 1587                                           08.16.2017
## 1588                                           08.16.2017
## 1589                                           08.16.2017
## 1590                                           08.16.2017
## 1591               tips torn; marked           08.16.2017
## 1592                       tips torn           08.16.2017
## 1593                          marked           08.16.2017
## 1594         diapausing aggregration           08.23.2017
## 1595         diapausing aggregration           08.23.2017
## 1596         diapausing aggregration           08.23.2017
## 1597         diapausing aggregration           08.23.2017
## 1598         diapausing aggregration           08.23.2017
## 1599         diapausing aggregration           08.23.2017
## 1600         diapausing aggregration           08.23.2017
## 1601         diapausing aggregration           08.23.2017
## 1602         diapausing aggregration           08.23.2017
## 1603         diapausing aggregration           08.23.2017
## 1604         diapausing aggregration           08.23.2017
## 1605         diapausing aggregration           08.23.2017
## 1606         diapausing aggregration           08.23.2017
## 1607         diapausing aggregration           08.23.2017
## 1608         diapausing aggregration           08.23.2017
## 1609         diapausing aggregration           08.23.2017
## 1610         diapausing aggregration           08.23.2017
## 1611         diapausing aggregration           08.23.2017
## 1612         diapausing aggregration           08.23.2017
## 1613         diapausing aggregration           08.23.2017
## 1614         diapausing aggregration           08.23.2017
## 1615         diapausing aggregration           08.23.2017
## 1616         diapausing aggregration           08.23.2017
## 1617         diapausing aggregration           08.23.2017
## 1618         diapausing aggregration           08.23.2017
## 1619         diapausing aggregration           08.23.2017
## 1620         diapausing aggregration           08.23.2017
## 1621         diapausing aggregration           08.23.2017
## 1622         diapausing aggregration           08.23.2017
## 1623         diapausing aggregration           08.23.2017
## 1624         diapausing aggregration           08.23.2017
## 1625         diapausing aggregration           08.23.2017
## 1626                  non-diapausing            8.23.2017
## 1627                  non-diapausing            8.23.2017
## 1628                  non-diapausing            8.23.2017
## 1629                  non-diapausing            8.23.2017
## 1630                  non-diapausing            8.23.2017
## 1631                  non-diapausing            8.23.2017
## 1632                  non-diapausing            8.23.2017
## 1633                  non-diapausing            8.23.2017
## 1634                  non-diapausing            8.23.2017
## 1635                  non-diapausing            8.23.2017
## 1636                  non-diapausing            8.23.2017
## 1637                  non-diapausing            8.23.2017
## 1638                  non-diapausing            8.23.2017
## 1639                  non-diapausing            8.23.2017
## 1640                  non-diapausing            8.23.2017
## 1641                  non-diapausing            8.23.2017
## 1642                  non-diapausing            8.23.2017
## 1643                  non-diapausing            8.23.2017
## 1644                  non-diapausing            8.23.2017
## 1645                  non-diapausing            8.23.2017
## 1646                  non-diapausing            8.23.2017
## 1647                  non-diapausing            8.23.2017
## 1648                  non-diapausing            8.23.2017
## 1649                  non-diapausing            8.23.2017
## 1650                  non-diapausing            8.23.2017
## 1651                  non-diapausing            8.23.2017
## 1652                  non-diapausing            8.23.2017
## 1653                  non-diapausing            8.23.2017
## 1654                  non-diapausing            8.23.2017
## 1655                  non-diapausing            8.23.2017
## 1656                  non-diapausing            8.23.2017
## 1657                  non-diapausing            8.23.2017
## 1658                  non-diapausing            8.23.2017
## 1659                  non-diapausing            8.23.2017
## 1660                  non-diapausing            8.23.2017
## 1661                  non-diapausing            8.23.2017
## 1662                  non-diapausing            8.23.2017
## 1663                  non-diapausing            8.23.2017
## 1664                  non-diapausing            8.23.2017
## 1665                  non-diapausing            8.23.2017
## 1666                  non-diapausing            8.23.2017
## 1667                  non-diapausing            8.23.2017
## 1668                  non-diapausing            8.23.2017
## 1669                  non-diapausing            8.23.2017
## 1670                  non-diapausing            8.23.2017
## 1671                  non-diapausing            8.23.2017
## 1672                  non-diapausing            8.23.2017
## 1673                  non-diapausing            8.23.2017
## 1674                  non-diapausing            8.23.2017
## 1675                  non-diapausing            8.23.2017
## 1676                  non-diapausing            8.23.2017
## 1677                  non-diapausing            8.23.2017
## 1678                  non-diapausing            8.23.2017
## 1679                  non-diapausing            8.23.2017
## 1680                  non-diapausing            8.23.2017
## 1681                  non-diapausing            8.23.2017
## 1682                  non-diapausing            8.23.2017
## 1683                  non-diapausing            8.23.2017
## 1684                  non-diapausing            8.23.2017
## 1685                  non-diapausing           08.24.2017
## 1686                  non-diapausing           08.24.2017
## 1687                  non-diapausing           08.24.2017
## 1688                  non-diapausing           08.24.2017
## 1689                  non-diapausing           08.24.2017
## 1690                  non-diapausing           08.24.2017
## 1691                  non-diapausing           08.24.2017
## 1692                  non-diapausing           08.24.2017
## 1693                  non-diapausing           08.24.2017
## 1694                  non-diapausing           08.24.2017
## 1695                  non-diapausing           08.24.2017
## 1696                  non-diapausing           08.24.2017
## 1697                  non-diapausing           08.24.2017
## 1698                  non-diapausing           08.24.2017
## 1699                  non-diapausing           08.24.2017
## 1700                  non-diapausing           08.24.2017
## 1701                  non-diapausing           08.24.2017
## 1702                  non-diapausing           08.24.2017
## 1703                  non-diapausing           08.24.2017
## 1704                  non-diapausing           08.24.2017
## 1705                  non-diapausing           08.24.2017
## 1706                  non-diapausing           08.24.2017
## 1707                  non-diapausing           08.24.2017
## 1708                  non-diapausing           08.24.2017
## 1709                  non-diapausing           08.24.2017
## 1710                  non-diapausing           08.24.2017
## 1711                  non-diapausing           08.24.2017
## 1712                  non-diapausing           08.24.2017
## 1713                  non-diapausing           08.24.2017
## 1714                  non-diapausing           08.24.2017
## 1715                  non-diapausing           08.24.2017
## 1716                  non-diapausing           08.24.2017
## 1717                  non-diapausing           08.24.2017
## 1718                  non-diapausing           08.24.2017
## 1719                  non-diapausing           08.24.2017
## 1720                  non-diapausing           08.24.2017
## 1721                  non-diapausing           08.24.2017
## 1722                  non-diapausing           08.24.2017
## 1723                  non-diapausing           08.24.2017
## 1724                  non-diapausing           08.24.2017
## 1725                  non-diapausing           08.24.2017
## 1726                  non-diapausing           08.24.2017
## 1727                  non-diapausing           08.24.2017
## 1728                  non-diapausing           08.24.2017
## 1729                  non-diapausing           08.24.2017
## 1730                  non-diapausing           08.24.2017
## 1731                  non-diapausing           08.24.2017
## 1732                  non-diapausing           08.24.2017
## 1733                  non-diapausing           08.24.2017
## 1734                  non-diapausing           08.24.2017
## 1735                  non-diapausing           08.24.2017
## 1736                  non-diapausing           08.24.2017
## 1737                  non-diapausing           08.24.2017
## 1738                  non-diapausing           08.24.2017
## 1739                  non-diapausing           08.24.2017
## 1740                  non-diapausing           08.24.2017
## 1741                  non-diapausing           08.24.2017
## 1742                  non-diapausing           08.24.2017
## 1743                  non-diapausing           09.23.2018
## 1744                  non-diapausing           09.23.2018
## 1745                  non-diapausing           09.23.2018
## 1746                  non-diapausing           09.23.2018
## 1747                  non-diapausing           09.23.2018
## 1748                  non-diapausing           09.23.2018
## 1749                  non-diapausing           09.23.2018
## 1750                  non-diapausing           09.23.2018
## 1751                  non-diapausing           09.23.2018
## 1752                  non-diapausing           09.23.2018
## 1753                  non-diapausing           09.23.2018
## 1754                  non-diapausing           09.23.2018
## 1755                  non-diapausing           09.23.2018
## 1756                  non-diapausing           09.23.2018
## 1757                  non-diapausing           09.23.2018
## 1758                  non-diapausing           09.23.2018
## 1759                  non-diapausing           09.23.2018
## 1760                  non-diapausing           09.23.2018
## 1761                  non-diapausing           09.23.2018
## 1762                  non-diapausing           09.23.2018
## 1763                  non-diapausing           09.23.2018
## 1764                  non-diapausing           09.23.2018
## 1765                  non-diapausing           09.23.2018
## 1766                  non-diapausing           09.23.2018
## 1767                  non-diapausing           09.23.2018
## 1768                  non-diapausing           09.23.2018
## 1769                  non-diapausing           09.23.2018
## 1770                  non-diapausing           09.23.2018
## 1771                  non-diapausing           09.23.2018
## 1772                  non-diapausing           09.23.2018
## 1773                  non-diapausing           09.23.2018
## 1774                  non-diapausing           09.23.2018
## 1775                  non-diapausing           09.23.2018
## 1776                  non-diapausing           09.23.2018
## 1777                  non-diapausing           09.23.2018
## 1778                  non-diapausing           09.23.2018
## 1779                  non-diapausing           09.23.2018
## 1780                  non-diapausing           09.23.2018
## 1781                  non-diapausing           09.23.2018
## 1782                  non-diapausing           09.23.2018
## 1783                  non-diapausing           09.23.2018
## 1784                  non-diapausing           09.23.2018
## 1785                  non-diapausing           09.23.2018
## 1786                  non-diapausing           09.23.2018
## 1787                  non-diapausing           09.23.2018
## 1788                  non-diapausing           09.23.2018
## 1789                  non-diapausing           09.23.2018
## 1790                  non-diapausing           09.23.2018
## 1791                  non-diapausing           09.23.2018
## 1792                  non-diapausing           09.23.2018
## 1793                  non-diapausing           09.23.2018
## 1794                  non-diapausing           09.23.2018
## 1795                  non-diapausing           09.23.2018
## 1796                  non-diapausing           09.23.2018
## 1797                  non-diapausing           09.23.2018
## 1798                  non-diapausing           09.23.2018
## 1799                  non-diapausing           09.23.2018
## 1800                  non-diapausing           09.23.2018
## 1801                  non-diapausing           09.23.2018
## 1802                  non-diapausing           09.23.2018
## 1803                  non-diapausing           09.23.2018
## 1804                  non-diapausing           09.23.2018
## 1805                  non-diapausing           09.23.2018
## 1806                  non-diapausing           09.23.2018
## 1807                  non-diapausing           09.26.2018
## 1808                  non-diapausing           09.26.2018
## 1809                  non-diapausing           09.26.2018
## 1810                  non-diapausing           09.26.2018
## 1811                  non-diapausing           09.26.2018
## 1812                  non-diapausing           09.26.2018
## 1813                  non-diapausing           09.26.2018
## 1814                  non-diapausing           09.26.2018
## 1815                  non-diapausing           09.26.2018
## 1816                  non-diapausing           09.26.2018
## 1817                  non-diapausing           09.26.2018
## 1818                  non-diapausing           09.26.2018
## 1819                  non-diapausing           09.26.2018
## 1820                  non-diapausing           09.26.2018
## 1821                  non-diapausing           09.26.2018
## 1822                  non-diapausing           09.26.2018
## 1823                  non-diapausing           09.26.2018
## 1824                  non-diapausing           09.26.2018
## 1825                  non-diapausing           09.26.2018
## 1826                  non-diapausing           09.26.2018
## 1827                  non-diapausing           09.26.2018
## 1828                  non-diapausing           09.26.2018
## 1829                  non-diapausing           09.26.2018
## 1830                  non-diapausing           09.26.2018
## 1831                  non-diapausing           09.26.2018
## 1832                  non-diapausing           09.26.2018
## 1833                  non-diapausing           09.26.2018
## 1834                  non-diapausing           09.26.2018
## 1835                  non-diapausing           09.26.2018
## 1836                  non-diapausing           09.26.2018
## 1837                  non-diapausing           09.26.2018
## 1838                  non-diapausing           09.26.2018
## 1839                  non-diapausing           09.26.2018
## 1840                  non-diapausing           09.26.2018
## 1841                  non-diapausing           09.26.2018
## 1842                  non-diapausing           09.26.2018
## 1843                  non-diapausing           09.26.2018
## 1844                  non-diapausing           09.26.2018
## 1845                  non-diapausing           09.26.2018
## 1846                  non-diapausing           09.26.2018
## 1847                  non-diapausing           09.26.2018
## 1848                  non-diapausing           09.26.2018
## 1849                  non-diapausing           09.26.2018
## 1850                  non-diapausing           09.26.2018
## 1851                  non-diapausing           09.26.2018
## 1852                  non-diapausing           09.26.2018
## 1853                  non-diapausing           09.26.2018
## 1854                  non-diapausing           09.26.2018
## 1855                  non-diapausing           09.26.2018
## 1856                  non-diapausing           09.26.2018
## 1857                  non-diapausing           09.26.2018
## 1858                  non-diapausing           09.26.2018
## 1859                  non-diapausing           09.26.2018
## 1860                  non-diapausing           09.26.2018
## 1861                  non-diapausing           09.26.2018
## 1862                  non-diapausing           09.26.2018
## 1863                  non-diapausing           09.26.2018
## 1864                  non-diapausing           09.26.2018
## 1865                  non-diapausing           09.26.2018
## 1866                  non-diapausing           09.26.2018
## 1867                  non-diapausing           09.26.2018
## 1868                  non-diapausing           09.26.2018
## 1869                  non-diapausing           09.26.2018
## 1870                  non-diapausing           09.26.2018
## 1871                  non-diapausing           09.26.2018
## 1872                  non-diapausing           09.26.2018
## 1873                  non-diapausing           09.26.2018
## 1874                  non-diapausing           09.26.2018
## 1875                  non-diapausing           09.28.2018
## 1876                  non-diapausing           09.28.2018
## 1877                  non-diapausing           09.28.2018
## 1878                  non-diapausing           09.28.2018
## 1879                  non-diapausing           09.28.2018
## 1880                  non-diapausing           09.28.2018
## 1881                  non-diapausing           09.28.2018
## 1882                  non-diapausing           09.28.2018
## 1883                  non-diapausing           09.28.2018
## 1884                  non-diapausing           09.28.2018
## 1885                  non-diapausing           09.28.2018
## 1886                  non-diapausing           09.28.2018
## 1887                  non-diapausing           09.28.2018
## 1888                  non-diapausing           09.28.2018
## 1889                  non-diapausing           09.28.2018
## 1890                  non-diapausing           09.28.2018
## 1891                  non-diapausing           09.28.2018
## 1892                  non-diapausing           09.28.2018
## 1893                  non-diapausing           09.28.2018
## 1894                  non-diapausing           09.28.2018
## 1895                  non-diapausing           09.28.2018
## 1896                  non-diapausing           09.28.2018
## 1897                  non-diapausing           09.28.2018
## 1898                  non-diapausing           09.28.2018
## 1899                  non-diapausing           09.28.2018
## 1900                  non-diapausing           09.28.2018
## 1901                  non-diapausing           09.28.2018
## 1902                  non-diapausing           09.28.2018
## 1903                  non-diapausing           09.28.2018
## 1904                  non-diapausing           09.28.2018
## 1905                  non-diapausing           09.28.2018
## 1906                  non-diapausing           09.28.2018
## 1907                  non-diapausing           09.28.2018
## 1908                  non-diapausing           09.28.2018
## 1909                  non-diapausing           09.28.2018
## 1910                  non-diapausing           09.28.2018
## 1911                  non-diapausing           09.28.2018
## 1912                  non-diapausing           09.28.2018
## 1913                  non-diapausing           09.28.2018
## 1914                  non-diapausing           09.28.2018
## 1915                  non-diapausing           09.28.2018
## 1916                  non-diapausing            5.22.2019
## 1917                  non-diapausing            5.22.2019
## 1918                  non-diapausing            5.22.2019
## 1919                  non-diapausing            5.22.2019
## 1920                  non-diapausing            5.22.2019
## 1921                  non-diapausing            5.22.2019
## 1922                  non-diapausing            5.22.2019
## 1923                  non-diapausing            5.22.2019
## 1924                  non-diapausing            5.22.2019
## 1925                                           05.22.2019
## 1926                                           05.22.2019
## 1927                                           05.22.2019
## 1928                                           05.22.2019
## 1929                                           05.22.2019
## 1930                                           05.22.2019
## 1931                                           05.22.2019
## 1932                                           05.22.2019
## 1933                                           05.22.2019
## 1934                                           05.22.2019
## 1935                                           05.22.2019
## 1936                                           05.22.2019
## 1937                                           05.22.2019
## 1938                                           05.22.2019
## 1939                                           05.22.2019
## 1940                                           05.22.2019
## 1941                                           05.22.2019
## 1942                                           05.22.2019
## 1943                                           05.22.2019
## 1944                                           05.22.2019
## 1945                                           05.22.2019
## 1946                                           05.22.2019
## 1947                                           05.22.2019
## 1948                                           05.22.2019
## 1949                                           05.22.2019
## 1950                                           05.22.2019
## 1951                                           05.22.2019
## 1952                                           05.22.2019
## 1953                                           05.22.2019
## 1954                                           05.22.2019
## 1955                                           05.22.2019
## 1956                                           05.22.2019
## 1957                                           05.22.2019
## 1958                                           05.22.2019
## 1959                                           05.22.2019
## 1960                                           05.22.2019
## 1961                                           05.22.2019
## 1962                                           05.22.2019
## 1963                                           05.22.2019
## 1964                                           05.22.2019
## 1965                  non-diapausing           05.17.2019
## 1966                  non-diapausing           05.17.2019
## 1967                  non-diapausing           05.17.2019
## 1968                  non-diapausing           05.17.2019
## 1969                  non-diapausing           05.17.2019
## 1970                  non-diapausing           05.17.2019
## 1971                  non-diapausing           05.17.2019
## 1972                  non-diapausing           05.17.2019
## 1973                  non-diapausing           05.17.2019
## 1974                  non-diapausing           05.17.2019
## 1975                  non-diapausing           05.17.2019
## 1976                  non-diapausing           05.17.2019
## 1977                  non-diapausing           05.17.2019
## 1978                  non-diapausing           05.17.2019
## 1979                  non-diapausing           05.17.2019
## 1980                  non-diapausing           05.17.2019
## 1981                  non-diapausing           05.17.2019
## 1982                  non-diapausing           05.17.2019
## 1983                  non-diapausing             5.6.2019
## 1984                  non-diapausing             5.6.2019
## 1985                  non-diapausing             5.6.2019
## 1986                  non-diapausing             5.6.2019
## 1987                  non-diapausing             5.6.2019
## 1988                  non-diapausing             5.6.2019
## 1989                  non-diapausing             5.6.2019
## 1990                  non-diapausing             5.6.2019
## 1991                  non-diapausing             5.6.2019
## 1992                  non-diapausing             5.6.2019
## 1993                  non-diapausing             5.6.2019
## 1994                  non-diapausing             5.6.2019
## 1995                  non-diapausing             5.6.2019
## 1996                  non-diapausing             5.6.2019
## 1997                  non-diapausing             5.6.2019
## 1998                  non-diapausing             5.6.2019
## 1999                  non-diapausing             5.6.2019
## 2000                  non-diapausing             5.6.2019
## 2001                  non-diapausing             5.6.2019
## 2002                  non-diapausing             5.6.2019
## 2003                  non-diapausing             5.6.2019
## 2004                  non-diapausing             5.6.2019
## 2005                  non-diapausing             5.6.2019
## 2006                  non-diapausing             5.6.2019
## 2007                  non-diapausing             5.6.2019
## 2008                  non-diapausing             5.6.2019
## 2009                  non-diapausing             5.6.2019
## 2010                  non-diapausing             5.6.2019
## 2011                  non-diapausing             5.6.2019
## 2012                  non-diapausing             5.6.2019
## 2013                  non-diapausing             5.6.2019
## 2014                  non-diapausing             5.6.2019
## 2015                  non-diapausing             5.6.2019
## 2016                  non-diapausing             5.6.2019
## 2017                  non-diapausing             5.6.2019
## 2018                  non-diapausing             5.6.2019
## 2019                  non-diapausing             5.6.2019
## 2020                  non-diapausing             5.6.2019
## 2021                  non-diapausing             5.6.2019
## 2022                  non-diapausing             5.6.2019
## 2023                  non-diapausing             5.6.2019
## 2024                  non-diapausing             5.6.2019
## 2025                  non-diapausing             5.6.2019
## 2026                  non-diapausing             5.6.2019
## 2027                  non-diapausing             5.6.2019
## 2028                  non-diapausing             5.6.2019
## 2029                  non-diapausing             5.6.2019
## 2030                  non-diapausing             5.6.2019
## 2031                  non-diapausing             5.6.2019
## 2032                  non-diapausing             5.6.2019
## 2033                  non-diapausing             5.6.2019
## 2034                  non-diapausing             5.6.2019
## 2035                  non-diapausing             5.6.2019
## 2036                  non-diapausing             5.6.2019
## 2037                  non-diapausing             5.6.2019
## 2038                  non-diapausing             5.6.2019
## 2039                  non-diapausing             5.6.2019
## 2040                  non-diapausing             5.6.2019
## 2041                  non-diapausing             5.6.2019
## 2042                  non-diapausing             5.6.2019
## 2043                  non-diapausing             5.6.2019
## 2044                  non-diapausing             5.6.2019
## 2045                  non-diapausing             5.6.2019
## 2046                  non-diapausing             5.6.2019
## 2047                  non-diapausing             5.6.2019
## 2048                  non-diapausing             5.6.2019
## 2049                  non-diapausing             5.6.2019
## 2050                  non-diapausing             5.6.2019
## 2051                  non-diapausing             5.6.2019
## 2052                  non-diapausing             5.6.2019
## 2053                  non-diapausing             5.6.2019
## 2054                  non-diapausing             5.6.2019
## 2055                  non-diapausing             5.6.2019
## 2056                  non-diapausing             5.6.2019
## 2057                  non-diapausing             5.6.2019
## 2058                  non-diapausing             5.6.2019
## 2059                      diapausing           05.19.2019
## 2060                      diapausing           05.19.2019
## 2061                      diapausing           05.19.2019
## 2062                      diapausing           05.19.2019
## 2063                      diapausing           05.19.2019
## 2064                      diapausing           05.19.2019
## 2065                      diapausing           05.19.2019
## 2066                      diapausing           05.19.2019
## 2067                      diapausing           05.19.2019
## 2068                      diapausing           05.19.2019
## 2069                      diapausing           05.19.2019
## 2070                      diapausing           05.19.2019
## 2071                      diapausing           05.19.2019
## 2072                      diapausing           05.19.2019
## 2073                      diapausing           05.19.2019
## 2074                      diapausing           05.19.2019
## 2075                      diapausing           05.19.2019
## 2076                      diapausing           05.19.2019
## 2077                      diapausing           05.19.2019
## 2078                      diapausing           05.19.2019
## 2079                      diapausing           05.19.2019
## 2080                      diapausing           05.19.2019
## 2081                      diapausing           05.19.2019
## 2082                      diapausing           05.19.2019
## 2083                      diapausing           05.19.2019
## 2084                      diapausing           05.19.2019
## 2085                      diapausing           05.19.2019
## 2086                      diapausing           05.19.2019
## 2087                      diapausing           05.19.2019
## 2088                      diapausing           05.19.2019
## 2089                      diapausing           05.19.2019
## 2090                      diapausing           05.19.2019
## 2091                      diapausing           05.19.2019
## 2092                      diapausing           05.19.2019
## 2093                      diapausing           05.19.2019
## 2094                      diapausing           05.19.2019
## 2095                      diapausing           05.19.2019
## 2096                      diapausing           05.19.2019
## 2097                      diapausing           05.19.2019
## 2098                      diapausing           05.19.2019
## 2099                      diapausing           05.19.2019
## 2100                      diapausing           05.19.2019
## 2101                      diapausing           05.19.2019
## 2102                      diapausing           05.19.2019
## 2103                      diapausing           05.19.2019
## 2104                      diapausing           05.19.2019
## 2105                      diapausing           05.19.2019
## 2106                      diapausing           05.19.2019
## 2107                      diapausing           05.19.2019
## 2108                      diapausing           05.19.2019
## 2109                      diapausing           05.19.2019
## 2110                      diapausing           05.19.2019
## 2111                      diapausing           05.19.2019
## 2112                      diapausing           05.19.2019
## 2113                      diapausing           05.19.2019
## 2114                      diapausing           05.19.2019
## 2115                      diapausing           05.19.2019
## 2116                      diapausing           05.19.2019
## 2117                      diapausing           05.19.2019
## 2118                      diapausing           05.19.2019
## 2119                      diapausing           05.19.2019
## 2120                      diapausing           05.19.2019
## 2121                                           05.13.2019
## 2122                                           05.13.2019
## 2123                                           05.13.2019
## 2124                                           05.13.2019
## 2125                                           05.13.2019
## 2126                                           05.13.2019
## 2127                                           05.13.2019
## 2128                                           05.13.2019
## 2129                                           05.13.2019
## 2130                                           05.13.2019
## 2131                                           05.13.2019
## 2132                                           05.13.2019
## 2133                                           05.13.2019
## 2134                                           05.13.2019
## 2135                                           05.13.2019
## 2136                                           05.13.2019
## 2137                                           05.13.2019
## 2138                                           05.13.2019
## 2139                                           05.13.2019
## 2140                                           05.13.2019
## 2141                                           05.13.2019
## 2142                                           05.13.2019
## 2143                                           05.13.2019
## 2144                                           05.13.2019
## 2145                                           05.13.2019
## 2146                                           05.13.2019
## 2147                                           05.13.2019
## 2148                                           05.13.2019
## 2149                                           05.13.2019
## 2150                                           05.13.2019
## 2151                                           05.13.2019
## 2152                                           05.13.2019
## 2153                                           05.13.2019
## 2154                                           05.13.2019
## 2155                                           05.13.2019
## 2156                                           05.13.2019
## 2157                                           05.13.2019
## 2158                                           05.13.2019
## 2159                                           05.13.2019
## 2160                                           05.13.2019
## 2161                                           05.13.2019
## 2162                                           05.13.2019
## 2163                                           05.13.2019
## 2164                                           05.13.2019
## 2165                                           05.13.2019
## 2166                                           05.13.2019
## 2167                                           05.13.2019
## 2168                                           05.13.2019
## 2169                                           05.13.2019
## 2170                                           05.13.2019
## 2171                                           05.13.2019
## 2172                                           05.13.2019
## 2173                                           05.13.2019
## 2174                                           05.13.2019
## 2175                                           05.13.2019
## 2176                                           05.13.2019
## 2177                                           05.13.2019
## 2178                                           05.13.2019
## 2179                                           05.13.2019
## 2180                                           05.13.2019
## 2181                                           05.13.2019
## 2182                                           05.13.2019
## 2183                                           05.13.2019
## 2184                                           05.13.2019
## 2185                                           05.13.2019
## 2186                                           05.13.2019
## 2187                                           05.13.2019
## 2188                                           05.13.2019
## 2189                                           05.13.2019
## 2190                                           05.13.2019
## 2191                                           05.13.2019
## 2192                                           05.13.2019
## 2193                                           05.13.2019
## 2194                                           05.13.2019
## 2195                                           05.13.2019
## 2196                                           05.13.2019
## 2197                                           05.13.2019
## 2198                                           05.13.2019
## 2199                                           05.13.2019
## 2200                                           05.13.2019
## 2201                                           05.13.2019
## 2202                                           05.13.2019
## 2203                                           05.13.2019
## 2204                                           05.13.2019
## 2205                                           05.13.2019
## 2206                                           05.13.2019
## 2207                                           05.13.2019
## 2208                                           05.13.2019
## 2209                                           05.13.2019
## 2210                                           05.13.2019
## 2211                                           05.13.2019
## 2212                                           05.13.2019
## 2213                                           05.13.2019
## 2214                                           05.13.2019
## 2215                                           05.13.2019
## 2216                                           05.13.2019
## 2217                                           05.13.2019
## 2218                                           05.13.2019
## 2219                                           05.13.2019
## 2220                                           05.13.2019
## 2221                                           05.13.2019
## 2222                                           05.14.2019
## 2223                                           05.14.2019
## 2224                                           05.14.2019
## 2225                                           05.14.2019
## 2226                                           05.14.2019
## 2227                                           05.14.2019
## 2228                                           05.14.2019
## 2229                                           05.14.2019
## 2230                                           05.14.2019
## 2231                                           05.06.2019
## 2232                                           05.06.2019
## 2233                                           05.06.2019
## 2234                                           05.06.2019
## 2235                                           05.06.2019
## 2236                                           05.06.2019
## 2237                                           05.06.2019
## 2238                                           05.06.2019
## 2239                                           05.06.2019
## 2240                                           05.06.2019
## 2241                                           05.06.2019
## 2242                                           05.06.2019
## 2243                                           05.06.2019
## 2244                                           05.06.2019
## 2245                                           05.06.2019
## 2246                                           05.06.2019
## 2247                                           05.06.2019
## 2248                                           05.06.2019
## 2249                                           05.06.2019
## 2250                                           05.06.2019
## 2251                                           05.06.2019
## 2252                                           05.06.2019
## 2253                                           05.06.2019
## 2254                                           05.06.2019
## 2255                                           05.06.2019
## 2256                                           05.06.2019
## 2257                                           05.06.2019
## 2258                                           05.06.2019
## 2259                                           05.06.2019
## 2260                                           05.06.2019
## 2261                                           05.06.2019
## 2262                                           05.06.2019
## 2263                                           05.06.2019
## 2264                                           05.06.2019
## 2265                                           05.06.2019
## 2266                                           05.06.2019
## 2267                                           05.06.2019
## 2268                                           05.06.2019
## 2269                                           05.06.2019
## 2270                                           05.06.2019
## 2271                                           05.06.2019
## 2272                                           05.06.2019
## 2273                                           05.06.2019
## 2274                                           05.06.2019
## 2275                                           05.06.2019
## 2276                                           05.06.2019
## 2277                                           05.06.2019
## 2278                                           05.06.2019
## 2279                                           05.06.2019
## 2280                                           05.06.2019
## 2281                                           05.06.2019
## 2282                                           05.06.2019
## 2283                                           05.06.2019
## 2284                                           05.06.2019
## 2285                                           05.06.2019
## 2286                                           05.06.2019
## 2287                                           05.06.2019
## 2288                                           05.06.2019
## 2289                                           05.06.2019
## 2290                                           05.06.2019
## 2291                                           05.06.2019
## 2292                                           05.06.2019
## 2293                                           05.06.2019
## 2294                                           05.06.2019
## 2295                                           05.06.2019
## 2296                                           05.06.2019
## 2297                                           05.06.2019
## 2298                                           05.06.2019
## 2299                                           05.06.2019
## 2300                                           05.06.2019
## 2301                                           05.06.2019
## 2302                                           05.06.2019
## 2303                                           05.06.2019
## 2304                                           05.06.2019
## 2305                                           05.06.2019
## 2306                                           05.06.2019
## 2307                                           05.06.2019
## 2308                                           05.06.2019
## 2309                                           05.06.2019
## 2310                                           05.06.2019
## 2311                                           05.06.2019
## 2312                                           05.06.2019
## 2313                                           05.06.2019
## 2314                                           05.06.2019
## 2315                                           05.06.2019
## 2316                                           05.06.2019
## 2317                                           05.06.2019
## 2318                                           05.06.2019
## 2319                                           05.06.2019
## 2320                                           05.06.2019
## 2321                                           05.06.2019
## 2322                                           05.06.2019
## 2323                                           05.06.2019
## 2324                                           05.06.2019
## 2325                                           05.06.2019
## 2326                                           05.06.2019
## 2327                                           05.06.2019
## 2328                                           05.06.2019
## 2329                                           05.06.2019
## 2330                                           05.06.2019
## 2331                                           05.06.2019
## 2332                                           05.06.2019
## 2333                                                     
## 2334                                                     
## 2335                                                     
## 2336                                                     
## 2337                                                     
## 2338                                                     
## 2339                                                     
## 2340                                                     
## 2341                                                     
## 2342                                                     
## 2343                                                     
## 2344                                                     
## 2345                                                     
## 2346                                                     
## 2347                                                     
## 2348                                                     
## 2349                                                     
## 2350                                                     
## 2351                                                     
## 2352                                                     
## 2353                                                     
## 2354                                                     
## 2355                                                     
## 2356                                                     
## 2357                                                     
## 2358                                                     
## 2359                                                     
## 2360                                                     
## 2361                                                     
## 2362                  non-diapausing            5.13.2019
## 2363                  non-diapausing            5.13.2019
## 2364                  non-diapausing            5.13.2019
## 2365                  non-diapausing            5.13.2019
## 2366                  non-diapausing            5.13.2019
## 2367                  non-diapausing            5.13.2019
## 2368                  non-diapausing            5.13.2019
## 2369                                                     
## 2370                                                     
## 2371                                                     
## 2372                                                     
## 2373                                                     
## 2374                                                     
## 2375                                                     
## 2376                                                     
## 2377                                                     
## 2378                                                     
## 2379                                                     
## 2380                                                     
## 2381                                                     
## 2382                                                     
## 2383                                                     
## 2384                                                     
## 2385                                                     
## 2386                                                     
## 2387                                                     
## 2388                                                     
## 2389                                                     
## 2390                                                     
## 2391                                                     
## 2392                                                     
## 2393                                                     
## 2394                                                     
## 2395                                                     
## 2396                                                     
## 2397                                                     
## 2398                                                     
## 2399                                                     
## 2400                                                     
## 2401                                                     
## 2402                                                     
## 2403                  non-diapausing           10.06.2019
## 2404                  non-diapausing           10.06.2019
## 2405                  non-diapausing           10.06.2019
## 2406                  non-diapausing           10.06.2019
## 2407                  non-diapausing           10.06.2019
## 2408                  non-diapausing           10.06.2019
## 2409                  non-diapausing           10.06.2019
## 2410                  non-diapausing           10.06.2019
## 2411                  non-diapausing           10.06.2019
## 2412                  non-diapausing           10.06.2019
## 2413                  non-diapausing           10.06.2019
## 2414                  non-diapausing           10.06.2019
## 2415                  non-diapausing           10.06.2019
## 2416                  non-diapausing           10.06.2019
## 2417                  non-diapausing           10.06.2019
## 2418                  non-diapausing           10.06.2019
## 2419                     diapausing?           10.04.2019
## 2420                     diapausing?           10.04.2019
## 2421                     diapausing?           10.04.2019
## 2422                     diapausing?           10.04.2019
## 2423                     diapausing?           10.04.2019
## 2424                     diapausing?           10.04.2019
## 2425                     diapausing?           10.04.2019
## 2426                     diapausing?           10.04.2019
## 2427                     diapausing?           10.04.2019
## 2428                     diapausing?           10.04.2019
## 2429                     diapausing?           10.04.2019
## 2430                     diapausing?           10.04.2019
## 2431                     diapausing?           10.04.2019
## 2432                     diapausing?           10.04.2019
## 2433                     diapausing?           10.04.2019
## 2434                     diapausing?           10.04.2019
## 2435                     diapausing?           10.04.2019
## 2436                     diapausing?           10.04.2019
## 2437                     diapausing?           10.04.2019
## 2438                     diapausing?           10.04.2019
## 2439                     diapausing?           10.04.2019
## 2440                     diapausing?           10.04.2019
## 2441                     diapausing?           10.04.2019
## 2442                     diapausing?           10.04.2019
## 2443                     diapausing?           10.04.2019
## 2444                     diapausing?           10.04.2019
## 2445                     diapausing?           10.04.2019
## 2446                     diapausing?           10.04.2019
## 2447                     diapausing?           10.04.2019
## 2448                     diapausing?           10.04.2019
## 2449                     diapausing?           10.04.2019
## 2450                     diapausing?           10.04.2019
## 2451                     diapausing?           10.04.2019
## 2452                     diapausing?           10.04.2019
## 2453                     diapausing?           10.04.2019
## 2454                  non-diapausing           10.04.2019
## 2455                  non-diapausing           10.04.2019
## 2456                  non-diapausing           10.04.2019
## 2457                  non-diapausing           10.04.2019
## 2458                  non-diapausing           10.04.2019
## 2459                  non-diapausing           10.04.2019
## 2460                  non-diapausing           10.04.2019
## 2461                  non-diapausing           10.04.2019
## 2462                  non-diapausing           10.04.2019
## 2463                  non-diapausing           10.04.2019
## 2464                  non-diapausing           10.04.2019
## 2465                  non-diapausing           10.04.2019
## 2466                  non-diapausing           10.04.2019
## 2467                  non-diapausing           10.04.2019
## 2468                  non-diapausing           10.04.2019
## 2469                  non-diapausing           10.04.2019
## 2470                      diapausing           10.05.2019
## 2471                      diapausing           10.05.2019
## 2472                      diapausing           10.05.2019
## 2473                      diapausing           10.05.2019
## 2474                      diapausing           10.05.2019
## 2475                      diapausing           10.05.2019
## 2476                      diapausing           10.05.2019
## 2477                      diapausing           10.05.2019
## 2478                      diapausing           10.05.2019
## 2479                      diapausing           10.05.2019
## 2480                      diapausing           10.05.2019
## 2481                      diapausing           10.05.2019
## 2482                      diapausing           10.05.2019
## 2483                      diapausing           10.05.2019
## 2484                      diapausing           10.05.2019
## 2485                      diapausing           10.05.2019
## 2486                      diapausing           10.05.2019
## 2487                      diapausing           10.05.2019
## 2488                      diapausing           10.05.2019
## 2489                      diapausing           10.05.2019
## 2490                      diapausing           10.05.2019
## 2491                      diapausing           10.05.2019
## 2492                      diapausing           10.05.2019
## 2493                      diapausing           10.05.2019
## 2494                      diapausing           10.05.2019
## 2495                      diapausing           10.05.2019
## 2496                      diapausing           10.05.2019
## 2497                      diapausing           10.05.2019
## 2498                      diapausing           10.05.2019
## 2499                      diapausing           10.05.2019
## 2500                      diapausing           10.05.2019
## 2501                      diapausing           10.05.2019
## 2502                      diapausing           10.05.2019
## 2503                      diapausing           10.05.2019
## 2504                      diapausing           10.05.2019
## 2505                      diapausing           10.05.2019
## 2506                      diapausing           10.05.2019
## 2507                      diapausing           10.05.2019
## 2508                      diapausing           10.05.2019
## 2509                      diapausing           10.05.2019
## 2510                      diapausing           10.05.2019
## 2511                      diapausing           10.05.2019
## 2512                      diapausing           10.05.2019
## 2513                      diapausing           10.05.2019
## 2514                      diapausing           10.05.2019
## 2515                      diapausing           10.05.2019
## 2516                      diapausing           10.05.2019
## 2517                      diapausing           10.05.2019
## 2518                      diapausing           10.05.2019
## 2519                      diapausing           10.05.2019
## 2520                      diapausing           10.05.2019
## 2521                      diapausing           10.05.2019
## 2522                      diapausing           10.05.2019
## 2523                      diapausing           10.05.2019
## 2524                      diapausing            10.5.2019
## 2525                      diapausing            10.5.2019
## 2526                      diapausing            10.5.2019
## 2527                      diapausing            10.5.2019
## 2528                      diapausing            10.5.2019
## 2529                      diapausing            10.5.2019
## 2530                      diapausing            10.5.2019
## 2531                      diapausing            10.5.2019
## 2532                      diapausing            10.5.2019
## 2533                      diapausing            10.5.2019
## 2534                      diapausing            10.5.2019
## 2535                      diapausing            10.5.2019
## 2536                  non-diapausing           10.05.2019
## 2537                  non-diapausing           10.05.2019
## 2538                  non-diapausing           10.05.2019
## 2539                  non-diapausing           10.05.2019
## 2540                  non-diapausing           10.05.2019
## 2541                  non-diapausing           10.05.2019
## 2542                  non-diapausing           10.05.2019
## 2543                  non-diapausing           10.05.2019
## 2544                  non-diapausing           10.05.2019
## 2545                  non-diapausing           10.05.2019
## 2546                  non-diapausing           10.05.2019
## 2547                  non-diapausing           10.05.2019
## 2548                         unknown           10.05.2019
## 2549                         unknown           10.05.2019
## 2550                         unknown           10.05.2019
## 2551                         unknown           10.05.2019
## 2552                         unknown           10.05.2019
## 2553                         unknown           10.05.2019
## 2554                         unknown           10.05.2019
## 2555                         unknown           10.05.2019
## 2556                         unknown           10.05.2019
## 2557                         unknown           10.05.2019
## 2558                         unknown           10.05.2019
## 2559                         unknown           10.05.2019
## 2560                         unknown           10.05.2019
## 2561                         unknown           10.05.2019
## 2562                  non-diapausing           10.03.2019
## 2563                  non-diapausing           10.03.2019
## 2564                  non-diapausing           10.03.2019
## 2565                  non-diapausing           10.03.2019
## 2566                  non-diapausing           10.03.2019
## 2567                  non-diapausing           10.03.2019
## 2568                  non-diapausing           10.03.2019
## 2569                  non-diapausing           10.03.2019
## 2570                  non-diapausing           10.03.2019
## 2571                  non-diapausing           10.03.2019
## 2572                  non-diapausing           10.03.2019
## 2573                  non-diapausing           10.03.2019
## 2574                  non-diapausing           10.03.2019
## 2575                  non-diapausing           10.03.2019
## 2576                  non-diapausing           10.03.2019
## 2577                  non-diapausing           10.03.2019
## 2578                  non-diapausing           10.03.2019
## 2579                  non-diapausing           10.03.2019
## 2580                  non-diapausing           10.03.2019
## 2581                  non-diapausing           10.02.2019
## 2582                  non-diapausing           10.02.2019
## 2583                  non-diapausing           10.02.2019
## 2584                  non-diapausing           10.02.2019
## 2585                  non-diapausing           10.02.2019
## 2586                  non-diapausing           10.02.2019
## 2587                  non-diapausing           10.02.2019
## 2588                  non-diapausing           10.02.2019
## 2589                  non-diapausing           10.02.2019
## 2590                  non-diapausing           10.02.2019
## 2591                  non-diapausing           10.02.2019
## 2592                  non-diapausing           10.02.2019
## 2593                  non-diapausing           10.03.2019
## 2594                  non-diapausing           10.03.2019
## 2595                  non-diapausing           10.03.2019
## 2596                  non-diapausing           10.03.2019
## 2597                  non-diapausing           10.03.2019
## 2598                  non-diapausing           10.03.2019
## 2599                  non-diapausing           10.03.2019
## 2600                  non-diapausing           10.03.2019
## 2601                  non-diapausing           10.02.2019
## 2602                  non-diapausing           10.02.2019
## 2603                  non-diapausing           10.02.2019
## 2604                  non-diapausing           10.02.2019
## 2605                  non-diapausing           10.02.2019
## 2606                  non-diapausing           10.02.2019
## 2607                  non-diapausing           10.02.2019
## 2608                  non-diapausing           10.02.2019
## 2609                  non-diapausing           10.02.2019
## 2610                  non-diapausing           10.02.2019
## 2611                  non-diapausing           10.02.2019
## 2612                  non-diapausing           10.02.2019
## 2613                  non-diapausing           10.02.2019
## 2614                  non-diapausing           10.02.2019
## 2615                  non-diapausing           10.02.2019
## 2616                  non-diapausing           10.02.2019
## 2617                  non-diapausing           10.02.2019
## 2618                  non-diapausing           10.02.2019
## 2619                  non-diapausing           10.02.2019
## 2620                  non-diapausing           10.02.2019
## 2621                  non-diapausing           10.02.2019
## 2622                  non-diapausing           10.02.2019
## 2623                  non-diapausing           10.02.2019
## 2624                  non-diapausing           10.02.2019
## 2625                  non-diapausing           10.02.2019
## 2626                  non-diapausing           10.02.2019
## 2627                  non-diapausing           10.02.2019
## 2628                  non-diapausing           10.02.2019
## 2629                  non-diapausing           10.02.2019
## 2630                  non-diapausing           10.02.2019
## 2631                  non-diapausing           10.02.2019
## 2632                  non-diapausing           10.02.2019
## 2633                  non-diapausing           10.05.2019
## 2634                  non-diapausing            10.2.2019
## 2635                  non-diapausing            10.2.2019
## 2636                  non-diapausing            10.2.2019
## 2637                  non-diapausing            10.2.2019
## 2638                  non-diapausing            10.2.2019
## 2639                  non-diapausing            10.2.2019
## 2640                  non-diapausing            10.2.2019
## 2641                  non-diapausing            10.2.2019
## 2642                  non-diapausing            10.2.2019
## 2643                  non-diapausing           10.02.2019
## 2644                  non-diapausing           10.02.2019
## 2645                  non-diapausing           10.02.2019
## 2646                  non-diapausing           10.02.2019
## 2647                  non-diapausing           10.02.2019
## 2648                  non-diapausing           10.02.2019
## 2649                  non-diapausing           10.02.2019
## 2650                  non-diapausing           10.02.2019
## 2651                  non-diapausing           10.02.2019
## 2652                  non-diapausing           10.02.2019
## 2653                  non-diapausing           10.02.2019
## 2654                  non-diapausing           10.02.2019
## 2655                  non-diapausing           10.02.2019
## 2656                  non-diapausing           10.02.2019
## 2657                  non-diapausing           10.02.2019
## 2658                  non-diapausing             2.9.2020
## 2659                  non-diapausing             2.9.2020
## 2660                  non-diapausing             2.9.2020
## 2661                  non-diapausing             2.9.2020
## 2662                  non-diapausing             2.9.2020
## 2663                  non-diapausing             2.9.2020
## 2664                  non-diapausing             2.9.2020
## 2665                  non-diapausing             2.9.2020
## 2666                  non-diapausing             2.9.2020
## 2667                  non-diapausing             2.9.2020
## 2668                  non-diapausing             2.9.2020
## 2669                  non-diapausing             2.9.2020
## 2670                  non-diapausing             2.9.2020
## 2671                  non-diapausing             2.9.2020
## 2672                  non-diapausing             2.9.2020
## 2673                  non-diapausing             2.9.2020
## 2674                  non-diapausing             2.9.2020
## 2675                  non-diapausing           02.09.2020
## 2676                  non-diapausing           02.09.2020
## 2677                  non-diapausing           02.09.2020
## 2678                  non-diapausing           02.09.2020
## 2679                  non-diapausing           02.09.2020
## 2680                  non-diapausing           02.09.2020
## 2681                  non-diapausing           02.09.2020
## 2682                  non-diapausing           02.09.2020
## 2683                  non-diapausing           02.09.2020
## 2684                  non-diapausing           02.09.2020
## 2685                  non-diapausing           02.09.2020
## 2686                  non-diapausing           02.09.2020
## 2687                  non-diapausing           02.09.2020
## 2688                  non-diapausing           02.09.2020
## 2689                  non-diapausing           02.09.2020
## 2690                  non-diapausing           02.09.2020
## 2691                  non-diapausing           02.09.2020
## 2692                  non-diapausing           02.09.2020
## 2693                  non-diapausing           02.09.2020
## 2694                  non-diapausing             2.5.2020
## 2695                  non-diapausing             2.7.2020
## 2696                  non-diapausing             2.7.2020
## 2697                  non-diapausing             2.7.2020
## 2698                  non-diapausing             2.7.2020
## 2699                  non-diapausing             2.7.2020
## 2700                  non-diapausing             2.7.2020
## 2701                  non-diapausing             2.7.2020
## 2702                  non-diapausing             2.7.2020
## 2703                  non-diapausing             2.7.2020
## 2704                  non-diapausing             2.7.2020
## 2705                  non-diapausing             2.7.2020
## 2706                  non-diapausing             2.7.2020
## 2707                  non-diapausing             2.7.2020
## 2708                  non-diapausing             2.7.2020
## 2709                  non-diapausing             2.7.2020
## 2710                  non-diapausing             2.7.2020
## 2711                  non-diapausing             2.7.2020
## 2712                  non-diapausing             2.7.2020
## 2713                  non-diapausing             2.7.2020
## 2714                  non-diapausing             2.7.2020
## 2715                  non-diapausing             2.7.2020
## 2716                  non-diapausing             2.7.2020
## 2717                  non-diapausing             2.7.2020
## 2718                  non-diapausing             2.7.2020
## 2719                  non-diapausing             2.7.2020
## 2720                  non-diapausing             2.7.2020
## 2721                  non-diapausing             2.7.2020
## 2722                  non-diapausing           02.07.2020
## 2723                  non-diapausing           02.07.2020
## 2724                  non-diapausing           02.07.2020
## 2725                  non-diapausing           02.07.2020
## 2726                  non-diapausing           02.07.2020
## 2727                  non-diapausing           02.07.2020
## 2728                  non-diapausing           02.07.2020
## 2729                  non-diapausing           02.07.2020
## 2730                  non-diapausing           02.07.2020
## 2731                  non-diapausing           02.07.2020
## 2732                  non-diapausing           02.07.2020
## 2733                  non-diapausing           02.07.2020
## 2734                  non-diapausing           02.07.2020
## 2735                  non-diapausing           02.07.2020
## 2736                  non-diapausing             2.5.2020
## 2737                  non-diapausing             2.5.2020
## 2738                  non-diapausing             2.5.2020
## 2739                  non-diapausing             2.5.2020
## 2740                  non-diapausing             2.5.2020
## 2741                  non-diapausing             2.5.2020
## 2742                  non-diapausing             2.5.2020
## 2743                  non-diapausing             2.5.2020
## 2744                  non-diapausing             2.5.2020
## 2745                  non-diapausing             2.5.2020
## 2746                  non-diapausing             2.5.2020
## 2747                  non-diapausing             2.5.2020
## 2748                  non-diapausing             2.5.2020
## 2749                  non-diapausing             2.5.2020
## 2750                  non-diapausing             2.5.2020
## 2751                  non-diapausing             2.5.2020
## 2752                  non-diapausing             2.5.2020
## 2753                  non-diapausing             2.5.2020
## 2754                  non-diapausing             2.5.2020
## 2755                  non-diapausing             2.5.2020
## 2756                  non-diapausing             2.5.2020
## 2757                  non-diapausing             2.5.2020
## 2758                  non-diapausing             2.5.2020
## 2759                  non-diapausing             2.5.2020
## 2760                  non-diapausing             2.5.2020
## 2761                  non-diapausing             2.5.2020
## 2762                  non-diapausing             2.5.2020
## 2763                  non-diapausing             2.5.2020
## 2764                  non-diapausing             2.5.2020
## 2765                  non-diapausing             2.5.2020
## 2766                  non-diapausing             2.5.2020
## 2767                  non-diapausing             2.5.2020
## 2768                  non-diapausing             2.5.2020
## 2769                  non-diapausing             2.5.2020
## 2770                  non-diapausing             2.5.2020
## 2771                  non-diapausing             2.5.2020
## 2772                  non-diapausing             2.5.2020
## 2773                  non-diapausing             2.5.2020
## 2774                  non-diapausing             2.5.2020
## 2775                  non-diapausing             2.5.2020
## 2776                  non-diapausing             2.5.2020
## 2777                  non-diapausing             2.5.2020
## 2778                  non-diapausing             2.5.2020
## 2779                  non-diapausing             2.5.2020
## 2780                  non-diapausing           02.06.2020
## 2781                  non-diapausing           02.06.2020
## 2782                  non-diapausing           02.06.2020
## 2783                  non-diapausing           02.06.2020
## 2784                  non-diapausing           02.06.2020
## 2785                  non-diapausing           02.06.2020
## 2786                  non-diapausing           02.06.2020
## 2787                  non-diapausing           02.06.2020
## 2788                  non-diapausing           02.06.2020
## 2789                  non-diapausing           02.06.2020
## 2790                  non-diapausing           02.06.2020
## 2791                  non-diapausing           02.06.2020
## 2792                  non-diapausing           02.06.2020
## 2793                  non-diapausing           02.06.2020
## 2794                  non-diapausing           02.06.2020
## 2795                  non-diapausing           02.06.2020
## 2796                  non-diapausing           02.06.2020
## 2797                  non-diapausing           02.06.2020
## 2798                  non-diapausing           02.06.2020
## 2799                  non-diapausing           02.06.2020
## 2800                  non-diapausing           02.06.2020
## 2801                  non-diapausing           02.06.2020
## 2802                  non-diapausing           02.06.2020
## 2803                  non-diapausing           02.06.2020
## 2804                  non-diapausing           02.06.2020
## 2805                  non-diapausing           02.06.2020
## 2806                  non-diapausing           02.06.2020
## 2807                  non-diapausing           02.06.2020
## 2808                  non-diapausing           02.06.2020
## 2809                  non-diapausing           02.06.2020
## 2810                  non-diapausing           02.06.2020
## 2811                  non-diapausing           02.06.2020
## 2812 diapause-like behavior observed             2.7.2020
## 2813 diapause-like behavior observed             2.7.2020
## 2814 diapause-like behavior observed             2.7.2020
## 2815 diapause-like behavior observed             2.7.2020
## 2816 diapause-like behavior observed             2.7.2020
## 2817 diapause-like behavior observed             2.7.2020
## 2818 diapause-like behavior observed             2.7.2020
## 2819 diapause-like behavior observed             2.7.2020
## 2820 diapause-like behavior observed             2.7.2020
## 2821 diapause-like behavior observed             2.7.2020
## 2822 diapause-like behavior observed             2.7.2020
## 2823 diapause-like behavior observed             2.7.2020
## 2824 diapause-like behavior observed             2.7.2020
## 2825 diapause-like behavior observed             2.7.2020
## 2826 diapause-like behavior observed             2.7.2020
## 2827 diapause-like behavior observed             2.7.2020
## 2828 diapause-like behavior observed             2.7.2020
## 2829 diapause-like behavior observed             2.7.2020
## 2830 diapause-like behavior observed             2.7.2020
## 2831 diapause-like behavior observed             2.7.2020
## 2832 diapause-like behavior observed             2.7.2020
## 2833 diapause-like behavior observed             2.7.2020
## 2834 diapause-like behavior observed             2.7.2020
## 2835 diapause-like behavior observed             2.7.2020
## 2836 diapause-like behavior observed           02.07.2020
## 2837 diapause-like behavior observed           02.07.2020
## 2838 diapause-like behavior observed           02.07.2020
## 2839 diapause-like behavior observed           02.07.2020
## 2840 diapause-like behavior observed           02.07.2020
## 2841 diapause-like behavior observed           02.07.2020
## 2842 diapause-like behavior observed           02.07.2020
## 2843 diapause-like behavior observed           02.07.2020
## 2844 diapause-like behavior observed           02.07.2020
## 2845 diapause-like behavior observed           02.07.2020
## 2846 diapause-like behavior observed           02.07.2020
## 2847 diapause-like behavior observed           02.07.2020
## 2848 diapause-like behavior observed           02.07.2020
## 2849 diapause-like behavior observed           02.07.2020
## 2850 diapause-like behavior observed           02.07.2020
## 2851 diapause-like behavior observed           02.07.2020
## 2852 diapause-like behavior observed           02.07.2020
## 2853 diapause-like behavior observed           02.07.2020
## 2854 diapause-like behavior observed           02.07.2020
## 2855                  non-diapausing             2.7.2020
## 2856                  non-diapausing             2.7.2020
## 2857                  non-diapausing             2.7.2020
## 2858                  non-diapausing             2.7.2020
## 2859                  non-diapausing             2.7.2020
## 2860                  non-diapausing             2.7.2020
## 2861                  non-diapausing             2.7.2020
## 2862                  non-diapausing             2.7.2020
## 2863                  non-diapausing             2.7.2020
## 2864                  non-diapausing             2.7.2020
## 2865                  non-diapausing             2.7.2020
## 2866                  non-diapausing           02.07.2020
## 2867                  non-diapausing           02.07.2020
## 2868                  non-diapausing           02.07.2020
## 2869                  non-diapausing           02.07.2020
## 2870                  non-diapausing           02.07.2020
## 2871                  non-diapausing           02.07.2020
## 2872                  non-diapausing           02.07.2020
## 2873                  non-diapausing           02.07.2020
## 2874                  non-diapausing           02.07.2020
## 2875                  non-diapausing           02.07.2020
## 2876                  non-diapausing           02.07.2020
## 2877                  non-diapausing           02.07.2020
## 2878                  non-diapausing           02.07.2020
## 2879                  non-diapausing           02.07.2020
## 2880                  non-diapausing           02.07.2020
## 2881                  non-diapausing           02.07.2020
## 2882                  non-diapausing           02.07.2020
## 2883                  non-diapausing           02.07.2020
## 2884                  non-diapausing           02.07.2020
## 2885                  non-diapausing           02.07.2020
## 2886                  non-diapausing           02.07.2020
## 2887                  non-diapausing           02.07.2020
## 2888                  non-diapausing           02.07.2020
## 2889                  non-diapausing           02.07.2020
## 2890                  non-diapausing           02.07.2020
## 2891                  non-diapausing           02.07.2020
## 2892                  non-diapausing           02.07.2020
## 2893                  non-diapausing           02.07.2020
## 2894                  non-diapausing           02.07.2020
## 2895                  non-diapausing           02.07.2020
## 2896                  non-diapausing           02.07.2020
## 2897                  non-diapausing           02.07.2020
## 2898                  non-diapausing           02.07.2020
## 2899                  non-diapausing           02.07.2020
## 2900                  non-diapausing           02.07.2020
## 2901                  non-diapausing           02.07.2020
## 2902                  non-diapausing           02.07.2020
## 2903                  non-diapausing           02.07.2020
## 2904                  non-diapausing           02.07.2020
## 2905                  non-diapausing             2.7.2020
## 2906                  non-diapausing             2.7.2020
## 2907                  non-diapausing             2.7.2020
## 2908                  non-diapausing             2.7.2020
## 2909                  non-diapausing             2.7.2020
## 2910                  non-diapausing             2.7.2020
## 2911                  non-diapausing             2.7.2020
## 2912                  non-diapausing             2.7.2020
## 2913                  non-diapausing             2.7.2020
## 2914                  non-diapausing             2.7.2020
## 2915                  non-diapausing             2.7.2020
## 2916                  non-diapausing             2.7.2020
## 2917                  non-diapausing           02.07.2020
## 2918                  non-diapausing           02.07.2020
## 2919                  non-diapausing           02.07.2020
## 2920                  non-diapausing           02.07.2020
## 2921                  non-diapausing           02.07.2020
## 2922                  non-diapausing           02.07.2020
## 2923                  non-diapausing           02.07.2020
## 2924                  non-diapausing           02.07.2020
## 2925                  non-diapausing           02.07.2020
## 2926                  non-diapausing           02.07.2020
## 2927                  non-diapausing           02.07.2020
## 2928                  non-diapausing           02.07.2020
## 2929                  non-diapausing           02.07.2020
## 2930                  non-diapausing           02.07.2020
## 2931                  non-diapausing           02.07.2020
## 2932                  non-diapausing           02.07.2020
## 2933                  non-diapausing           02.07.2020
## 2934                  non-diapausing             2.3.2020
## 2935                  non-diapausing             2.3.2020
## 2936                  non-diapausing             2.3.2020
## 2937                  non-diapausing             2.3.2020
## 2938                  non-diapausing             2.3.2020
## 2939                  non-diapausing             2.5.2020
## 2940                  non-diapausing             2.5.2020
## 2941                  non-diapausing             2.5.2020
## 2942                  non-diapausing             2.5.2020
## 2943                  non-diapausing             2.5.2020
## 2944                  non-diapausing             2.4.2020
## 2945                  non-diapausing             2.4.2020
## 2946                  non-diapausing             2.4.2020
## 2947                  non-diapausing             2.4.2020
## 2948                  non-diapausing             2.4.2020
## 2949                  non-diapausing             2.5.2020
## 2950                  non-diapausing             2.5.2020
## 2951                  non-diapausing             2.5.2020
## 2952                  non-diapausing             2.3.2020
## 2953                  non-diapausing             2.3.2020
## 2954                  non-diapausing             2.3.2020
## 2955                  non-diapausing             2.4.2020
## 2956                  non-diapausing             2.4.2020
## 2957                  non-diapausing             2.4.2020
## 2958                  non-diapausing             2.4.2020
## 2959                  non-diapausing             2.4.2020
## 2960                  non-diapausing             2.5.2020
## 2961                  non-diapausing             2.5.2020
## 2962                  non-diapausing             2.5.2020
## 2963                  non-diapausing             2.5.2020
## 2964                  non-diapausing             2.4.2020
## 2965                  non-diapausing             2.4.2020
## 2966                  non-diapausing             2.4.2020
## 2967                  non-diapausing             2.3.2020
## 2968                  non-diapausing             2.3.2020
## 2969                  non-diapausing             2.3.2020
## 2970                  non-diapausing             2.3.2020
## 2971                  non-diapausing             2.5.2020
## 2972                  non-diapausing             2.5.2020
## 2973                  non-diapausing             2.5.2020
## 2974                  non-diapausing             2.5.2020
## 2975                  non-diapausing             2.5.2020
## 2976                  non-diapausing             2.4.2020
## 2977                  non-diapausing             2.4.2020
## 2978                  non-diapausing             2.4.2020
## 2979                  non-diapausing             2.4.2020
## 2980                  non-diapausing             2.4.2020
## 2981                  non-diapausing             2.3.2020
## 2982                  non-diapausing             2.3.2020
## 2983                  non-diapausing             2.3.2020
## 2984                  non-diapausing             2.3.2020
## 2985                  non-diapausing             2.3.2020
## 2986                  non-diapausing             2.3.2020
## 2987                  non-diapausing             2.3.2020
## 2988                  non-diapausing             2.5.2020
## 2989                  non-diapausing             2.5.2020
## 2990                  non-diapausing             2.5.2020
## 2991                  non-diapausing             2.5.2020
## 2992                  non-diapausing             2.4.2020
## 2993                  non-diapausing             2.4.2020
## 2994                  non-diapausing             2.4.2020
## 2995                  non-diapausing             2.4.2020
## 2996                  non-diapausing             2.4.2020
## 2997                  non-diapausing             2.5.2020
## 2998                  non-diapausing             2.5.2020
## 2999                  non-diapausing             2.5.2020
## 3000                  non-diapausing             2.5.2020
## 3001                  non-diapausing             2.5.2020
## 3002                  non-diapausing             2.4.2020
## 3003                  non-diapausing             2.4.2020
## 3004                  non-diapausing             2.4.2020
## 3005                  non-diapausing             2.5.2020
## 3006                  non-diapausing             2.5.2020
## 3007                  non-diapausing             2.5.2020
## 3008                  non-diapausing             2.5.2020
## 3009                  non-diapausing             2.5.2020
## 3010                  non-diapausing             2.3.2020
## 3011                  non-diapausing             2.3.2020
## 3012                  non-diapausing             2.3.2020
## 3013                  non-diapausing             2.3.2020
## 3014                  non-diapausing             2.3.2020
## 3015                  non-diapausing             2.3.2020
## 3016                  non-diapausing             2.3.2020
## 3017                  non-diapausing             2.3.2020
## 3018                  non-diapausing             2.3.2020
## 3019                  non-diapausing             2.3.2020
## 3020                  non-diapausing             2.5.2020
## 3021                  non-diapausing             2.5.2020
## 3022                  non-diapausing             2.5.2020
## 3023                  non-diapausing             2.5.2020
## 3024                  non-diapausing             2.5.2020
## 3025                  non-diapausing             2.4.2020
## 3026                  non-diapausing             2.4.2020
## 3027                  non-diapausing             2.5.2020
## 3028                  non-diapausing             2.5.2020
## 3029                  non-diapausing             2.5.2020
## 3030                  non-diapausing             2.4.2020
## 3031                  non-diapausing             2.4.2020
## 3032                  non-diapausing             2.4.2020
## 3033                  non-diapausing             2.5.2020
## 3034                  non-diapausing             2.5.2020
## 3035                  non-diapausing             2.5.2020
## 3036                  non-diapausing             2.5.2020
## 3037                  non-diapausing             2.5.2020
## 3038                  non-diapausing             2.5.2020
## 3039                  non-diapausing             2.5.2020
## 3040                  non-diapausing             2.5.2020
## 3041                  non-diapausing             2.5.2020
## 3042                  non-diapausing             2.5.2020
## 3043                  non-diapausing             2.5.2020
## 3044                  non-diapausing             2.5.2020
## 3045                  non-diapausing             2.5.2020
## 3046                  non-diapausing             2.5.2020
## 3047                  non-diapausing             2.5.2020
## 3048                  non-diapausing             2.5.2020
## 3049                  non-diapausing             2.5.2020
## 3050                  non-diapausing             2.5.2020
## 3051                  non-diapausing             2.5.2020
## 3052                  non-diapausing             2.5.2020
## 3053                  non-diapausing             2.5.2020
## 3054                  non-diapausing             2.5.2020
## 3055                  non-diapausing             2.5.2020
## 3056                  non-diapausing             2.5.2020
## 3057                  non-diapausing             2.5.2020
## 3058                  non-diapausing             2.5.2020
## 3059                  non-diapausing             2.5.2020
## 3060                  non-diapausing             2.3.2020
## 3061                  non-diapausing             2.3.2020
## 3062                  non-diapausing             2.3.2020
## 3063                  non-diapausing             2.3.2020
## 3064                  non-diapausing             2.3.2020
## 3065                  non-diapausing             2.3.2020
## 3066                  non-diapausing             2.3.2020
## 3067                  non-diapausing             2.3.2020
## 3068                  non-diapausing             2.4.2020
## 3069                  non-diapausing             2.4.2020
## 3070                  non-diapausing             2.4.2020
## 3071                  non-diapausing             2.4.2020
## 3072                  non-diapausing           02.03.2020
## 3073                  non-diapausing           02.03.2020
## 3074                  non-diapausing           02.03.2020
## 3075                  non-diapausing           02.03.2020
## 3076                  non-diapausing           02.03.2020
## 3077                  non-diapausing           02.03.2020
## 3078                  non-diapausing           02.05.2020
## 3079                  non-diapausing           02.05.2020
## 3080                  non-diapausing           02.05.2020
## 3081                  non-diapausing           02.05.2020
## 3082                  non-diapausing           02.05.2020
## 3083                  non-diapausing           02.05.2020
## 3084                  non-diapausing           02.05.2020
## 3085                  non-diapausing           02.05.2020
## 3086                  non-diapausing           02.05.2020
## 3087                  non-diapausing           02.05.2020
## 3088                  non-diapausing           02.05.2020
## 3089                  non-diapausing           02.05.2020
## 3090                  non-diapausing           02.05.2020
## 3091                  non-diapausing           02.05.2020
## 3092                  non-diapausing           02.04.2020
## 3093                  non-diapausing           02.04.2020
## 3094                  non-diapausing           02.04.2020
## 3095                  non-diapausing           02.04.2020
## 3096                  non-diapausing           02.03.2020
## 3097                  non-diapausing           02.03.2020
## 3098                  non-diapausing           02.03.2020
## 3099                  non-diapausing           02.03.2020
## 3100                  non-diapausing           02.03.2020
## 3101                  non-diapausing           02.03.2020
## 3102                  non-diapausing           02.03.2020
## 3103                  non-diapausing           02.03.2020
## 3104                  non-diapausing           02.05.2020
## 3105                  non-diapausing           02.05.2020
## 3106                  non-diapausing           02.05.2020
## 3107                  non-diapausing           02.05.2020
## 3108                  non-diapausing           02.05.2020
## 3109                  non-diapausing           02.05.2020
## 3110                  non-diapausing           02.05.2020
## 3111                  non-diapausing           02.05.2020
## 3112                  non-diapausing           02.05.2020
## 3113                  non-diapausing           02.05.2020
## 3114                  non-diapausing           02.05.2020
## 3115                  non-diapausing           02.05.2020
## 3116                  non-diapausing           02.05.2020
## 3117                  non-diapausing           02.05.2020
## 3118                  non-diapausing           02.05.2020
## 3119                  non-diapausing           02.05.2020
## 3120                  non-diapausing           02.05.2020
## 3121                  non-diapausing           02.05.2020
## 3122                  non-diapausing           02.05.2020
## 3123                  non-diapausing           02.05.2020
## 3124                  non-diapausing           02.05.2020
## 3125                  non-diapausing           02.05.2020
## 3126                  non-diapausing           02.05.2020
## 3127                  non-diapausing           02.05.2020
## 3128                  non-diapausing           02.05.2020
## 3129                  non-diapausing           02.05.2020
## 3130                  non-diapausing           02.05.2020
## 3131                  non-diapausing           02.05.2020
## 3132                  non-diapausing           02.05.2020
## 3133                  non-diapausing           02.05.2020
## 3134                  non-diapausing           02.05.2020
## 3135                  non-diapausing           02.05.2020
## 3136                  non-diapausing           02.05.2020
## 3137                  non-diapausing           02.04.2020
## 3138                  non-diapausing           02.04.2020
## 3139                  non-diapausing           02.04.2020
## 3140                  non-diapausing           02.04.2020
## 3141                  non-diapausing           02.04.2020
## 3142                  non-diapausing           02.04.2020
## 3143                  non-diapausing           02.04.2020
## 3144                  non-diapausing           02.04.2020
## 3145                  non-diapausing           02.04.2020
## 3146                  non-diapausing           02.04.2020
## 3147                  non-diapausing           02.04.2020
## 3148                  non-diapausing           02.04.2020
## 3149                  non-diapausing           02.04.2020
## 3150                  non-diapausing           02.04.2020
## 3151                  non-diapausing           02.04.2020
## 3152                  non-diapausing           02.04.2020
## 3153                  non-diapausing           02.04.2020
## 3154                  non-diapausing           02.04.2020
## 3155                  non-diapausing             2.4.2020
## 3156                  non-diapausing             2.4.2020
## 3157                  non-diapausing             2.4.2020
## 3158                  non-diapausing             2.4.2020
## 3159                  non-diapausing             2.4.2020
## 3160                  non-diapausing             2.4.2020
## 3161                  non-diapausing             2.4.2020
## 3162                  non-diapausing             2.4.2020
## 3163                  non-diapausing             2.4.2020
## 3164                  non-diapausing             2.4.2020
## 3165                  non-diapausing             2.4.2020
## 3166                  non-diapausing             2.4.2020
## 3167                  non-diapausing             2.4.2020
## 3168                  non-diapausing             2.4.2020
## 3169                  non-diapausing             2.4.2020
## 3170                  non-diapausing             2.4.2020
## 3171                  non-diapausing             2.4.2020
## 3172                  non-diapausing             2.4.2020
## 3173                  non-diapausing             2.4.2020
## 3174                  non-diapausing             2.4.2020
## 3175                  non-diapausing             2.4.2020
## 3176                  non-diapausing             2.4.2020
## 3177                  non-diapausing             2.4.2020
## 3178                  non-diapausing             2.4.2020
## 3179                  non-diapausing             2.4.2020
## 3180                  non-diapausing             2.4.2020
## 3181                  non-diapausing             2.4.2020
## 3182                  non-diapausing             2.4.2020
## 3183                  non-diapausing             2.4.2020
## 3184                  non-diapausing             2.4.2020
## 3185                  non-diapausing             2.4.2020
## 3186                  non-diapausing             2.4.2020
## 3187                  non-diapausing             2.4.2020
## 3188                  non-diapausing             2.4.2020
## 3189                  non-diapausing             2.4.2020
## 3190                  non-diapausing             2.4.2020
## 3191                  non-diapausing             2.4.2020
## 3192                  non-diapausing             2.4.2020
## 3193                  non-diapausing             2.4.2020
## 3194                  non-diapausing             2.4.2020
## 3195                  non-diapausing             2.4.2020
## 3196                  non-diapausing             2.4.2020
## 3197                  non-diapausing             2.4.2020
## 3198                  non-diapausing             2.4.2020
## 3199                  non-diapausing             2.4.2020
## 3200                  non-diapausing             2.4.2020
## 3201                  non-diapausing             2.4.2020
## 3202                  non-diapausing             2.4.2020
## 3203                  non-diapausing             2.4.2020
## 3204                  non-diapausing             2.4.2020
## 3205                  non-diapausing             2.4.2020
## 3206                  non-diapausing           02.04.2020
## 3207                  non-diapausing           02.04.2020
## 3208                  non-diapausing           02.04.2020
## 3209                  non-diapausing           02.04.2020
## 3210                  non-diapausing           02.04.2020
## 3211                  non-diapausing           02.04.2020
## 3212                  non-diapausing           02.04.2020
## 3213                  non-diapausing           02.04.2020
## 3214                  non-diapausing           02.04.2020
## 3215                  non-diapausing           02.04.2020
## 3216                  non-diapausing           02.04.2020
## 3217                  non-diapausing           02.04.2020
## 3218                  non-diapausing           02.04.2020
## 3219                  non-diapausing           02.04.2020
## 3220                  non-diapausing           02.04.2020
## 3221                  non-diapausing           02.04.2020
## 3222                  non-diapausing           02.04.2020
## 3223                  non-diapausing           02.04.2020
## 3224                  non-diapausing           02.04.2020
## 3225                  non-diapausing           02.04.2020
## 3226                  non-diapausing           10.02.2019
## 3227                  non-diapausing           10.02.2019
## 3228                  non-diapausing           10.02.2019
## 3229                  non-diapausing           10.02.2019
## 3230                  non-diapausing           10.02.2019
## 3231                  non-diapausing           10.02.2019
## 3232                  non-diapausing           10.02.2019
## 3233                  non-diapausing           10.02.2019
## 3234                  non-diapausing           10.02.2019
## 3235                  non-diapausing           10.02.2019
## 3236                  non-diapausing           10.02.2019
## 3237                  non-diapausing           10.02.2019
## 3238                  non-diapausing           10.02.2019
## 3239                  non-diapausing           10.02.2019
## 3240                  non-diapausing           10.02.2019
## 3241                  non-diapausing           10.02.2019
## 3242                  non-diapausing           10.02.2019
## 3243                  non-diapausing           10.02.2019
## 3244                  non-diapausing           10.02.2019
## 3245                  non-diapausing           10.02.2019
## 3246                  non-diapausing           10.02.2019
## 3247                  non-diapausing           10.02.2019
## 3248                  non-diapausing           10.02.2019
## 3249                  non-diapausing           10.02.2019
## 3250                  non-diapausing           10.02.2019
## 3251                                           10.04.2019
## 3252                                           10.04.2019
## 3253                                           10.04.2019
## 3254                                           10.04.2019
## 3255                                           10.04.2019
## 3256                                           10.04.2019
## 3257                                           10.04.2019
## 3258                                           10.04.2019
## 3259                                           10.04.2019
## 3260                                           10.04.2019
## 3261                                           10.04.2019
## 3262                                           10.04.2019
## 3263                                           10.03.2019
## 3264                                           10.03.2019
## 3265                                           10.03.2019
## 3266                                           10.03.2019
## 3267                                           10.03.2019
## 3268                                           10.03.2019
## 3269                                           10.03.2019
## 3270                                           10.03.2019
## 3271                                           10.03.2019
## 3272                                           10.03.2019
## 3273                                           10.03.2019
## 3274                                           10.03.2019
## 3275                                           10.03.2019
## 3276                                           10.03.2019
## 3277                                           10.02.2019
## 3278                                           10.02.2019
## 3279                                           10.02.2019
## 3280                                           10.02.2019
## 3281                                           10.02.2019
## 3282                                           10.02.2019
## 3283                                           10.02.2019
## 3284                                           10.02.2019
## 3285                                           10.02.2019
## 3286                                           10.02.2019
## 3287                                           10.02.2019
## 3288                                           10.02.2019
## 3289                                           10.05.2019
## 3290                                           10.05.2019
## 3291                                           10.05.2019
## 3292                                           10.05.2019
## 3293                                           10.05.2019
## 3294                                           10.05.2019
## 3295                                           10.05.2019
## 3296                                           10.05.2019
## 3297                                           10.05.2019
## 3298                                           10.05.2019
## 3299                                           10.05.2019
## 3300                                           10.05.2019
## 3301                                           10.05.2019
## 3302                                           10.05.2019
## 3303                                           10.05.2019
## 3304                                           10.05.2019
## 3305                                           10.05.2019
## 3306                                           10.05.2019
## 3307                                           10.05.2019
## 3308                                           10.05.2019
## 3309                                           10.05.2019
## 3310                                           10.02.2019
## 3311                                           10.02.2019
## 3312                                           10.02.2019
## 3313                                           10.02.2019
## 3314                                           12.15.2016
## 3315                                           12.15.2016
## 3316                                           12.15.2016
## 3317                                           12.15.2016
## 3318                                           10.04.2019
## 3319                       tips torn           10.04.2019
## 3320                       tips torn           10.04.2019
## 3321                                           10.04.2019
## 3322                                           10.04.2019
## 3323                                           10.04.2019
## 3324                       tips torn           10.04.2019
## 3325                                           10.02.2019
## 3326                       tips torn           10.02.2019
## 3327                        d1 peach           10.02.2019
## 3328                                           10.02.2019
## 3329                                           10.02.2019
## 3330                                           10.02.2019
## 3331                                           10.04.2019
## 3332                       tips torn           10.04.2019
## 3333                       tips torn           10.04.2019
## 3334                       tips torn           10.03.2019
## 3335                                           10.03.2019
## 3336                                           10.03.2019
## 3337                                           10.03.2019
## 3338                                           10.03.2019
## 3339                       tips torn           10.03.2019
## 3340                      diapausing           05.21.2019
## 3341                      diapausing           05.21.2019
## 3342                      diapausing           05.21.2019
## 3343                      diapausing           05.21.2019
## 3344                      diapausing           05.21.2019
## 3345                      diapausing           05.21.2019
## 3346                      diapausing           05.21.2019
## 3347                      diapausing           05.21.2019
## 3348                      diapausing           05.21.2019
## 3349                      diapausing           05.21.2019
## 3350                      diapausing           05.21.2019
## 3351                      diapausing           05.21.2019
## 3352                      diapausing           05.21.2019
## 3353                      diapausing           05.21.2019
## 3354                      diapausing           05.21.2019
## 3355                      diapausing           05.21.2019
## 3356                      diapausing           05.21.2019
## 3357                      diapausing           05.21.2019
## 3358                      diapausing           05.21.2019
## 3359                      diapausing           05.21.2019
## 3360                      diapausing           05.21.2019
## 3361                      diapausing           05.21.2019
## 3362                      diapausing           05.21.2019
## 3363                      diapausing           05.21.2019
## 3364                      diapausing           05.21.2019
## 3365                      diapausing           05.21.2019
## 3366                      diapausing           05.21.2019
## 3367                      diapausing           05.21.2019
## 3368                      diapausing           05.21.2019
## 3369                      diapausing           05.21.2019
## 3370                      diapausing           05.21.2019
## 3371                      diapausing           05.21.2019
## 3372                      diapausing           05.21.2019
## 3373                      diapausing           05.21.2019
## 3374                      diapausing           05.21.2019
## 3375                      diapausing           05.21.2019
## 3376                      diapausing           05.21.2019
## 3377                      diapausing           05.21.2019
## 3378                      diapausing           05.21.2019
## 3379                      diapausing           05.21.2019
## 3380                      diapausing           05.21.2019
## 3381                      diapausing           05.21.2019
## 3382                      diapausing           05.21.2019
## 3383                      diapausing           05.21.2019
## 3384                      diapausing           05.21.2019
## 3385                      diapausing           05.21.2019
## 3386                      diapausing           05.21.2019
## 3387                      diapausing           05.21.2019
## 3388                      diapausing           05.21.2019
## 3389                      diapausing           05.21.2019
## 3390                      diapausing           05.21.2019
## 3391                      diapausing           05.21.2019
## 3392                      diapausing           05.21.2019
## 3393                      diapausing           05.21.2019
## 3394                                           05.21.2019
## 3395                                           05.21.2019
## 3396                                           05.21.2019
## 3397                                           05.21.2019
## 3398                                           05.21.2019
## 3399                                           05.21.2019
## 3400                                           05.21.2019
## 3401                                           05.21.2019
## 3402                                           05.21.2019
## 3403                                           05.21.2019
## 3404                                           05.21.2019
## 3405                                           05.21.2019
## 3406                                           05.21.2019
## 3407                                           05.21.2019
## 3408                                           05.21.2019
## 3409                                           05.21.2019
## 3410                                           05.21.2019
## 3411                                           05.21.2019
## 3412                                           05.21.2019
## 3413                                           05.21.2019
## 3414                                           05.21.2019
## 3415                                           05.21.2019
## 3416                                           05.21.2019
## 3417                                           05.21.2019
## 3418                                           05.21.2019
## 3419                                           05.21.2019
## 3420                                           05.21.2019
## 3421                                           05.21.2019
## 3422                                           05.21.2019
## 3423                                           05.21.2019
## 3424                                           05.21.2019
## 3425                                           05.21.2019
## 3426                                           05.21.2019
## 3427                                           05.21.2019
## 3428                                           05.21.2019
## 3429                                           05.21.2019
## 3430                                           05.21.2019
## 3431                                           05.21.2019
## 3432                                           05.21.2019
## 3433                                           05.21.2019
## 3434                                           05.21.2019
## 3435                                           05.21.2019
## 3436                                           05.21.2019
## 3437                                           05.21.2019
## 3438                                           05.21.2019
## 3439                                           05.21.2019
## 3440                                           05.21.2019
## 3441                                           05.21.2019
## 3442                                           05.21.2019
## 3443                                           05.21.2019
## 3444                                           05.21.2019
## 3445                                           05.21.2019
## 3446                                           05.21.2019
## 3447                                           05.21.2019
## 3448                                            5.17.2019
## 3449                                            5.17.2019
## 3450                                            5.17.2019
## 3451                                            5.17.2019
## 3452                                            5.17.2019
## 3453                                            5.17.2019
## 3454                                            5.17.2019
## 3455                                            5.17.2019
## 3456                                            5.17.2019
## 3457                                            5.17.2019
## 3458                                            5.17.2019
## 3459                                            5.17.2019
## 3460                                            5.17.2019
## 3461                                            5.17.2019
## 3462                                            5.17.2019
## 3463                                            5.17.2019
## 3464                                            5.17.2019
## 3465                                            5.17.2019
## 3466                                            5.17.2019
## 3467                                            5.17.2019
## 3468                                            5.17.2019
## 3469                                            5.17.2019
## 3470                                            5.17.2019
## 3471                                            5.17.2019
## 3472                                            5.17.2019
## 3473                                            5.17.2019
## 3474                                            5.17.2019
## 3475                                            5.17.2019
## 3476                                            5.17.2019
## 3477                                            5.17.2019
## 3478                                            5.17.2019
## 3479                                            5.17.2019
## 3480                                            5.17.2019
## 3481                                            5.17.2019
## 3482                                            5.17.2019
## 3483                                            5.17.2019
## 3484                                            5.17.2019
## 3485                                            5.17.2019
##                                  notes             site sex_binom pophost_binom
## 1                                              Ft.Myers        -1             1
## 2                                              Ft.Myers        -1             1
## 3                                              Ft.Myers        -1             1
## 4                                              Ft.Myers        -1             1
## 5                                              Ft.Myers        -1             1
## 6                                              Ft.Myers        -1             1
## 7                                              Ft.Myers        -1             1
## 8                                              Ft.Myers        -1             1
## 9                                              Ft.Myers        -1             1
## 10                                             Ft.Myers         1             1
## 11                                             Ft.Myers         1             1
## 12                                             Ft.Myers        -1             1
## 13                                             Ft.Myers        -1             1
## 14                                             Ft.Myers        -1             1
## 15                                             Ft.Myers         1             1
## 16                                             Ft.Myers        -1             1
## 17                                             Ft.Myers        -1             1
## 18                                             Ft.Myers         1             1
## 19                                             Ft.Myers        -1             1
## 20                                             Ft.Myers         1             1
## 21                                             Ft.Myers         1             1
## 22                                             Ft.Myers        -1             1
## 23                                             Ft.Myers         1             1
## 24                                             Ft.Myers        -1             1
## 25                                             Ft.Myers         1             1
## 26                                             Ft.Myers        -1             1
## 27                      date estimated         Ft.Myers         1             1
## 28                      date estimated         Ft.Myers         1             1
## 29                      date estimated         Ft.Myers         1             1
## 30                      date estimated         Ft.Myers        -1             1
## 31                      date estimated         Ft.Myers         1             1
## 32                      date estimated         Ft.Myers        -1             1
## 33                      date estimated         Ft.Myers        -1             1
## 34                      date estimated         Ft.Myers        -1             1
## 35                      date estimated         Ft.Myers         1             1
## 36                      date estimated         Ft.Myers        -1             1
## 37                      date estimated         Ft.Myers         1             1
## 38                      date estimated         Ft.Myers        -1             1
## 39                      date estimated         Ft.Myers        -1             1
## 40                      date estimated         Ft.Myers        -1             1
## 41                      date estimated         Ft.Myers        -1             1
## 42                      date estimated         Ft.Myers         1             1
## 43                      date estimated         Ft.Myers        -1             1
## 44                      date estimated         Ft.Myers         1             1
## 45                      date estimated         Ft.Myers        -1             1
## 46                      date estimated         Ft.Myers         1             1
## 47                      date estimated         Ft.Myers        -1             1
## 48                      date estimated         Ft.Myers         1             1
## 49                      date estimated         Ft.Myers         1             1
## 50                      date estimated         Ft.Myers        -1             1
## 51                      date estimated         Ft.Myers         1             1
## 52                      date estimated         Ft.Myers        -1             1
## 53                      date estimated         Ft.Myers        -1             1
## 54                      date estimated         Ft.Myers         1             1
## 55                      date estimated         Ft.Myers        -1             1
## 56                      date estimated         Ft.Myers         1             1
## 57                      date estimated         Ft.Myers        -1             1
## 58                      date estimated         Ft.Myers        -1             1
## 59                      date estimated         Ft.Myers         1             1
## 60                      date estimated         Ft.Myers         1             1
## 61                      date estimated         Ft.Myers         1             1
## 62                      date estimated         Ft.Myers        -1             1
## 63                      date estimated         Ft.Myers         1             1
## 64                      date estimated         Ft.Myers        -1             1
## 65                      date estimated         Ft.Myers         1             1
## 66                      date estimated         Ft.Myers         1             1
## 67                      date estimated         Ft.Myers        -1             1
## 68                      date estimated         Ft.Myers         1             1
## 69                      date estimated         Ft.Myers         1             1
## 70                      date estimated         Ft.Myers        -1             1
## 71                      date estimated         Ft.Myers         1             1
## 72                      date estimated         Ft.Myers         1             1
## 73                      date estimated         Ft.Myers         1             1
## 74                      date estimated         Ft.Myers        -1             1
## 75                      date estimated         Ft.Myers        -1             1
## 76                      date estimated SW 210th Terrace         1            -1
## 77                      date estimated SW 210th Terrace        -1            -1
## 78                      date estimated SW 210th Terrace         1            -1
## 79                      date estimated SW 210th Terrace        -1            -1
## 80                      date estimated SW 210th Terrace         1            -1
## 81                      date estimated SW 210th Terrace        -1            -1
## 82                      date estimated SW 210th Terrace        -1            -1
## 83                      date estimated SW 210th Terrace        -1            -1
## 84                      date estimated SW 210th Terrace         1            -1
## 85                      date estimated SW 210th Terrace         1            -1
## 86                      date estimated SW 210th Terrace        -1            -1
## 87                      date estimated SW 210th Terrace        -1            -1
## 88                      date estimated SW 210th Terrace        -1            -1
## 89                      date estimated SW 210th Terrace        -1            -1
## 90                      date estimated SW 210th Terrace         1            -1
## 91                      date estimated SW 210th Terrace        -1            -1
## 92                      date estimated SW 210th Terrace        -1            -1
## 93                      date estimated SW 210th Terrace        -1            -1
## 94                      date estimated SW 210th Terrace         1            -1
## 95                      date estimated SW 210th Terrace        -1            -1
## 96                      date estimated SW 210th Terrace         1            -1
## 97                      date estimated SW 210th Terrace         1            -1
## 98                      date estimated SW 210th Terrace         1            -1
## 99                      date estimated SW 210th Terrace         1            -1
## 100                     date estimated SW 210th Terrace         1            -1
## 101                     date estimated SW 210th Terrace         1            -1
## 102                     date estimated SW 210th Terrace         1            -1
## 103                                    SW 210th Terrace        -1            -1
## 104                                    SW 210th Terrace         1            -1
## 105                                    SW 210th Terrace        -1            -1
## 106                                    SW 210th Terrace         1            -1
## 107                                    SW 210th Terrace         1            -1
## 108                                    SW 210th Terrace         1            -1
## 109                                    SW 210th Terrace        -1            -1
## 110                                    SW 210th Terrace        -1            -1
## 111                                    SW 210th Terrace        -1            -1
## 112                                    SW 210th Terrace        -1            -1
## 113                                    SW 210th Terrace        -1            -1
## 114                                         SW 296th St         1             1
## 115                                         SW 296th St         1             1
## 116                                         SW 296th St         1             1
## 117                                         SW 296th St         1             1
## 118                                         SW 296th St        -1             1
## 119                                         SW 296th St         1             1
## 120                                         SW 296th St        -1             1
## 121                                         SW 296th St         1             1
## 122                                         SW 296th St         1             1
## 123                                         SW 296th St        -1             1
## 124                                         SW 296th St         1             1
## 125                                         SW 296th St        -1             1
## 126                                         SW 296th St        -1             1
## 127                                         SW 296th St        -1             1
## 128                                         SW 296th St         1             1
## 129                                         SW 296th St        -1             1
## 130                                         SW 296th St        -1             1
## 131                                         SW 296th St        -1             1
## 132                                         SW 296th St        -1             1
## 133                                         SW 296th St         1             1
## 134                                         SW 296th St         1             1
## 135                                         SW 296th St        -1             1
## 136                                         SW 296th St        -1             1
## 137                                         SW 296th St         1             1
## 138                                         SW 296th St         1             1
## 139                                         SW 296th St        -1             1
## 140                                         Charlemagne        -1            -1
## 141                                         Charlemagne        -1            -1
## 142                                         Charlemagne         1            -1
## 143                                         Charlemagne        -1            -1
## 144                                         Charlemagne        -1            -1
## 145                                         Charlemagne        -1            -1
## 146                                         Charlemagne         1            -1
## 147                                         Charlemagne        -1            -1
## 148                                         Charlemagne        -1            -1
## 149                                         Charlemagne        -1            -1
## 150                                         Charlemagne        -1            -1
## 151                                         Charlemagne        -1            -1
## 152                                         Charlemagne        -1            -1
## 153      date estimated; GPS estimated      Charlemagne        -1            -1
## 154      date estimated; GPS estimated      Charlemagne         1            -1
## 155      date estimated; GPS estimated      Charlemagne         1            -1
## 156      date estimated; GPS estimated      Charlemagne        -1            -1
## 157      date estimated; GPS estimated      Charlemagne         1            -1
## 158      date estimated; GPS estimated      Charlemagne        -1            -1
## 159      date estimated; GPS estimated      Charlemagne         1            -1
## 160      date estimated; GPS estimated      Charlemagne        -1            -1
## 161      date estimated; GPS estimated      Charlemagne         1            -1
## 162      date estimated; GPS estimated      Charlemagne         1            -1
## 163      date estimated; GPS estimated      Charlemagne         1            -1
## 164      date estimated; GPS estimated      Charlemagne         1            -1
## 165      date estimated; GPS estimated      Charlemagne         1            -1
## 166      date estimated; GPS estimated      Charlemagne        -1            -1
## 167      date estimated; GPS estimated      Charlemagne        -1            -1
## 168      date estimated; GPS estimated      Charlemagne         1            -1
## 169      date estimated; GPS estimated      Charlemagne        -1            -1
## 170      date estimated; GPS estimated      Charlemagne        -1            -1
## 171      date estimated; GPS estimated      Charlemagne         1            -1
## 172      date estimated; GPS estimated      Charlemagne        -1            -1
## 173      date estimated; GPS estimated      Charlemagne        -1            -1
## 174      date estimated; GPS estimated      Charlemagne        -1            -1
## 175      date estimated; GPS estimated      Charlemagne         1            -1
## 176      date estimated; GPS estimated      Charlemagne        -1            -1
## 177      date estimated; GPS estimated      Charlemagne         1            -1
## 178      date estimated; GPS estimated      Charlemagne        -1            -1
## 179      date estimated; GPS estimated      Charlemagne         1            -1
## 180      date estimated; GPS estimated      Charlemagne        -1            -1
## 181      date estimated; GPS estimated      Charlemagne        -1            -1
## 182      date estimated; GPS estimated      Charlemagne         1            -1
## 183      date estimated; GPS estimated      Charlemagne        -1            -1
## 184      date estimated; GPS estimated      Charlemagne        -1            -1
## 185      date estimated; GPS estimated      Charlemagne         1            -1
## 186      date estimated; GPS estimated      Charlemagne        -1            -1
## 187      date estimated; GPS estimated      Charlemagne         1            -1
## 188      date estimated; GPS estimated      Charlemagne        -1            -1
## 189      date estimated; GPS estimated      Charlemagne         1            -1
## 190      date estimated; GPS estimated      Charlemagne         1            -1
## 191      date estimated; GPS estimated      Charlemagne         1            -1
## 192      date estimated; GPS estimated      Charlemagne         1            -1
## 193      date estimated; GPS estimated      Charlemagne         1            -1
## 194      date estimated; GPS estimated      Charlemagne        -1            -1
## 195      date estimated; GPS estimated      Charlemagne        -1            -1
## 196      date estimated; GPS estimated      Charlemagne        -1            -1
## 197      date estimated; GPS estimated      Charlemagne        -1            -1
## 198      date estimated; GPS estimated      Charlemagne        -1            -1
## 199      date estimated; GPS estimated      Charlemagne         1            -1
## 200      date estimated; GPS estimated      Charlemagne         1            -1
## 201                                            Polk Ave        -1             1
## 202                                            Polk Ave        -1             1
## 203                                            Polk Ave        -1             1
## 204                                            Polk Ave         1             1
## 205                                            Polk Ave        -1             1
## 206                                            Polk Ave        -1             1
## 207                                            Polk Ave         1             1
## 208                                            Polk Ave        -1             1
## 209                                            Polk Ave        -1             1
## 210                                            Polk Ave        -1             1
## 211                                            Polk Ave         1             1
## 212                                            Polk Ave        -1             1
## 213                                            Polk Ave         1             1
## 214                                            Polk Ave        -1             1
## 215                                            Polk Ave        -1             1
## 216                                            Polk Ave        -1             1
## 217                                            Polk Ave         1             1
## 218                                            Polk Ave        -1             1
## 219                                            Polk Ave        -1             1
## 220                                            Polk Ave        -1             1
## 221                                            Polk Ave        -1             1
## 222                                            Polk Ave        -1             1
## 223                                            Polk Ave        -1             1
## 224                                            Polk Ave         1             1
## 225                                            Polk Ave        -1             1
## 226                                            Polk Ave        -1             1
## 227                                            Polk Ave        -1             1
## 228                                            Polk Ave        -1             1
## 229                                            Polk Ave        -1             1
## 230                     date estimated         Polk Ave        -1             1
## 231                     date estimated         Polk Ave        -1             1
## 232                     date estimated         Polk Ave         1             1
## 233                     date estimated         Polk Ave         1             1
## 234                     date estimated         Polk Ave        -1             1
## 235                     date estimated         Polk Ave        -1             1
## 236                     date estimated         Polk Ave         1             1
## 237                     date estimated         Polk Ave         1             1
## 238                     date estimated         Polk Ave        -1             1
## 239                     date estimated         Polk Ave         1             1
## 240                     date estimated         Polk Ave         1             1
## 241                     date estimated         Polk Ave        -1             1
## 242                     date estimated         Polk Ave        -1             1
## 243                     date estimated         Polk Ave         1             1
## 244                     date estimated         Polk Ave        -1             1
## 245                     date estimated         Polk Ave         1             1
## 246                     date estimated         Polk Ave         1             1
## 247                     date estimated         Polk Ave         1             1
## 248                     date estimated         Polk Ave         1             1
## 249                     date estimated         Polk Ave         1             1
## 250                     date estimated         Polk Ave        -1             1
## 251                     date estimated         Polk Ave        -1             1
## 252                     date estimated         Polk Ave        -1             1
## 253                     date estimated         Polk Ave        -1             1
## 254                     date estimated         Polk Ave        -1             1
## 255                     date estimated         Polk Ave        -1             1
## 256                     date estimated         Polk Ave        -1             1
## 257                     date estimated         Polk Ave         1             1
## 258                     date estimated         Polk Ave        -1             1
## 259                     date estimated         Polk Ave         1             1
## 260                     date estimated         Polk Ave        -1             1
## 261      date estimated; GPS estimated      Mount & 8th        -1             1
## 262      date estimated; GPS estimated      Mount & 8th        -1             1
## 263      date estimated; GPS estimated      Mount & 8th         1             1
## 264      date estimated; GPS estimated      Mount & 8th        -1             1
## 265      date estimated; GPS estimated      Mount & 8th         1             1
## 266      date estimated; GPS estimated      Mount & 8th        -1             1
## 267      date estimated; GPS estimated      Mount & 8th        -1             1
## 268      date estimated; GPS estimated      Mount & 8th         1             1
## 269      date estimated; GPS estimated      Mount & 8th        -1             1
## 270      date estimated; GPS estimated      Mount & 8th        -1             1
## 271      date estimated; GPS estimated      Mount & 8th         1             1
## 272      date estimated; GPS estimated      Mount & 8th        -1             1
## 273      date estimated; GPS estimated      Mount & 8th         1             1
## 274      date estimated; GPS estimated      Mount & 8th        -1             1
## 275      date estimated; GPS estimated      Mount & 8th        -1             1
## 276      date estimated; GPS estimated      Mount & 8th         1             1
## 277      date estimated; GPS estimated      Mount & 8th        -1             1
## 278      date estimated; GPS estimated      Mount & 8th        -1             1
## 279      date estimated; GPS estimated      Mount & 8th         1             1
## 280      date estimated; GPS estimated      Mount & 8th        -1             1
## 281      date estimated; GPS estimated      Mount & 8th         1             1
## 282      date estimated; GPS estimated      Mount & 8th        -1             1
## 283      date estimated; GPS estimated      Mount & 8th         1             1
## 284      date estimated; GPS estimated      Mount & 8th         1             1
## 285      date estimated; GPS estimated      Mount & 8th         1             1
## 286      date estimated; GPS estimated        Founder's        -1            -1
## 287      date estimated; GPS estimated        Founder's         1            -1
## 288      date estimated; GPS estimated        Founder's        -1            -1
## 289      date estimated; GPS estimated        Founder's        -1            -1
## 290      date estimated; GPS estimated        Founder's        -1            -1
## 291      date estimated; GPS estimated        Founder's         1            -1
## 292      date estimated; GPS estimated        Founder's        -1            -1
## 293      date estimated; GPS estimated        Founder's        -1            -1
## 294      date estimated; GPS estimated        Founder's        -1            -1
## 295      date estimated; GPS estimated        Founder's         1            -1
## 296      date estimated; GPS estimated        Founder's         1            -1
## 297      date estimated; GPS estimated        Founder's        -1            -1
## 298      date estimated; GPS estimated        Founder's        -1            -1
## 299      date estimated; GPS estimated        Founder's         1            -1
## 300      date estimated; GPS estimated        Founder's        -1            -1
## 301      date estimated; GPS estimated        Founder's        -1            -1
## 302      date estimated; GPS estimated        Founder's        -1            -1
## 303      date estimated; GPS estimated        Founder's        -1            -1
## 304      date estimated; GPS estimated        Founder's        -1            -1
## 305      date estimated; GPS estimated        Founder's         1            -1
## 306      date estimated; GPS estimated        Founder's        -1            -1
## 307      date estimated; GPS estimated        Founder's         1            -1
## 308      date estimated; GPS estimated        Founder's         1            -1
## 309      date estimated; GPS estimated        Founder's         1            -1
## 310      date estimated; GPS estimated        Founder's         1            -1
## 311      date estimated; GPS estimated        Founder's        -1            -1
## 312      date estimated; GPS estimated        Founder's         1            -1
## 313      date estimated; GPS estimated        Founder's        -1            -1
## 314      date estimated; GPS estimated        Founder's        -1            -1
## 315      date estimated; GPS estimated        Founder's        -1            -1
## 316      date estimated; GPS estimated        Founder's         1            -1
## 317      date estimated; GPS estimated        Founder's         1            -1
## 318      date estimated; GPS estimated        Founder's         1            -1
## 319      date estimated; GPS estimated        Founder's        -1            -1
## 320      date estimated; GPS estimated        Founder's         1            -1
## 321      date estimated; GPS estimated        Founder's        -1            -1
## 322                                            Ft.Myers        -1             1
## 323                                            Ft.Myers         1             1
## 324                                            Ft.Myers         1             1
## 325                                            Ft.Myers         1             1
## 326                                            Ft.Myers         1             1
## 327                                            Ft.Myers        -1             1
## 328                                            Ft.Myers         1             1
## 329                                            Ft.Myers         1             1
## 330                                            Ft.Myers         1             1
## 331                                            Ft.Myers        -1             1
## 332                                            Ft.Myers         1             1
## 333                                            Ft.Myers         1             1
## 334                                            Ft.Myers        -1             1
## 335                                            Ft.Myers         1             1
## 336                                            Ft.Myers         1             1
## 337                                            Ft.Myers        -1             1
## 338                                            Ft.Myers        -1             1
## 339                                            Ft.Myers         1             1
## 340                                            Ft.Myers         1             1
## 341                                            Ft.Myers         1             1
## 342                                            Ft.Myers         1             1
## 343                                            Ft.Myers         1             1
## 344                                            Ft.Myers         1             1
## 345                                            Ft.Myers         1             1
## 346                                            Ft.Myers        -1             1
## 347                                            Ft.Myers         1             1
## 348                                            Ft.Myers         1             1
## 349                                            Ft.Myers         1             1
## 350                                            Ft.Myers         1             1
## 351                                            Ft.Myers         1             1
## 352                                            Ft.Myers         1             1
## 353                                            Ft.Myers         1             1
## 354                                            Ft.Myers         1             1
## 355                                            Ft.Myers         1             1
## 356                                            Ft.Myers        -1             1
## 357                                            Ft.Myers         1             1
## 358                                            Ft.Myers        -1             1
## 359                                            Ft.Myers         1             1
## 360                                            Ft.Myers        -1             1
## 361                                            Ft.Myers         1             1
## 362                                            Ft.Myers         1             1
## 363                                            Ft.Myers         1             1
## 364                                            Ft.Myers         1             1
## 365                                            Ft.Myers         1             1
## 366                                            Ft.Myers        -1             1
## 367                                            Ft.Myers         1             1
## 368                                            Ft.Myers        -1             1
## 369                                            Ft.Myers         1             1
## 370                                            Ft.Myers        -1             1
## 371                                            Ft.Myers        -1             1
## 372                                            Ft.Myers        -1             1
## 373                                            Ft.Myers         1             1
## 374                                            Ft.Myers         1             1
## 375                                            Ft.Myers         1             1
## 376                                            Ft.Myers        -1             1
## 377                                            Ft.Myers         1             1
## 378                                            Ft.Myers         1             1
## 379                                            Ft.Myers         1             1
## 380                                            Ft.Myers        -1             1
## 381                                            Ft.Myers         1             1
## 382                                            Ft.Myers        -1             1
## 383                                            Ft.Myers         1             1
## 384                                            Ft.Myers         1             1
## 385                                            Ft.Myers         1             1
## 386                                            Ft.Myers         1             1
## 387                                            Ft.Myers         1             1
## 388                                            Ft.Myers        -1             1
## 389                                            Ft.Myers        -1             1
## 390                                            Ft.Myers         1             1
## 391                                            Ft.Myers         1             1
## 392                                            Ft.Myers         1             1
## 393                                            Ft.Myers         1             1
## 394                                            Ft.Myers         1             1
## 395                                            Ft.Myers         1             1
## 396                                            Ft.Myers         1             1
## 397                      GPS estimated       23rd & 8th        -1             1
## 398                      GPS estimated       23rd & 8th        -1             1
## 399                      GPS estimated       23rd & 8th         1             1
## 400                      GPS estimated       23rd & 8th        -1             1
## 401                      GPS estimated       23rd & 8th        -1             1
## 402                      GPS estimated       23rd & 8th        -1             1
## 403                      GPS estimated       23rd & 8th        -1             1
## 404                      GPS estimated       23rd & 8th        -1             1
## 405                      GPS estimated       23rd & 8th        -1             1
## 406                      GPS estimated       23rd & 8th        -1             1
## 407                      GPS estimated       23rd & 8th         1             1
## 408                      GPS estimated       23rd & 8th        -1             1
## 409                      GPS estimated       23rd & 8th         1             1
## 410                      GPS estimated       23rd & 8th         1             1
## 411                                    SW 210th Terrace         1            -1
## 412                                    SW 210th Terrace         1            -1
## 413                                    SW 210th Terrace         1            -1
## 414                                    SW 210th Terrace         1            -1
## 415                                    SW 210th Terrace        -1            -1
## 416                                    SW 210th Terrace         1            -1
## 417                                    SW 210th Terrace        -1            -1
## 418                                    SW 210th Terrace         1            -1
## 419                                    SW 210th Terrace         1            -1
## 420                                    SW 210th Terrace         1            -1
## 421                                    SW 210th Terrace         1            -1
## 422                                    SW 210th Terrace        -1            -1
## 423                                    SW 210th Terrace         1            -1
## 424                                    SW 210th Terrace         1            -1
## 425                                    SW 210th Terrace        -1            -1
## 426                                    SW 210th Terrace         1            -1
## 427                                    SW 210th Terrace         1            -1
## 428                                    SW 210th Terrace        -1            -1
## 429                                    SW 210th Terrace         1            -1
## 430                                    SW 210th Terrace        -1            -1
## 431                                    SW 210th Terrace        -1            -1
## 432                                    SW 210th Terrace        -1            -1
## 433                                    SW 210th Terrace         1            -1
## 434                      GPS estimated      SW 296th St        -1             1
## 435                      GPS estimated      SW 296th St         1             1
## 436                      GPS estimated      SW 296th St        -1             1
## 437                      GPS estimated      SW 296th St         1             1
## 438                      GPS estimated      SW 296th St         1             1
## 439                      GPS estimated      SW 296th St        -1             1
## 440                      GPS estimated      SW 296th St         1             1
## 441                      GPS estimated      SW 296th St        -1             1
## 442                      GPS estimated      SW 296th St        -1             1
## 443                      GPS estimated      SW 296th St        -1             1
## 444                      GPS estimated      SW 296th St         1             1
## 445                      GPS estimated      SW 296th St         1             1
## 446                      GPS estimated      SW 296th St        -1             1
## 447                      GPS estimated      SW 296th St         1             1
## 448                      GPS estimated      SW 296th St        -1             1
## 449                      GPS estimated      SW 296th St         1             1
## 450                      GPS estimated      SW 296th St        -1             1
## 451                      GPS estimated      SW 296th St         1             1
## 452                      GPS estimated      SW 296th St        -1             1
## 453                      GPS estimated      SW 296th St        -1             1
## 454                      GPS estimated      SW 296th St         1             1
## 455                      GPS estimated      SW 296th St         1             1
## 456                      GPS estimated      SW 296th St        -1             1
## 457                      GPS estimated      SW 296th St         1             1
## 458                      GPS estimated      SW 296th St        -1             1
## 459                      GPS estimated      SW 296th St         1             1
## 460                      GPS estimated      SW 296th St         1             1
## 461                      GPS estimated      SW 296th St         1             1
## 462                      GPS estimated      SW 296th St        -1             1
## 463                                                  JP        -1            -1
## 464                                                  JP         1            -1
## 465                                                  JP         1            -1
## 466                                                  JP        -1            -1
## 467                                                  JP         1            -1
## 468                                                  JP         1            -1
## 469                                                  JP        -1            -1
## 470                                                  JP         1            -1
## 471                                                  JP         1            -1
## 472                                                  JP        -1            -1
## 473                                                  JP        -1            -1
## 474                                                  JP         1            -1
## 475                                                  JP        -1            -1
## 476                                                  JP        -1            -1
## 477                                                  JP        -1            -1
## 478                                                  JP         1            -1
## 479                                                  JP        -1            -1
## 480                                                  JP         1            -1
## 481                                                  JP        -1            -1
## 482                                                  JP        -1            -1
## 483                                                  JP         1            -1
## 484                                                  JP        -1            -1
## 485                                                  JP         1            -1
## 486                                                  JP        -1            -1
## 487                                                  JP         1            -1
## 488                                                  JP         1            -1
## 489                                                  JP         1            -1
## 490                                                  JP        -1            -1
## 491                                                  JP         1            -1
## 492                                                  JP         1            -1
## 493                                                  JP        -1            -1
## 494                                                  JP         1            -1
## 495                                            Polk Ave         1             1
## 496                                            Polk Ave        -1             1
## 497                                            Polk Ave         1             1
## 498                                            Polk Ave         1             1
## 499                                            Polk Ave         1             1
## 500                                            Polk Ave        -1             1
## 501                                            Polk Ave         1             1
## 502                                            Polk Ave        -1             1
## 503                                            Polk Ave         1             1
## 504                                            Polk Ave         1             1
## 505                                            Polk Ave        -1             1
## 506                                            Polk Ave         1             1
## 507                                            Polk Ave        -1             1
## 508                                            Polk Ave         1             1
## 509                                            Polk Ave        -1             1
## 510                                            Polk Ave        -1             1
## 511                                            Polk Ave        -1             1
## 512                                            Polk Ave         1             1
## 513                                            Polk Ave        -1             1
## 514                                            Polk Ave        -1             1
## 515                                            Polk Ave        -1             1
## 516                                            Polk Ave         1             1
## 517                                            Polk Ave         1             1
## 518                                            Polk Ave         1             1
## 519                                            Polk Ave        -1             1
## 520                                            Polk Ave        -1             1
## 521                                            Polk Ave        -1             1
## 522                                            Polk Ave        -1             1
## 523                                            Polk Ave        -1             1
## 524                                            Polk Ave         1             1
## 525                                            Polk Ave        -1             1
## 526                                            Polk Ave        -1             1
## 527                                            Polk Ave         1             1
## 528                                            Polk Ave        -1             1
## 529                                            Polk Ave        -1             1
## 530                                            Polk Ave        -1             1
## 531                                            Polk Ave        -1             1
## 532                                            Polk Ave        -1             1
## 533                                            Polk Ave         1             1
## 534                                            Polk Ave        -1             1
## 535                                            Polk Ave         1             1
## 536                                            Polk Ave        -1             1
## 537                                            Polk Ave         1             1
## 538                                            Polk Ave         1             1
## 539                                            Polk Ave         1             1
## 540                                            Polk Ave        -1             1
## 541                                            Polk Ave        -1             1
## 542                                            Polk Ave        -1             1
## 543                                            Polk Ave         1             1
## 544                                            Polk Ave        -1             1
## 545                                            Polk Ave         1             1
## 546                                            Polk Ave        -1             1
## 547                                            Polk Ave         1             1
## 548                                            Polk Ave         1             1
## 549                                            Polk Ave         1             1
## 550                                            Polk Ave        -1             1
## 551                                            Polk Ave        -1             1
## 552                                            Polk Ave         1             1
## 553                                            Polk Ave        -1             1
## 554                                            Polk Ave        -1             1
## 555                                            Polk Ave        -1             1
## 556                                            Polk Ave         1             1
## 557                                            Polk Ave         1             1
## 558                                            Polk Ave        -1             1
## 559                                            Polk Ave        -1             1
## 560                                            Polk Ave         1             1
## 561                                            Polk Ave        -1             1
## 562                                            Polk Ave        -1             1
## 563                                            Polk Ave        -1             1
## 564                                            Polk Ave        -1             1
## 565                                            Polk Ave        -1             1
## 566                                            Polk Ave        -1             1
## 567                                            Polk Ave        -1             1
## 568                                            Polk Ave        -1             1
## 569                                            Polk Ave        -1             1
## 570                                            Polk Ave         1             1
## 571                                            Polk Ave        -1             1
## 572                                            Polk Ave        -1             1
## 573                                            Polk Ave         1             1
## 574                                            Polk Ave        -1             1
## 575                                            Polk Ave        -1             1
## 576                                            Polk Ave         1             1
## 577                                            Polk Ave        -1             1
## 578                                            Polk Ave        -1             1
## 579                                         Mount & 8th         1             1
## 580                                         Mount & 8th         1             1
## 581                                         Mount & 8th         1             1
## 582                                         Mount & 8th         1             1
## 583                                         Mount & 8th        -1             1
## 584                                         Mount & 8th        -1             1
## 585                                         Mount & 8th         1             1
## 586                                         Mount & 8th         1             1
## 587                                         Mount & 8th        -1             1
## 588                                         Mount & 8th        -1             1
## 589                                         Mount & 8th         1             1
## 590                                         Mount & 8th        -1             1
## 591                                         Mount & 8th         1             1
## 592                                         Mount & 8th         1             1
## 593                                         Mount & 8th        -1             1
## 594                                         Mount & 8th        -1             1
## 595                                         Mount & 8th         1             1
## 596                                         Mount & 8th         1             1
## 597                                         Mount & 8th         1             1
## 598                                         Mount & 8th         1             1
## 599                                         Mount & 8th         1             1
## 600                                         Mount & 8th         1             1
## 601                                         Mount & 8th        -1             1
## 602                                         Mount & 8th         1             1
## 603                                         Mount & 8th         1             1
## 604                                         Mount & 8th        -1             1
## 605                                         Mount & 8th        -1             1
## 606                                         Mount & 8th        -1             1
## 607                                         Mount & 8th        -1             1
## 608                                         Mount & 8th         1             1
## 609                                         Mount & 8th         1             1
## 610                                         Mount & 8th        -1             1
## 611                                         Mount & 8th         1             1
## 612                                         Mount & 8th         1             1
## 613                                         Mount & 8th         1             1
## 614                                         Mount & 8th         1             1
## 615                                         Mount & 8th         1             1
## 616                                         Mount & 8th        -1             1
## 617                                         Mount & 8th        -1             1
## 618                                         Mount & 8th        -1             1
## 619                                         Mount & 8th         1             1
## 620                                         Mount & 8th         1             1
## 621                                         Mount & 8th        -1             1
## 622                                         Mount & 8th        -1             1
## 623                                         Mount & 8th        -1             1
## 624                                         Mount & 8th        -1             1
## 625                                         Mount & 8th        -1             1
## 626                                         Mount & 8th        -1             1
## 627                                         Mount & 8th         1             1
## 628                                         Mount & 8th         1             1
## 629                                         Mount & 8th         1             1
## 630                                         Mount & 8th        -1             1
## 631                                         Mount & 8th        -1             1
## 632                                         Mount & 8th         1             1
## 633                                         Mount & 8th        -1             1
## 634                                         Mount & 8th        -1             1
## 635                                         Mount & 8th         1             1
## 636                                         Mount & 8th        -1             1
## 637                                         Mount & 8th        -1             1
## 638                                         Mount & 8th        -1             1
## 639                                         Mount & 8th         1             1
## 640                                         Mount & 8th        -1             1
## 641                                         Mount & 8th         1             1
## 642                                         Mount & 8th        -1             1
## 643                                         Mount & 8th        -1             1
## 644                                         Mount & 8th        -1             1
## 645                                         Mount & 8th        -1             1
## 646                                         Mount & 8th         1             1
## 647                                         Mount & 8th        -1             1
## 648                                         Mount & 8th        -1             1
## 649                                         Mount & 8th        -1             1
## 650                                         Mount & 8th         1             1
## 651                                         Mount & 8th         1             1
## 652                                         Mount & 8th         1             1
## 653                                         Mount & 8th        -1             1
## 654                                         Mount & 8th        -1             1
## 655                                         Mount & 8th        -1             1
## 656                                         Mount & 8th        -1             1
## 657                                         Mount & 8th        -1             1
## 658                                         Mount & 8th        -1             1
## 659                                         Mount & 8th        -1             1
## 660                                         Mount & 8th        -1             1
## 661                                         Mount & 8th         1             1
## 662                                         Mount & 8th        -1             1
## 663                                         Mount & 8th         1             1
## 664                                         Mount & 8th         1             1
## 665                                         Mount & 8th        -1             1
## 666                                         Mount & 8th        -1             1
## 667                                         Mount & 8th         1             1
## 668                                         Mount & 8th        -1             1
## 669                                         Mount & 8th        -1             1
## 670                                           Founder's        -1            -1
## 671                                           Founder's         1            -1
## 672                                           Founder's         1            -1
## 673                                           Founder's        -1            -1
## 674                                           Founder's        -1            -1
## 675                                           Founder's         1            -1
## 676                                           Founder's        -1            -1
## 677                                           Founder's         1            -1
## 678                                           Founder's         1            -1
## 679                                           Founder's        -1            -1
## 680                                           Founder's         1            -1
## 681                                           Founder's         1            -1
## 682                                           Founder's         1            -1
## 683                                           Founder's        -1            -1
## 684                                           Founder's        -1            -1
## 685                                           Founder's        -1            -1
## 686                                           Founder's         1            -1
## 687                                           Founder's         1            -1
## 688                                           Founder's         1            -1
## 689                                           Founder's         1            -1
## 690                                           Founder's         1            -1
## 691                                           Founder's        -1            -1
## 692                                           Founder's         1            -1
## 693                                           Founder's        -1            -1
## 694                                           Founder's         1            -1
## 695                                           Founder's        -1            -1
## 696                                           Founder's        -1            -1
## 697                                           Founder's         1            -1
## 698                                           Founder's        -1            -1
## 699                                           Founder's        -1            -1
## 700                                           Founder's         1            -1
## 701                                           Founder's        -1            -1
## 702                                           Founder's        -1            -1
## 703                                           Founder's        -1            -1
## 704                                           Founder's         1            -1
## 705                                          23rd & 8th         1             1
## 706                                          23rd & 8th        -1             1
## 707                                          23rd & 8th        -1             1
## 708                                          23rd & 8th        -1             1
## 709                                          23rd & 8th         1             1
## 710                                          23rd & 8th         1             1
## 711                                          23rd & 8th         1             1
## 712                                          23rd & 8th         1             1
## 713                                          23rd & 8th        -1             1
## 714                                          23rd & 8th         1             1
## 715                                          23rd & 8th        -1             1
## 716                                          23rd & 8th         1             1
## 717                                          23rd & 8th         1             1
## 718                                          23rd & 8th        -1             1
## 719                                          23rd & 8th         1             1
## 720                                          23rd & 8th         1             1
## 721                                          23rd & 8th        -1             1
## 722                                          23rd & 8th         1             1
## 723                                          23rd & 8th         1             1
## 724                                          23rd & 8th         1             1
## 725                                          23rd & 8th        -1             1
## 726                                          23rd & 8th        -1             1
## 727                                          23rd & 8th         1             1
## 728                                          23rd & 8th         1             1
## 729                                          23rd & 8th        -1             1
## 730                                          23rd & 8th        -1             1
## 731                                          23rd & 8th         1             1
## 732                                          23rd & 8th         1             1
## 733                                          23rd & 8th         1             1
## 734                                          23rd & 8th        -1             1
## 735                                          23rd & 8th         1             1
## 736                                          23rd & 8th         1             1
## 737                                          23rd & 8th         1             1
## 738                                          23rd & 8th        -1             1
## 739                                          23rd & 8th         1             1
## 740                                          23rd & 8th         1             1
## 741                                          23rd & 8th         1             1
## 742                                          23rd & 8th        -1             1
## 743                                          23rd & 8th         1             1
## 744                                          23rd & 8th        -1             1
## 745                                          23rd & 8th        -1             1
## 746                                          23rd & 8th         1             1
## 747                                          23rd & 8th        -1             1
## 748                                          23rd & 8th         1             1
## 749                                          23rd & 8th        -1             1
## 750                                          23rd & 8th         1             1
## 751                                          23rd & 8th        -1             1
## 752                                          23rd & 8th        -1             1
## 753                                    SW 210th Terrace        -1            -1
## 754                                    SW 210th Terrace        -1            -1
## 755                                    SW 210th Terrace        -1            -1
## 756                                    SW 210th Terrace         1            -1
## 757                                    SW 210th Terrace         1            -1
## 758                                    SW 210th Terrace         1            -1
## 759                                    SW 210th Terrace         1            -1
## 760                                    SW 210th Terrace        -1            -1
## 761                                    SW 210th Terrace         1            -1
## 762                                    SW 210th Terrace        -1            -1
## 763                                    SW 210th Terrace        -1            -1
## 764                                    SW 210th Terrace         1            -1
## 765                                    SW 210th Terrace        -1            -1
## 766                                    SW 210th Terrace         1            -1
## 767                                    SW 210th Terrace        -1            -1
## 768                                    SW 210th Terrace        -1            -1
## 769                                    SW 210th Terrace        -1            -1
## 770                                                  JP         1            -1
## 771                                                  JP         1            -1
## 772                                                  JP         1            -1
## 773                                                  JP         1            -1
## 774                                                  JP         1            -1
## 775                                                  JP         1            -1
## 776                                                  JP         1            -1
## 777                                                  JP         1            -1
## 778                                                  JP         1            -1
## 779                                                  JP         1            -1
## 780                                                  JP         1            -1
## 781                                                  JP         1            -1
## 782                                                  JP         1            -1
## 783                                                  JP         1            -1
## 784                                                  JP         1            -1
## 785                                                  JP         1            -1
## 786                                                  JP         1            -1
## 787                                                  JP         1            -1
## 788                                                  JP         1            -1
## 789                                                  JP         1            -1
## 790                                                  JP         1            -1
## 791                                                  JP         1            -1
## 792                                                  JP         1            -1
## 793                                                  JP         1            -1
## 794                                                  JP         1            -1
## 795                                                  JP         1            -1
## 796                                                  JP         1            -1
## 797                                                  JP         1            -1
## 798                                                  JP         1            -1
## 799                                                  JP         1            -1
## 800                                                  JP         1            -1
## 801                                                  JP        -1            -1
## 802                                                  JP         1            -1
## 803                                                  JP        -1            -1
## 804                                                  JP         1            -1
## 805                                                  JP         1            -1
## 806                                                  JP         1            -1
## 807                                                  JP         1            -1
## 808                                                  JP        -1            -1
## 809                                                  JP        -1            -1
## 810                                            Polk Ave        -1             1
## 811                                            Polk Ave         1             1
## 812                                            Polk Ave        -1             1
## 813                                            Polk Ave        -1             1
## 814                                            Polk Ave         1             1
## 815                                            Polk Ave         1             1
## 816                                            Polk Ave        -1             1
## 817                                            Polk Ave         1             1
## 818                                            Polk Ave        -1             1
## 819                                            Polk Ave        -1             1
## 820                                            Polk Ave         1             1
## 821                                            Polk Ave        -1             1
## 822                                            Polk Ave        -1             1
## 823                                            Polk Ave         1             1
## 824                                            Polk Ave         1             1
## 825                                            Polk Ave        -1             1
## 826                                            Polk Ave         1             1
## 827                                            Polk Ave         1             1
## 828                                            Polk Ave        -1             1
## 829                                            Polk Ave         1             1
## 830                                            Polk Ave        -1             1
## 831                                            Polk Ave         1             1
## 832                                            Polk Ave         1             1
## 833                                            Polk Ave         1             1
## 834                                            Polk Ave        -1             1
## 835                                            Polk Ave         1             1
## 836                                            Polk Ave         1             1
## 837                                            Polk Ave         1             1
## 838                                            Polk Ave        -1             1
## 839                                            Polk Ave         1             1
## 840                                            Polk Ave         1             1
## 841                                            Polk Ave         1             1
## 842                                            Polk Ave        -1             1
## 843                                            Polk Ave         1             1
## 844                                            Polk Ave        -1             1
## 845                                            Polk Ave         1             1
## 846                                            Polk Ave         1             1
## 847                                            Polk Ave        -1             1
## 848                                            Polk Ave         1             1
## 849                                            Polk Ave         1             1
## 850                                            Polk Ave        -1             1
## 851                                            Polk Ave         1             1
## 852                                            Polk Ave         1             1
## 853                                            Polk Ave         1             1
## 854                                         Mount & 8th         1             1
## 855                                         Mount & 8th        -1             1
## 856                                         Mount & 8th        -1             1
## 857                                         Mount & 8th         1             1
## 858                                         Mount & 8th        -1             1
## 859                                         Mount & 8th        -1             1
## 860                                         Mount & 8th         1             1
## 861                                         Mount & 8th         1             1
## 862                                         Mount & 8th        -1             1
## 863                                         Mount & 8th        -1             1
## 864                                         Mount & 8th         1             1
## 865                                         Mount & 8th         1             1
## 866                                         Mount & 8th         1             1
## 867                                         Mount & 8th         1             1
## 868                                           Founder's         1            -1
## 869                                           Founder's        -1            -1
## 870                                           Founder's        -1            -1
## 871                                           Founder's         1            -1
## 872                                           Founder's        -1            -1
## 873                                           Founder's        -1            -1
## 874                                           Founder's         1            -1
## 875                                           Founder's        -1            -1
## 876                                           Founder's         1            -1
## 877                                           Founder's         1            -1
## 878                                           Founder's         1            -1
## 879                                           Founder's         1            -1
## 880                                           Founder's         1            -1
## 881                                           Founder's         1            -1
## 882                                           Founder's         1            -1
## 883                                           Founder's        -1            -1
## 884                                           Founder's         1            -1
## 885                                           Founder's        -1            -1
## 886                                           Founder's        -1            -1
## 887                                           Founder's        -1            -1
## 888                                           Founder's        -1            -1
## 889                                           Founder's         1            -1
## 890                                           Founder's         1            -1
## 891                                           Founder's        -1            -1
## 892                                           Founder's        -1            -1
## 893                                           Founder's         1            -1
## 894                                           Founder's        -1            -1
## 895                                           Founder's         1            -1
## 896                                           Founder's        -1            -1
## 897                                           Founder's        -1            -1
## 898                                           Founder's        -1            -1
## 899                                           Founder's        -1            -1
## 900                                           Founder's        -1            -1
## 901                                           Founder's         1            -1
## 902                                           Founder's         1            -1
## 903                                           Founder's        -1            -1
## 904                                           Founder's         1            -1
## 905                                           Founder's        -1            -1
## 906                                           Founder's        -1            -1
## 907                                           Founder's         1            -1
## 908                                           Founder's        -1            -1
## 909                                           Founder's         1            -1
## 910                                           Founder's        -1            -1
## 911                                           Founder's        -1            -1
## 912                                                  JP         1            -1
## 913                                                  JP        -1            -1
## 914                                                  JP        -1            -1
## 915                                                  JP         1            -1
## 916                                                  JP        -1            -1
## 917                                                  JP         1            -1
## 918                                                  JP        -1            -1
## 919                                                  JP        -1            -1
## 920                                                  JP        -1            -1
## 921                                                  JP         1            -1
## 922                                                  JP         1            -1
## 923                                                  JP         1            -1
## 924                                                  JP         1            -1
## 925                                                  JP         1            -1
## 926                                                  JP         1            -1
## 927                                                  JP         1            -1
## 928                                                  JP        -1            -1
## 929                                                  JP         1            -1
## 930                                                  JP        -1            -1
## 931                                                  JP         1            -1
## 932                                                  JP        -1            -1
## 933                                                  JP        -1            -1
## 934                                                  JP         1            -1
## 935                                                  JP        -1            -1
## 936                                                  JP         1            -1
## 937                                                  JP        -1            -1
## 938                                                  JP        -1            -1
## 939                                                  JP        -1            -1
## 940                                                  JP        -1            -1
## 941                                                  JP        -1            -1
## 942                                                  JP         1            -1
## 943                                                  JP        -1            -1
## 944                                                  JP        -1            -1
## 945                                                  JP         1            -1
## 946                                                  JP         1            -1
## 947                                                  JP        -1            -1
## 948                                                  JP         1            -1
## 949                                                  JP        -1            -1
## 950                                                  JP         1            -1
## 951                                                  JP         1            -1
## 952                                                  JP         1            -1
## 953                                                  JP         1            -1
## 954                                                  JP         1            -1
## 955                                                  JP        -1            -1
## 956                                                  JP         1            -1
## 957                                                  JP        -1            -1
## 958                                                  JP         1            -1
## 959                                                  JP        -1            -1
## 960                                                  JP        -1            -1
## 961                                                  JP         1            -1
## 962                                                  JP         1            -1
## 963                                            Polk Ave        -1             1
## 964                                            Polk Ave        -1             1
## 965                                            Polk Ave         1             1
## 966                                            Polk Ave        -1             1
## 967                                            Polk Ave         1             1
## 968                                            Polk Ave        -1             1
## 969                                            Polk Ave        -1             1
## 970                                            Polk Ave         1             1
## 971                                            Polk Ave        -1             1
## 972                                            Polk Ave         1             1
## 973                                            Polk Ave        -1             1
## 974                                            Polk Ave        -1             1
## 975                                            Polk Ave        -1             1
## 976                                            Polk Ave         1             1
## 977                                            Polk Ave        -1             1
## 978                                            Polk Ave         1             1
## 979                                            Polk Ave         1             1
## 980                                            Polk Ave         1             1
## 981                                            Polk Ave         1             1
## 982                                            Polk Ave        -1             1
## 983                                            Polk Ave         1             1
## 984                                            Polk Ave        -1             1
## 985                                            Polk Ave        -1             1
## 986                                            Polk Ave         1             1
## 987                                            Polk Ave         1             1
## 988                                            Polk Ave         1             1
## 989                                            Polk Ave        -1             1
## 990                                            Polk Ave         1             1
## 991                                            Polk Ave        -1             1
## 992                                            Polk Ave        -1             1
## 993                                            Polk Ave        -1             1
## 994                                            Polk Ave        -1             1
## 995                                            Polk Ave         1             1
## 996                                            Polk Ave         1             1
## 997                                            Polk Ave         1             1
## 998                                            Polk Ave         1             1
## 999                                            Polk Ave         1             1
## 1000                                           Polk Ave        -1             1
## 1001                                           Polk Ave         1             1
## 1002                                           Polk Ave        -1             1
## 1003                                           Polk Ave        -1             1
## 1004                                           Polk Ave         1             1
## 1005                                           Polk Ave         1             1
## 1006                                           Polk Ave        -1             1
## 1007                                           Polk Ave         1             1
## 1008                                           Polk Ave         1             1
## 1009                                           Polk Ave        -1             1
## 1010                                           Polk Ave         1             1
## 1011                                           Polk Ave        -1             1
## 1012                                           Polk Ave         1             1
## 1013                                           Polk Ave        -1             1
## 1014                                           Polk Ave        -1             1
## 1015                                           Polk Ave         1             1
## 1016                                        Mount & 8th         1             1
## 1017                                        Mount & 8th        -1             1
## 1018                                        Mount & 8th        -1             1
## 1019                                        Mount & 8th         1             1
## 1020                                        Mount & 8th         1             1
## 1021                                        Mount & 8th         1             1
## 1022                                        Mount & 8th        -1             1
## 1023                                        Mount & 8th        -1             1
## 1024                                        Mount & 8th        -1             1
## 1025                                        Mount & 8th         1             1
## 1026                                        Mount & 8th         1             1
## 1027                                        Mount & 8th        -1             1
## 1028                                        Mount & 8th        -1             1
## 1029                                        Mount & 8th        -1             1
## 1030                                        Mount & 8th         1             1
## 1031                                        Mount & 8th        -1             1
## 1032                                        Mount & 8th        -1             1
## 1033                                        Mount & 8th         1             1
## 1034                                        Mount & 8th        -1             1
## 1035                                        Mount & 8th         1             1
## 1036                                        Mount & 8th         1             1
## 1037                                        Mount & 8th         1             1
## 1038                                        Mount & 8th        -1             1
## 1039                                        Mount & 8th         1             1
## 1040                                        Mount & 8th        -1             1
## 1041                                        Mount & 8th         1             1
## 1042                                        Mount & 8th         1             1
## 1043                                        Mount & 8th         1             1
## 1044                                        Mount & 8th         1             1
## 1045                                        Mount & 8th        -1             1
## 1046                                        Mount & 8th        -1             1
## 1047                                        Mount & 8th        -1             1
## 1048                                        Mount & 8th         1             1
## 1049                                        Mount & 8th        -1             1
## 1050                                        Mount & 8th        -1             1
## 1051                                        Mount & 8th        -1             1
## 1052                                          Founder's         1            -1
## 1053                                          Founder's        -1            -1
## 1054                                          Founder's         1            -1
## 1055                                          Founder's         1            -1
## 1056                                          Founder's         1            -1
## 1057                                          Founder's         1            -1
## 1058                                          Founder's         1            -1
## 1059                                          Founder's         1            -1
## 1060                                          Founder's         1            -1
## 1061                                          Founder's         1            -1
## 1062                                          Founder's         1            -1
## 1063                                          Founder's         1            -1
## 1064                                         23rd & 8th        -1             1
## 1065                                         23rd & 8th         1             1
## 1066                                         23rd & 8th        -1             1
## 1067                                         23rd & 8th        -1             1
## 1068                                         23rd & 8th         1             1
## 1069                                         23rd & 8th         1             1
## 1070                                         23rd & 8th         1             1
## 1071                                         23rd & 8th         1             1
## 1072                                         23rd & 8th         1             1
## 1073                                         23rd & 8th         1             1
## 1074                                         23rd & 8th        -1             1
## 1075                                         23rd & 8th         1             1
## 1076                                         23rd & 8th        -1             1
## 1077                                         23rd & 8th        -1             1
## 1078                        wings torn       23rd & 8th        -1             1
## 1079                        wings torn       23rd & 8th         1             1
## 1080                        wings torn       23rd & 8th        -1             1
## 1081                                         23rd & 8th         1             1
## 1082                                         23rd & 8th         1             1
## 1083                                         23rd & 8th        -1             1
## 1084                        wings torn       23rd & 8th         1             1
## 1085                                         23rd & 8th         1             1
## 1086                        wings torn       23rd & 8th        -1             1
## 1087                                         23rd & 8th        -1             1
## 1088                        wings torn       23rd & 8th        -1             1
## 1089                        wings torn       23rd & 8th        -1             1
## 1090                        wings torn       23rd & 8th        -1             1
## 1091                        wings torn       23rd & 8th         1             1
## 1092                        wings torn       23rd & 8th        -1             1
## 1093                        wings torn       23rd & 8th        -1             1
## 1094                                         23rd & 8th         1             1
## 1095                                         23rd & 8th         1             1
## 1096                        wings torn       23rd & 8th        -1             1
## 1097                                         23rd & 8th         1             1
## 1098                                         23rd & 8th        -1             1
## 1099                                         23rd & 8th        -1             1
## 1100                                         23rd & 8th        -1             1
## 1101                                         23rd & 8th         1             1
## 1102                        wings torn       23rd & 8th        -1             1
## 1103                                         23rd & 8th         1             1
## 1104                        wings torn       23rd & 8th        -1             1
## 1105                                         23rd & 8th         1             1
## 1106                                         23rd & 8th         1             1
## 1107                                         23rd & 8th         1             1
## 1108                        wings torn       23rd & 8th         1             1
## 1109                                         23rd & 8th         1             1
## 1110                                         23rd & 8th        -1             1
## 1111                        wings torn       23rd & 8th        -1             1
## 1112                        wings torn       23rd & 8th         1             1
## 1113                         tips torn       23rd & 8th         1             1
## 1114                                         23rd & 8th         1             1
## 1115                                         23rd & 8th        -1             1
## 1116                         tips torn       23rd & 8th        -1             1
## 1117                         tips torn       23rd & 8th        -1             1
## 1118                         tips torn       23rd & 8th        -1             1
## 1119                                         23rd & 8th         1             1
## 1120                                         23rd & 8th        -1             1
## 1121                                        SW 296th St        -1             1
## 1122                                        SW 296th St        -1             1
## 1123                                        SW 296th St        -1             1
## 1124                                        SW 296th St        -1             1
## 1125                                        SW 296th St        -1             1
## 1126                                        SW 296th St         1             1
## 1127                                        SW 296th St         1             1
## 1128                                        SW 296th St        -1             1
## 1129                                        SW 296th St        -1             1
## 1130                                        SW 296th St        -1             1
## 1131                                        SW 296th St        -1             1
## 1132                                        SW 296th St        -1             1
## 1133                                        SW 296th St        -1             1
## 1134                        wings torn      Charlemagne         1            -1
## 1135                        wings torn      Charlemagne         1            -1
## 1136                        wings torn      Charlemagne        -1            -1
## 1137                                        Charlemagne        -1            -1
## 1138                        wings torn      Charlemagne        -1            -1
## 1139                                        Charlemagne         1            -1
## 1140                        wings torn      Charlemagne        -1            -1
## 1141                        wings torn      Charlemagne         1            -1
## 1142                                        Charlemagne         1            -1
## 1143                                        Charlemagne         1            -1
## 1144                                        Charlemagne         1            -1
## 1145                                        Charlemagne         1            -1
## 1146                                        Charlemagne         1            -1
## 1147                                        Charlemagne        -1            -1
## 1148                                        Charlemagne        -1            -1
## 1149                                        Charlemagne        -1            -1
## 1150                        wings torn      Charlemagne        -1            -1
## 1151                        wings torn      Charlemagne        -1            -1
## 1152                                        Charlemagne         1            -1
## 1153                        wings torn      Charlemagne        -1            -1
## 1154                                        Charlemagne        -1            -1
## 1155                                        Charlemagne         1            -1
## 1156                                        Charlemagne        -1            -1
## 1157                                        Charlemagne         1            -1
## 1158                                        Charlemagne         1            -1
## 1159                                        Charlemagne        -1            -1
## 1160                                        Charlemagne         1            -1
## 1161                                        Charlemagne         1            -1
## 1162                        wings torn      Charlemagne        -1            -1
## 1163                        wings torn      Charlemagne        -1            -1
## 1164                                        Charlemagne        -1            -1
## 1165                        wings torn      Charlemagne        -1            -1
## 1166                        wings torn      Charlemagne         1            -1
## 1167                                        Charlemagne         1            -1
## 1168                                        Charlemagne         1            -1
## 1169                                        Charlemagne        -1            -1
## 1170                                        Charlemagne         1            -1
## 1171                  malformed thorax      Charlemagne        -1            -1
## 1172                                        Charlemagne         1            -1
## 1173                        wings torn      Charlemagne        -1            -1
## 1174                                        Charlemagne         1            -1
## 1175                                        Charlemagne         1            -1
## 1176                        wings torn      Charlemagne         1            -1
## 1177                                        Charlemagne         1            -1
## 1178                                        Charlemagne        -1            -1
## 1179                                        Charlemagne        -1            -1
## 1180                                        Charlemagne        -1            -1
## 1181                                        Charlemagne        -1            -1
## 1182                        wings torn      Charlemagne         1            -1
## 1183                        wings torn      Charlemagne        -1            -1
## 1184                        wings torn      Charlemagne        -1            -1
## 1185                                        Charlemagne        -1            -1
## 1186                                        Charlemagne        -1            -1
## 1187                                                 JP         1            -1
## 1188                                                 JP        -1            -1
## 1189                                                 JP        -1            -1
## 1190                                                 JP        -1            -1
## 1191                                                 JP        -1            -1
## 1192                                                 JP        -1            -1
## 1193                                                 JP         1            -1
## 1194                                                 JP         1            -1
## 1195                                                 JP         1            -1
## 1196                                                 JP         1            -1
## 1197                                                 JP        -1            -1
## 1198                        wings torn         Polk Ave         1             1
## 1199                        wings torn         Polk Ave         1             1
## 1200                        wings torn         Polk Ave        -1             1
## 1201                        wings torn         Polk Ave         1             1
## 1202                        wings torn         Polk Ave        -1             1
## 1203                        wings torn         Polk Ave        -1             1
## 1204                        wings torn         Polk Ave         1             1
## 1205                                           Polk Ave         1             1
## 1206                        wings torn         Polk Ave        -1             1
## 1207                                           Polk Ave        -1             1
## 1208                        wings torn         Polk Ave         1             1
## 1209                        wings torn         Polk Ave        -1             1
## 1210                        wings torn         Polk Ave        -1             1
## 1211                                           Polk Ave        -1             1
## 1212                        wings torn         Polk Ave        -1             1
## 1213                        wings torn      Mount & 8th        -1             1
## 1214                        wings torn      Mount & 8th         1             1
## 1215                                        Mount & 8th         1             1
## 1216                        wings torn      Mount & 8th        -1             1
## 1217                        wings torn      Mount & 8th         1             1
## 1218                        wings torn      Mount & 8th        -1             1
## 1219                        wings torn      Mount & 8th        -1             1
## 1220                                        Mount & 8th         1             1
## 1221                        wings torn      Mount & 8th        -1             1
## 1222                        wings torn      Mount & 8th        -1             1
## 1223                        wings torn      Mount & 8th        -1             1
## 1224                                        Mount & 8th        -1             1
## 1225                        wings torn      Mount & 8th        -1             1
## 1226                        wings torn      Mount & 8th        -1             1
## 1227                        wings torn      Mount & 8th        -1             1
## 1228                                        Mount & 8th        -1             1
## 1229                                        Mount & 8th        -1             1
## 1230                         tips torn      Mount & 8th         1             1
## 1231                                        Mount & 8th        -1             1
## 1232                        wings torn      Mount & 8th        -1             1
## 1233                                        Mount & 8th        -1             1
## 1234                                        Mount & 8th         1             1
## 1235                                        Mount & 8th         1             1
## 1236                                        Mount & 8th         1             1
## 1237                                        Mount & 8th         1             1
## 1238                                        Mount & 8th         1             1
## 1239                                        Mount & 8th         1             1
## 1240                                        Mount & 8th        -1             1
## 1241                                        Mount & 8th         1             1
## 1242                                        Mount & 8th         1             1
## 1243                                        Mount & 8th         1             1
## 1244                                        Mount & 8th         1             1
## 1245                                        Mount & 8th        -1             1
## 1246                                        Mount & 8th        -1             1
## 1247                                        Mount & 8th         1             1
## 1248                                        Mount & 8th        -1             1
## 1249                                        Mount & 8th        -1             1
## 1250                                        Mount & 8th         1             1
## 1251                                        Mount & 8th         1             1
## 1252                                        Mount & 8th         1             1
## 1253                                        Mount & 8th         1             1
## 1254                                        Mount & 8th        -1             1
## 1255                                        Mount & 8th        -1             1
## 1256                                        Mount & 8th         1             1
## 1257                                        Mount & 8th        -1             1
## 1258                                        Mount & 8th        -1             1
## 1259                                        Mount & 8th         1             1
## 1260                                        Mount & 8th         1             1
## 1261                                        Mount & 8th         1             1
## 1262                                        Mount & 8th         1             1
## 1263                                        Mount & 8th         1             1
## 1264                                        Mount & 8th        -1             1
## 1265                                        Mount & 8th         1             1
## 1266                                        Mount & 8th        -1             1
## 1267                                        Mount & 8th        -1             1
## 1268                                        Mount & 8th         1             1
## 1269                                        Mount & 8th         1             1
## 1270                                        Mount & 8th        -1             1
## 1271                                        Mount & 8th         1             1
## 1272                                        Mount & 8th        -1             1
## 1273                                        Mount & 8th        -1             1
## 1274                                        Mount & 8th        -1             1
## 1275                                        Mount & 8th        -1             1
## 1276                                        Mount & 8th        -1             1
## 1277                                        Mount & 8th        -1             1
## 1278                                          Mohawk St        -1            -1
## 1279                                          Mohawk St        -1            -1
## 1280                                          Mohawk St        -1            -1
## 1281                                          Mohawk St        -1            -1
## 1282                                          Mohawk St         1            -1
## 1283                                          Mohawk St        -1            -1
## 1284                                          Mohawk St         1            -1
## 1285                                          Mohawk St        -1            -1
## 1286                                          Mohawk St         1            -1
## 1287                                          Mohawk St         1            -1
## 1288                                          Mohawk St         1            -1
## 1289                                          Mohawk St         1            -1
## 1290                                          Mohawk St        -1            -1
## 1291                                          Mohawk St         1            -1
## 1292                                          Mohawk St         1            -1
## 1293                                          Mohawk St         1            -1
## 1294                                          Mohawk St        -1            -1
## 1295                                          Mohawk St         1            -1
## 1296                                          Mohawk St         1            -1
## 1297                                          Mohawk St         1            -1
## 1298                                          Mohawk St         1            -1
## 1299                                          Mohawk St         1            -1
## 1300                                          Mohawk St        -1            -1
## 1301                                          Mohawk St         1            -1
## 1302                                          Mohawk St        -1            -1
## 1303                                          Mohawk St        -1            -1
## 1304                                          Mohawk St        -1            -1
## 1305                                          Mohawk St         1            -1
## 1306                                          Mohawk St         1            -1
## 1307                                          Mohawk St        -1            -1
## 1308                                          Mohawk St        -1            -1
## 1309                                          Mohawk St        -1            -1
## 1310                                          Mohawk St        -1            -1
## 1311                                          Mohawk St        -1            -1
## 1312                                          Mohawk St        -1            -1
## 1313                                          Mohawk St         1            -1
## 1314                                          Mohawk St        -1            -1
## 1315                                         23rd & 8th        -1             1
## 1316                                         23rd & 8th        -1             1
## 1317                                         23rd & 8th         1             1
## 1318                                         23rd & 8th         1             1
## 1319                                         23rd & 8th        -1             1
## 1320                                         23rd & 8th        -1             1
## 1321                                         23rd & 8th         1             1
## 1322                                         23rd & 8th         1             1
## 1323                                         23rd & 8th         1             1
## 1324                                         23rd & 8th        -1             1
## 1325                                         23rd & 8th        -1             1
## 1326                                         23rd & 8th        -1             1
## 1327                                         23rd & 8th         1             1
## 1328                                         23rd & 8th         1             1
## 1329                                         23rd & 8th        -1             1
## 1330                                         23rd & 8th        -1             1
## 1331                                         23rd & 8th         1             1
## 1332                                         23rd & 8th         1             1
## 1333                                         23rd & 8th         1             1
## 1334                        wings torn       23rd & 8th         1             1
## 1335                                         23rd & 8th         1             1
## 1336                                         23rd & 8th         1             1
## 1337                                         23rd & 8th        -1             1
## 1338                                         23rd & 8th        -1             1
## 1339                                         23rd & 8th        -1             1
## 1340                                         23rd & 8th        -1             1
## 1341                                         23rd & 8th         1             1
## 1342                                         23rd & 8th         1             1
## 1343                                         23rd & 8th        -1             1
## 1344                                         23rd & 8th         1             1
## 1345                                         23rd & 8th         1             1
## 1346                                         23rd & 8th         1             1
## 1347                                         23rd & 8th        -1             1
## 1348                                         23rd & 8th        -1             1
## 1349                                         23rd & 8th        -1             1
## 1350                                         23rd & 8th        -1             1
## 1351                                         23rd & 8th         1             1
## 1352                                         23rd & 8th         1             1
## 1353                                         23rd & 8th        -1             1
## 1354                                         23rd & 8th        -1             1
## 1355                                         23rd & 8th         1             1
## 1356                                         23rd & 8th        -1             1
## 1357                                         23rd & 8th         1             1
## 1358                                         23rd & 8th         1             1
## 1359                                         23rd & 8th        -1             1
## 1360                                         23rd & 8th         1             1
## 1361                                         23rd & 8th        -1             1
## 1362                                         23rd & 8th        -1             1
## 1363                                         23rd & 8th         1             1
## 1364                                         23rd & 8th        -1             1
## 1365                                         23rd & 8th        -1             1
## 1366                                         23rd & 8th         1             1
## 1367                                         23rd & 8th        -1             1
## 1368                                         23rd & 8th         1             1
## 1369                                         23rd & 8th         1             1
## 1370                                         23rd & 8th        -1             1
## 1371                                         23rd & 8th         1             1
## 1372                                         23rd & 8th         1             1
## 1373                                         23rd & 8th        -1             1
## 1374                                         23rd & 8th        -1             1
## 1375                       teal marked      SW 296th St        -1             1
## 1376                       teal marked      SW 296th St         1             1
## 1377                       teal marked      SW 296th St         1             1
## 1378                                        SW 296th St        -1             1
## 1379                       teal marked      SW 296th St         1             1
## 1380                                        SW 296th St         1             1
## 1381                                        SW 296th St         1             1
## 1382                                        SW 296th St         1             1
## 1383                       teal marked      SW 296th St        -1             1
## 1384                                        SW 296th St        -1             1
## 1385                                        SW 296th St        -1             1
## 1386                                        SW 296th St         1             1
## 1387                                        SW 296th St        -1             1
## 1388                                        SW 296th St         1             1
## 1389                 wings torn at end      SW 296th St        -1             1
## 1390                                        SW 296th St        -1             1
## 1391                                        SW 296th St        -1             1
## 1392                       teal marked      SW 296th St        -1             1
## 1393                                        SW 296th St         1             1
## 1394                                        SW 296th St        -1             1
## 1395                                        SW 296th St        -1             1
## 1396                                        SW 296th St         1             1
## 1397                                        SW 296th St        -1             1
## 1398                                        SW 296th St        -1             1
## 1399                                        SW 296th St         1             1
## 1400                                        SW 296th St        -1             1
## 1401                                        SW 296th St        -1             1
## 1402                                        SW 296th St        -1             1
## 1403                                        SW 296th St        -1             1
## 1404                       teal marked      SW 296th St        -1             1
## 1405                                        SW 296th St         1             1
## 1406                                        SW 296th St         1             1
## 1407                 wings torn at end      SW 296th St        -1             1
## 1408                                        SW 296th St        -1             1
## 1409                       teal marked      SW 296th St         1             1
## 1410                       teal marked      SW 296th St         1             1
## 1411                                        SW 296th St        -1             1
## 1412                       teal marked      SW 296th St        -1             1
## 1413                                        SW 296th St         1             1
## 1414                                        SW 296th St         1             1
## 1415                       teal marked      SW 296th St        -1             1
## 1416                                        SW 296th St         1             1
## 1417                 wings torn at end      SW 296th St         1             1
## 1418                                        SW 296th St         1             1
## 1419                       teal marked      SW 296th St        -1             1
## 1420                                        SW 296th St         1             1
## 1421   wings torn at end; teal marked       SW 296th St         1             1
## 1422                                        SW 296th St        -1             1
## 1423                                        SW 296th St         1             1
## 1424                       teal marked      SW 296th St         1             1
## 1425                       teal marked      SW 296th St        -1             1
## 1426                       teal marked      SW 296th St         1             1
## 1427                                        SW 296th St        -1             1
## 1428                                        SW 296th St         1             1
## 1429                                        SW 296th St         1             1
## 1430                       teal marked      SW 296th St         1             1
## 1431                                        SW 296th St         1             1
## 1432                                        SW 296th St        -1             1
## 1433                                        SW 296th St         1             1
## 1434                                        SW 296th St         1             1
## 1435                                        SW 296th St         1             1
## 1436                                        SW 296th St        -1             1
## 1437                                        SW 296th St        -1             1
## 1438                                        SW 296th St         1             1
## 1439                                        SW 296th St        -1             1
## 1440                                        SW 296th St        -1             1
## 1441                                        SW 296th St        -1             1
## 1442                                        SW 296th St        -1             1
## 1443                                        SW 296th St        -1             1
## 1444                                        SW 296th St        -1             1
## 1445                                        SW 296th St         1             1
## 1446                                        SW 296th St         1             1
## 1447                                        SW 296th St        -1             1
## 1448                                        SW 296th St        -1             1
## 1449                                        SW 296th St         1             1
## 1450                                        SW 296th St        -1             1
## 1451                                        SW 296th St         1             1
## 1452                                        SW 296th St        -1             1
## 1453                                        SW 296th St         1             1
## 1454                                        SW 296th St        -1             1
## 1455                                        SW 296th St        -1             1
## 1456                                        SW 296th St         1             1
## 1457                                        SW 296th St        -1             1
## 1458                                        SW 296th St        -1             1
## 1459                                        SW 296th St         1             1
## 1460                                        SW 296th St         1             1
## 1461                                        SW 296th St        -1             1
## 1462                                        SW 296th St         1             1
## 1463                                        SW 296th St        -1             1
## 1464                                        SW 296th St         1             1
## 1465                                        SW 296th St         1             1
## 1466                                        SW 296th St         1             1
## 1467                                        SW 296th St         1             1
## 1468                                        SW 296th St        -1             1
## 1469                                        SW 296th St         1             1
## 1470                                        SW 296th St        -1             1
## 1471                                        SW 296th St        -1             1
## 1472                                        SW 296th St        -1             1
## 1473                                        SW 296th St         1             1
## 1474                                        SW 296th St         1             1
## 1475                                        SW 296th St        -1             1
## 1476                                        SW 296th St         1             1
## 1477                                        SW 296th St         1             1
## 1478                                        SW 296th St         1             1
## 1479                                        SW 296th St         1             1
## 1480                                        SW 296th St         1             1
## 1481                                        SW 296th St        -1             1
## 1482                                        SW 296th St         1             1
## 1483                                        SW 296th St         1             1
## 1484                                        SW 296th St         1             1
## 1485                                        SW 296th St         1             1
## 1486                                        SW 296th St         1             1
## 1487                                        SW 296th St        -1             1
## 1488                                        SW 296th St        -1             1
## 1489                                        SW 296th St        -1             1
## 1490                                        SW 296th St         1             1
## 1491                                        SW 296th St        -1             1
## 1492                                        SW 296th St        -1             1
## 1493                                        SW 296th St         1             1
## 1494                                        SW 296th St        -1             1
## 1495                                        SW 296th St         1             1
## 1496                                        SW 296th St        -1             1
## 1497                                        SW 296th St        -1             1
## 1498                                        SW 296th St         1             1
## 1499                                        SW 296th St        -1             1
## 1500                                        SW 296th St        -1             1
## 1501                                        SW 296th St        -1             1
## 1502                                                 JP         1            -1
## 1503                                                 JP        -1            -1
## 1504                                                 JP        -1            -1
## 1505                                                 JP        -1            -1
## 1506                                                 JP         1            -1
## 1507                                                 JP        -1            -1
## 1508                                                 JP        -1            -1
## 1509                                                 JP        -1            -1
## 1510                                                 JP         1            -1
## 1511                                                 JP        -1            -1
## 1512                                                 JP         1            -1
## 1513                                                 JP        -1            -1
## 1514                                                 JP        -1            -1
## 1515                                                 JP        -1            -1
## 1516                                                 JP        -1            -1
## 1517                                                 JP         1            -1
## 1518                                                 JP        -1            -1
## 1519                                                 JP        -1            -1
## 1520                                                 JP         1            -1
## 1521                                                 JP         1            -1
## 1522                                                 JP         1            -1
## 1523                                                 JP         1            -1
## 1524                                                 JP        -1            -1
## 1525                                                 JP        -1            -1
## 1526                                                 JP         1            -1
## 1527                                                 JP         1            -1
## 1528                                                 JP        -1            -1
## 1529                                                 JP        -1            -1
## 1530                                                 JP         1            -1
## 1531                                                 JP         1            -1
## 1532                                                 JP        -1            -1
## 1533                                                 JP        -1            -1
## 1534                                                 JP        -1            -1
## 1535                                                 JP        -1            -1
## 1536                                                 JP        -1            -1
## 1537                                        Charlemagne        -1            -1
## 1538                                        Charlemagne         1            -1
## 1539                                        Charlemagne        -1            -1
## 1540                                        Charlemagne         1            -1
## 1541                                        Charlemagne        -1            -1
## 1542                                        Charlemagne        -1            -1
## 1543                                        Charlemagne         1            -1
## 1544                                        Charlemagne         1            -1
## 1545                                        Charlemagne         1            -1
## 1546                                        Charlemagne         1            -1
## 1547                                        Charlemagne        -1            -1
## 1548                                        Charlemagne         1            -1
## 1549                                        Charlemagne         1            -1
## 1550                                        Charlemagne        -1            -1
## 1551                                        Charlemagne        -1            -1
## 1552                                        Charlemagne        -1            -1
## 1553                                        Charlemagne         1            -1
## 1554                                        Charlemagne        -1            -1
## 1555                                        Charlemagne         1            -1
## 1556                                        Charlemagne        -1            -1
## 1557                                        Charlemagne        -1            -1
## 1558                                        Charlemagne         1            -1
## 1559                                        Charlemagne        -1            -1
## 1560                                        Charlemagne         1            -1
## 1561                                        Charlemagne        -1            -1
## 1562                                        Charlemagne        -1            -1
## 1563                                        Charlemagne        -1            -1
## 1564                                        Charlemagne        -1            -1
## 1565                                        Charlemagne        -1            -1
## 1566                                        Charlemagne        -1            -1
## 1567                                        Charlemagne         1            -1
## 1568                                        Charlemagne        -1            -1
## 1569                                        Charlemagne        -1            -1
## 1570                                        Charlemagne        -1            -1
## 1571                                        Charlemagne        -1            -1
## 1572                                        Charlemagne         1            -1
## 1573                                        Charlemagne        -1            -1
## 1574                                        Charlemagne         1            -1
## 1575                                        Charlemagne         1            -1
## 1576                                        Charlemagne         1            -1
## 1577                                        Charlemagne        -1            -1
## 1578                                        Charlemagne         1            -1
## 1579                                        Charlemagne         1            -1
## 1580                                        Charlemagne         1            -1
## 1581                                        Charlemagne        -1            -1
## 1582                                        Charlemagne        -1            -1
## 1583                                        Charlemagne         1            -1
## 1584                                        Charlemagne        -1            -1
## 1585                                        Charlemagne        -1            -1
## 1586                                        Charlemagne        -1            -1
## 1587                                        Charlemagne        -1            -1
## 1588                                        Charlemagne        -1            -1
## 1589                                        Charlemagne         1            -1
## 1590                                        Charlemagne        -1            -1
## 1591                                        Charlemagne         1            -1
## 1592                                        Charlemagne         1            -1
## 1593                                        Charlemagne        -1            -1
## 1594                                           Polk Ave        -1             1
## 1595                                           Polk Ave         1             1
## 1596                                           Polk Ave         1             1
## 1597                                           Polk Ave        -1             1
## 1598                        wings torn         Polk Ave         1             1
## 1599                                           Polk Ave        -1             1
## 1600                                           Polk Ave         1             1
## 1601                                           Polk Ave        -1             1
## 1602                                           Polk Ave         1             1
## 1603                                           Polk Ave        -1             1
## 1604                                           Polk Ave        -1             1
## 1605                                           Polk Ave        -1             1
## 1606                                           Polk Ave         1             1
## 1607                                           Polk Ave         1             1
## 1608                                           Polk Ave         1             1
## 1609                                           Polk Ave         1             1
## 1610                                           Polk Ave         1             1
## 1611                                           Polk Ave        -1             1
## 1612                                           Polk Ave        -1             1
## 1613                                           Polk Ave         1             1
## 1614                                           Polk Ave        -1             1
## 1615                                           Polk Ave        -1             1
## 1616                                           Polk Ave        -1             1
## 1617                                           Polk Ave         1             1
## 1618                                           Polk Ave        -1             1
## 1619                                           Polk Ave         1             1
## 1620                                           Polk Ave         1             1
## 1621                                           Polk Ave        -1             1
## 1622                                           Polk Ave        -1             1
## 1623                                           Polk Ave        -1             1
## 1624                                           Polk Ave         1             1
## 1625                                           Polk Ave        -1             1
## 1626                                           Polk Ave         1             1
## 1627                                           Polk Ave        -1             1
## 1628                                           Polk Ave         1             1
## 1629                                           Polk Ave         1             1
## 1630                                           Polk Ave        -1             1
## 1631                                           Polk Ave         1             1
## 1632                                           Polk Ave         1             1
## 1633                                           Polk Ave        -1             1
## 1634                                           Polk Ave         1             1
## 1635                                           Polk Ave        -1             1
## 1636                                           Polk Ave        -1             1
## 1637                                           Polk Ave        -1             1
## 1638                                           Polk Ave         1             1
## 1639                                           Polk Ave        -1             1
## 1640                                           Polk Ave        -1             1
## 1641                                           Polk Ave        -1             1
## 1642                                           Polk Ave         1             1
## 1643                                           Polk Ave         1             1
## 1644                                           Polk Ave        -1             1
## 1645                                           Polk Ave        -1             1
## 1646                                           Polk Ave         1             1
## 1647                                           Polk Ave        -1             1
## 1648                                           Polk Ave         1             1
## 1649                                           Polk Ave        -1             1
## 1650                                           Polk Ave        -1             1
## 1651                                           Polk Ave         1             1
## 1652                                           Polk Ave         1             1
## 1653                                           Polk Ave        -1             1
## 1654                                           Polk Ave        -1             1
## 1655                                           Polk Ave         1             1
## 1656                                           Polk Ave        -1             1
## 1657                                           Polk Ave         1             1
## 1658                                           Polk Ave        -1             1
## 1659                                           Polk Ave         1             1
## 1660                                           Polk Ave        -1             1
## 1661                                           Polk Ave         1             1
## 1662                                           Polk Ave        -1             1
## 1663                                           Polk Ave        -1             1
## 1664                                           Polk Ave        -1             1
## 1665                                           Polk Ave        -1             1
## 1666                                           Polk Ave         1             1
## 1667                                           Polk Ave         1             1
## 1668                                           Polk Ave        -1             1
## 1669                                           Polk Ave         1             1
## 1670                                           Polk Ave         1             1
## 1671                                           Polk Ave         1             1
## 1672                                           Polk Ave        -1             1
## 1673                                           Polk Ave        -1             1
## 1674                                           Polk Ave        -1             1
## 1675                                           Polk Ave        -1             1
## 1676                                           Polk Ave         1             1
## 1677                                           Polk Ave        -1             1
## 1678                                           Polk Ave        -1             1
## 1679                                           Polk Ave        -1             1
## 1680                                           Polk Ave        -1             1
## 1681                                           Polk Ave         1             1
## 1682                                           Polk Ave        -1             1
## 1683                                           Polk Ave        -1             1
## 1684                                           Polk Ave        -1             1
## 1685                                        Mount & 8th        -1             1
## 1686                                        Mount & 8th         1             1
## 1687                                        Mount & 8th         1             1
## 1688                                        Mount & 8th         1             1
## 1689                                        Mount & 8th         1             1
## 1690                                        Mount & 8th        -1             1
## 1691                                        Mount & 8th         1             1
## 1692                                        Mount & 8th        -1             1
## 1693                                        Mount & 8th        -1             1
## 1694                                        Mount & 8th        -1             1
## 1695                                        Mount & 8th        -1             1
## 1696                                        Mount & 8th         1             1
## 1697                                        Mount & 8th         1             1
## 1698                                        Mount & 8th        -1             1
## 1699                                        Mount & 8th         1             1
## 1700                                        Mount & 8th        -1             1
## 1701                                        Mount & 8th         1             1
## 1702                                        Mount & 8th        -1             1
## 1703                                        Mount & 8th         1             1
## 1704                                        Mount & 8th        -1             1
## 1705                                        Mount & 8th        -1             1
## 1706                                        Mount & 8th        -1             1
## 1707                                        Mount & 8th        -1             1
## 1708                                        Mount & 8th        -1             1
## 1709                                        Mount & 8th        -1             1
## 1710                                        Mount & 8th         1             1
## 1711                                        Mount & 8th         1             1
## 1712                                        Mount & 8th        -1             1
## 1713                                        Mount & 8th         1             1
## 1714                                        Mount & 8th        -1             1
## 1715                                        Mount & 8th        -1             1
## 1716                                        Mount & 8th         1             1
## 1717                                        Mount & 8th        -1             1
## 1718                                        Mount & 8th        -1             1
## 1719                                        Mount & 8th         1             1
## 1720                                        Mount & 8th        -1             1
## 1721                                        Mount & 8th        -1             1
## 1722                                        Mount & 8th        -1             1
## 1723                                        Mount & 8th        -1             1
## 1724                                        Mount & 8th         1             1
## 1725                                        Mount & 8th        -1             1
## 1726                                        Mount & 8th        -1             1
## 1727                                        Mount & 8th         1             1
## 1728                                        Mount & 8th        -1             1
## 1729                                        Mount & 8th         1             1
## 1730                                        Mount & 8th        -1             1
## 1731                                        Mount & 8th        -1             1
## 1732                                        Mount & 8th        -1             1
## 1733                                        Mount & 8th        -1             1
## 1734                                        Mount & 8th        -1             1
## 1735                                        Mount & 8th        -1             1
## 1736                                        Mount & 8th         1             1
## 1737                                        Mount & 8th        -1             1
## 1738                                        Mount & 8th        -1             1
## 1739                                        Mount & 8th        -1             1
## 1740                                        Mount & 8th         1             1
## 1741                                        Mount & 8th         1             1
## 1742                                        Mount & 8th         1             1
## 1743                                         23rd & 8th        -1             1
## 1744                                         23rd & 8th        -1             1
## 1745                                         23rd & 8th        -1             1
## 1746                                         23rd & 8th         1             1
## 1747                                         23rd & 8th         1             1
## 1748                                         23rd & 8th        -1             1
## 1749                                         23rd & 8th        -1             1
## 1750                                         23rd & 8th         1             1
## 1751                         torn tips       23rd & 8th         1             1
## 1752                                         23rd & 8th         1             1
## 1753                                         23rd & 8th         1             1
## 1754                                         23rd & 8th         1             1
## 1755                                         23rd & 8th         1             1
## 1756                                         23rd & 8th         1             1
## 1757                                         23rd & 8th         1             1
## 1758                                         23rd & 8th         1             1
## 1759                                         23rd & 8th         1             1
## 1760                         torn tips       23rd & 8th        -1             1
## 1761                                         23rd & 8th        -1             1
## 1762                                         23rd & 8th        -1             1
## 1763                                         23rd & 8th        -1             1
## 1764                         torn tips       23rd & 8th        -1             1
## 1765                                         23rd & 8th         1             1
## 1766                         torn tips       23rd & 8th        -1             1
## 1767                         torn tips       23rd & 8th         1             1
## 1768                                         23rd & 8th         1             1
## 1769                                         23rd & 8th        -1             1
## 1770                                         23rd & 8th        -1             1
## 1771                                         23rd & 8th        -1             1
## 1772                                         23rd & 8th        -1             1
## 1773                                         23rd & 8th         1             1
## 1774                                         23rd & 8th         1             1
## 1775                                         23rd & 8th         1             1
## 1776                                         23rd & 8th        -1             1
## 1777                                         23rd & 8th         1             1
## 1778                                         23rd & 8th        -1             1
## 1779                                         23rd & 8th        -1             1
## 1780                                         23rd & 8th        -1             1
## 1781                                         23rd & 8th         1             1
## 1782                                         23rd & 8th        -1             1
## 1783                                         23rd & 8th         1             1
## 1784                                         23rd & 8th         1             1
## 1785                                         23rd & 8th         1             1
## 1786                                         23rd & 8th        -1             1
## 1787                                         23rd & 8th        -1             1
## 1788                                         23rd & 8th         1             1
## 1789                         torn tips       23rd & 8th        -1             1
## 1790                                         23rd & 8th        -1             1
## 1791                                         23rd & 8th        -1             1
## 1792                                         23rd & 8th         1             1
## 1793                                         23rd & 8th         1             1
## 1794                                         23rd & 8th         1             1
## 1795                                         23rd & 8th        -1             1
## 1796                                         23rd & 8th        -1             1
## 1797                                         23rd & 8th         1             1
## 1798                                         23rd & 8th         1             1
## 1799                                         23rd & 8th         1             1
## 1800                                         23rd & 8th         1             1
## 1801                                         23rd & 8th        -1             1
## 1802                                         23rd & 8th        -1             1
## 1803                                         23rd & 8th        -1             1
## 1804                                         23rd & 8th        -1             1
## 1805                                         23rd & 8th         1             1
## 1806                                         23rd & 8th        -1             1
## 1807                                        Charlemagne        -1            -1
## 1808                                        Charlemagne        -1            -1
## 1809                                        Charlemagne        -1            -1
## 1810                                        Charlemagne         1            -1
## 1811                                        Charlemagne         1            -1
## 1812                                        Charlemagne         1            -1
## 1813                                        Charlemagne         1            -1
## 1814                                        Charlemagne         1            -1
## 1815                                        Charlemagne         1            -1
## 1816                                        Charlemagne        -1            -1
## 1817                                        Charlemagne        -1            -1
## 1818                                        Charlemagne         1            -1
## 1819                                        Charlemagne         1            -1
## 1820                                        Charlemagne         1            -1
## 1821                                        Charlemagne        -1            -1
## 1822                                        Charlemagne        -1            -1
## 1823                                        Charlemagne         1            -1
## 1824                                        Charlemagne         1            -1
## 1825                                        Charlemagne         1            -1
## 1826                                        Charlemagne        -1            -1
## 1827                                        Charlemagne        -1            -1
## 1828                                        Charlemagne         1            -1
## 1829                                        Charlemagne         1            -1
## 1830                                        Charlemagne         1            -1
## 1831                                        Charlemagne         1            -1
## 1832                                        Charlemagne         1            -1
## 1833                                        Charlemagne        -1            -1
## 1834                                        Charlemagne        -1            -1
## 1835                                        Charlemagne         1            -1
## 1836                                        Charlemagne        -1            -1
## 1837                                        Charlemagne         1            -1
## 1838                                        Charlemagne         1            -1
## 1839                                        Charlemagne        -1            -1
## 1840                                        Charlemagne        -1            -1
## 1841                                        Charlemagne         1            -1
## 1842                                        Charlemagne         1            -1
## 1843                                        Charlemagne        -1            -1
## 1844                                        Charlemagne        -1            -1
## 1845                                        Charlemagne         1            -1
## 1846                                        Charlemagne        -1            -1
## 1847                                        Charlemagne         1            -1
## 1848                                        Charlemagne         1            -1
## 1849                                        Charlemagne         1            -1
## 1850                                        Charlemagne        -1            -1
## 1851                                        Charlemagne         1            -1
## 1852                                        Charlemagne        -1            -1
## 1853                                        Charlemagne        -1            -1
## 1854                                        Charlemagne        -1            -1
## 1855                                        Charlemagne         1            -1
## 1856                                        Charlemagne         1            -1
## 1857                                        Charlemagne         1            -1
## 1858                                        Charlemagne        -1            -1
## 1859                                        Charlemagne         1            -1
## 1860                                        Charlemagne        -1            -1
## 1861                                        Charlemagne         1            -1
## 1862                                        Charlemagne        -1            -1
## 1863                                        Charlemagne         1            -1
## 1864                                        Charlemagne         1            -1
## 1865                                        Charlemagne         1            -1
## 1866                                        Charlemagne         1            -1
## 1867                                        Charlemagne        -1            -1
## 1868                                        Charlemagne         1            -1
## 1869                                        Charlemagne         1            -1
## 1870                                        Charlemagne         1            -1
## 1871                                        Charlemagne        -1            -1
## 1872                                        Charlemagne         1            -1
## 1873                                        Charlemagne        -1            -1
## 1874                                        Charlemagne        -1            -1
## 1875                                           Polk Ave         1             1
## 1876                                           Polk Ave         1             1
## 1877                                           Polk Ave         1             1
## 1878                                           Polk Ave        -1             1
## 1879                                           Polk Ave        -1             1
## 1880                                           Polk Ave         1             1
## 1881                                           Polk Ave         1             1
## 1882                                           Polk Ave        -1             1
## 1883                                           Polk Ave         1             1
## 1884                                           Polk Ave        -1             1
## 1885                                           Polk Ave         1             1
## 1886                         torn tips         Polk Ave         1             1
## 1887                                           Polk Ave        -1             1
## 1888                                           Polk Ave         1             1
## 1889                                           Polk Ave        -1             1
## 1890                                           Polk Ave         1             1
## 1891                                           Polk Ave         1             1
## 1892                                           Polk Ave        -1             1
## 1893                                           Polk Ave         1             1
## 1894                                           Polk Ave         1             1
## 1895                                           Polk Ave         1             1
## 1896                                           Polk Ave        -1             1
## 1897                                           Polk Ave        -1             1
## 1898                                           Polk Ave         1             1
## 1899                                           Polk Ave        -1             1
## 1900                                           Polk Ave         1             1
## 1901                                           Polk Ave        -1             1
## 1902                                           Polk Ave         1             1
## 1903                                           Polk Ave         1             1
## 1904                         torn tips         Polk Ave         1             1
## 1905                         torn tips         Polk Ave        -1             1
## 1906                                           Polk Ave         1             1
## 1907                         torn tips         Polk Ave         1             1
## 1908                                           Polk Ave         1             1
## 1909                                           Polk Ave         1             1
## 1910                                           Polk Ave         1             1
## 1911                                           Polk Ave         1             1
## 1912                                           Polk Ave        -1             1
## 1913                                           Polk Ave        -1             1
## 1914                                           Polk Ave        -1             1
## 1915                                        Mount & 8th        -1             1
## 1916                                         23rd & 8th         1             1
## 1917                                         23rd & 8th         1             1
## 1918                                         23rd & 8th        -1             1
## 1919                                         23rd & 8th         1             1
## 1920                                         23rd & 8th        -1             1
## 1921                                         23rd & 8th        -1             1
## 1922                                         23rd & 8th         1             1
## 1923                                         23rd & 8th        -1             1
## 1924                                         23rd & 8th        -1             1
## 1925                                         23rd & 8th         1             1
## 1926                                         23rd & 8th         1             1
## 1927                                         23rd & 8th         1             1
## 1928                                         23rd & 8th        -1             1
## 1929                                         23rd & 8th         1             1
## 1930                                         23rd & 8th         1             1
## 1931                                         23rd & 8th         1             1
## 1932                                         23rd & 8th         1             1
## 1933                                         23rd & 8th         1             1
## 1934                                         23rd & 8th         1             1
## 1935                                         23rd & 8th         1             1
## 1936                                         23rd & 8th         1             1
## 1937                                         23rd & 8th         1             1
## 1938                                         23rd & 8th         1             1
## 1939                                         23rd & 8th         1             1
## 1940                                         23rd & 8th        -1             1
## 1941                                         23rd & 8th         1             1
## 1942                                         23rd & 8th         1             1
## 1943                                         23rd & 8th        -1             1
## 1944                                         23rd & 8th         1             1
## 1945                                         23rd & 8th         1             1
## 1946                                         23rd & 8th        -1             1
## 1947                                         23rd & 8th         1             1
## 1948                                         23rd & 8th         1             1
## 1949                                         23rd & 8th         1             1
## 1950                                         23rd & 8th         1             1
## 1951                                         23rd & 8th         1             1
## 1952                                         23rd & 8th         1             1
## 1953                                         23rd & 8th         1             1
## 1954                                         23rd & 8th         1             1
## 1955                                         23rd & 8th         1             1
## 1956                                         23rd & 8th         1             1
## 1957                                         23rd & 8th         1             1
## 1958                                         23rd & 8th        -1             1
## 1959                                         23rd & 8th         1             1
## 1960                                         23rd & 8th         1             1
## 1961                                         23rd & 8th         1             1
## 1962                                         23rd & 8th         1             1
## 1963                                         23rd & 8th         1             1
## 1964                                         23rd & 8th         1             1
## 1965                                        SW 296th St        -1             1
## 1966                                        SW 296th St        -1             1
## 1967                                        SW 296th St         1             1
## 1968                                        SW 296th St         1             1
## 1969                                        SW 296th St        -1             1
## 1970                                        SW 296th St        -1             1
## 1971                                        SW 296th St        -1             1
## 1972                                        SW 296th St        -1             1
## 1973                 wings torn at end      SW 296th St        -1             1
## 1974                                        SW 296th St        -1             1
## 1975                                        SW 296th St         1             1
## 1976                                        SW 296th St        -1             1
## 1977                 wings torn at end      SW 296th St        -1             1
## 1978                                        SW 296th St        -1             1
## 1979                                        SW 296th St        -1             1
## 1980                                        SW 296th St        -1             1
## 1981                                        SW 296th St         1             1
## 1982                                        SW 296th St         1             1
## 1983                                                 JP        -1            -1
## 1984                                                 JP        -1            -1
## 1985                                                 JP         1            -1
## 1986                                                 JP        -1            -1
## 1987                      d1+d2 yellow               JP         1            -1
## 1988                                                 JP        -1            -1
## 1989                      d1+d2 yellow               JP        -1            -1
## 1990                                                 JP         1            -1
## 1991                                                 JP         1            -1
## 1992                                                 JP         1            -1
## 1993                                                 JP        -1            -1
## 1994                                                 JP        -1            -1
## 1995                      d1+d2 yellow               JP         1            -1
## 1996                                                 JP         1            -1
## 1997                           d1 blue               JP        -1            -1
## 1998                                                 JP        -1            -1
## 1999                                                 JP         1            -1
## 2000                                                 JP         1            -1
## 2001                        d1+d2 blue               JP        -1            -1
## 2002                                                 JP        -1            -1
## 2003                         d1 yellow               JP        -1            -1
## 2004                                                 JP        -1            -1
## 2005                                                 JP        -1            -1
## 2006                                                 JP        -1            -1
## 2007                                                 JP         1            -1
## 2008                         d3 yellow               JP        -1            -1
## 2009                                                 JP         1            -1
## 2010                                                 JP        -1            -1
## 2011                                                 JP        -1            -1
## 2012                           d2 pink               JP        -1            -1
## 2013                                                 JP        -1            -1
## 2014                                                 JP         1            -1
## 2015                                                 JP        -1            -1
## 2016                           d1 blue               JP        -1            -1
## 2017                                                 JP        -1            -1
## 2018                         d2 yellow               JP        -1            -1
## 2019                         d3 yellow               JP        -1            -1
## 2020                                                 JP         1            -1
## 2021                                                 JP         1            -1
## 2022                                                 JP         1            -1
## 2023                                                 JP         1            -1
## 2024                           d1 pink               JP        -1            -1
## 2025                                                 JP        -1            -1
## 2026                           d1 blue               JP        -1            -1
## 2027                                                 JP         1            -1
## 2028                                                 JP        -1            -1
## 2029                                                 JP        -1            -1
## 2030                                                 JP         1            -1
## 2031                         d1 yellow               JP        -1            -1
## 2032                                                 JP         1            -1
## 2033                         d3 yellow               JP        -1            -1
## 2034                                                 JP        -1            -1
## 2035                                                 JP        -1            -1
## 2036                                                 JP        -1            -1
## 2037                                                 JP        -1            -1
## 2038                                                 JP        -1            -1
## 2039                                                 JP         1            -1
## 2040                                                 JP        -1            -1
## 2041                                                 JP         1            -1
## 2042                                                 JP         1            -1
## 2043                                                 JP         1            -1
## 2044                                                 JP        -1            -1
## 2045                                                 JP        -1            -1
## 2046                                                 JP        -1            -1
## 2047                                                 JP         1            -1
## 2048                                                 JP        -1            -1
## 2049                                                 JP        -1            -1
## 2050                           d2 pink               JP        -1            -1
## 2051                                                 JP        -1            -1
## 2052                         d2 yellow               JP         1            -1
## 2053                         d2 yellow               JP        -1            -1
## 2054                         d2 yellow               JP        -1            -1
## 2055                                                 JP        -1            -1
## 2056                                                 JP        -1            -1
## 2057                                                 JP        -1            -1
## 2058                                                 JP        -1            -1
## 2059                                          110N Main         1             1
## 2060                                          110N Main         1             1
## 2061                                          110N Main         1             1
## 2062                                          110N Main         1             1
## 2063                                          110N Main         1             1
## 2064                                          110N Main         1             1
## 2065                                          110N Main         1             1
## 2066                                          110N Main         1             1
## 2067                                          110N Main         1             1
## 2068                                          110N Main         1             1
## 2069                                          110N Main        -1             1
## 2070                                          110N Main         1             1
## 2071                                          110N Main        -1             1
## 2072                                          110N Main         1             1
## 2073                                          110N Main        -1             1
## 2074                        torn wings        110N Main        -1             1
## 2075                                          110N Main         1             1
## 2076                                          110N Main         1             1
## 2077                                          110N Main         1             1
## 2078                                          110N Main         1             1
## 2079                                          110N Main         1             1
## 2080                                          110N Main         1             1
## 2081                                          110N Main         1             1
## 2082                                          110N Main         1             1
## 2083                                          110N Main         1             1
## 2084                                          110N Main        -1             1
## 2085                                          110N Main         1             1
## 2086                                          110N Main         1             1
## 2087                                          110N Main         1             1
## 2088                       torn thorax        110N Main         1             1
## 2089                                          110N Main         1             1
## 2090                                          110N Main         1             1
## 2091                                          110N Main         1             1
## 2092                                          110N Main         1             1
## 2093                                          110N Main         1             1
## 2094                                          110N Main         1             1
## 2095                                          110N Main         1             1
## 2096                                          110N Main         1             1
## 2097                                          110N Main         1             1
## 2098                                          110N Main         1             1
## 2099                                          110N Main         1             1
## 2100                                          110N Main         1             1
## 2101                                          110N Main         1             1
## 2102                                          110N Main         1             1
## 2103                                          110N Main        -1             1
## 2104                                          110N Main         1             1
## 2105                                          110N Main         1             1
## 2106                                          110N Main        -1             1
## 2107                                          110N Main        -1             1
## 2108                                          110N Main         1             1
## 2109                       torn thorax        110N Main        -1             1
## 2110                                          110N Main         1             1
## 2111                                          110N Main        -1             1
## 2112                                          110N Main         1             1
## 2113                                          110N Main        -1             1
## 2114                                          110N Main         1             1
## 2115                                          110N Main         1             1
## 2116                                          110N Main         1             1
## 2117                                          110N Main         1             1
## 2118                                          110N Main         1             1
## 2119                                          110N Main         1             1
## 2120                                          110N Main        -1             1
## 2121                                        Charlemagne         1            -1
## 2122                                        Charlemagne        -1            -1
## 2123                                        Charlemagne        -1            -1
## 2124                                        Charlemagne        -1            -1
## 2125                                        Charlemagne        -1            -1
## 2126                                        Charlemagne         1            -1
## 2127                                        Charlemagne        -1            -1
## 2128                                        Charlemagne        -1            -1
## 2129                                        Charlemagne         1            -1
## 2130                                        Charlemagne        -1            -1
## 2131                                        Charlemagne        -1            -1
## 2132                         tips torn      Charlemagne        -1            -1
## 2133                                        Charlemagne        -1            -1
## 2134                                        Charlemagne        -1            -1
## 2135                                        Charlemagne        -1            -1
## 2136                                        Charlemagne        -1            -1
## 2137 tips torn; marked purple hind leg      Charlemagne        -1            -1
## 2138                                        Charlemagne        -1            -1
## 2139                                        Charlemagne        -1            -1
## 2140                                        Charlemagne        -1            -1
## 2141                         tips torn      Charlemagne        -1            -1
## 2142                                        Charlemagne         1            -1
## 2143                                        Charlemagne        -1            -1
## 2144                                        Charlemagne        -1            -1
## 2145                                        Charlemagne         1            -1
## 2146                                        Charlemagne        -1            -1
## 2147                                        Charlemagne        -1            -1
## 2148                                        Charlemagne         1            -1
## 2149                                        Charlemagne        -1            -1
## 2150                                        Charlemagne        -1            -1
## 2151                                        Charlemagne         1            -1
## 2152                                        Charlemagne         1            -1
## 2153                                        Charlemagne         1            -1
## 2154                                        Charlemagne        -1            -1
## 2155                                        Charlemagne        -1            -1
## 2156                                        Charlemagne         1            -1
## 2157                                        Charlemagne         1            -1
## 2158                                        Charlemagne         1            -1
## 2159                                        Charlemagne        -1            -1
## 2160                                        Charlemagne         1            -1
## 2161                                        Charlemagne         1            -1
## 2162                                        Charlemagne         1            -1
## 2163                                        Charlemagne        -1            -1
## 2164                                        Charlemagne         1            -1
## 2165                                        Charlemagne         1            -1
## 2166                                        Charlemagne        -1            -1
## 2167                                        Charlemagne         1            -1
## 2168                                        Charlemagne        -1            -1
## 2169                       marked blue      Charlemagne        -1            -1
## 2170                       marked blue      Charlemagne        -1            -1
## 2171                                        Charlemagne        -1            -1
## 2172                                        Charlemagne        -1            -1
## 2173                                        Charlemagne        -1            -1
## 2174                                        Charlemagne        -1            -1
## 2175                       marked blue      Charlemagne         1            -1
## 2176                                        Charlemagne        -1            -1
## 2177                       marked blue      Charlemagne        -1            -1
## 2178                    marked blue x3      Charlemagne        -1            -1
## 2179                                        Charlemagne        -1            -1
## 2180                       marked blue      Charlemagne        -1            -1
## 2181                                        Charlemagne        -1            -1
## 2182                       marked blue      Charlemagne         1            -1
## 2183                       marked blue      Charlemagne         1            -1
## 2184                                        Charlemagne         1            -1
## 2185                       marked blue      Charlemagne        -1            -1
## 2186                                        Charlemagne         1            -1
## 2187                                        Charlemagne         1            -1
## 2188                                        Charlemagne         1            -1
## 2189                    marked blue x2      Charlemagne         1            -1
## 2190                                        Charlemagne         1            -1
## 2191                                        Charlemagne         1            -1
## 2192                    marked blue x3      Charlemagne        -1            -1
## 2193                       marked blue      Charlemagne        -1            -1
## 2194                                        Charlemagne        -1            -1
## 2195                    marked blue x2      Charlemagne        -1            -1
## 2196                                        Charlemagne         1            -1
## 2197                                        Charlemagne        -1            -1
## 2198                                        Charlemagne        -1            -1
## 2199                                        Charlemagne        -1            -1
## 2200                                        Charlemagne        -1            -1
## 2201                       marked blue      Charlemagne        -1            -1
## 2202                                        Charlemagne         1            -1
## 2203                                        Charlemagne        -1            -1
## 2204                                        Charlemagne        -1            -1
## 2205                       marked blue      Charlemagne        -1            -1
## 2206                                        Charlemagne        -1            -1
## 2207                                        Charlemagne        -1            -1
## 2208                                        Charlemagne        -1            -1
## 2209                                        Charlemagne         1            -1
## 2210                       marked blue      Charlemagne        -1            -1
## 2211                       marked blue      Charlemagne        -1            -1
## 2212                                        Charlemagne        -1            -1
## 2213                                        Charlemagne        -1            -1
## 2214                       marked blue      Charlemagne        -1            -1
## 2215                                        Charlemagne        -1            -1
## 2216                                        Charlemagne        -1            -1
## 2217                                        Charlemagne        -1            -1
## 2218                                        Charlemagne        -1            -1
## 2219                                        Charlemagne        -1            -1
## 2220                                        Charlemagne         1            -1
## 2221                    marked blue x2      Charlemagne         1            -1
## 2222                                        Charlemagne         1            -1
## 2223                 torn tips; marked      Charlemagne         1            -1
## 2224                        torn tips       Charlemagne        -1            -1
## 2225                                        Charlemagne         1            -1
## 2226                                        Charlemagne        -1            -1
## 2227                                        Charlemagne         1            -1
## 2228                                        Charlemagne         1            -1
## 2229                            marked      Charlemagne         1            -1
## 2230                                        Charlemagne         1            -1
## 2231                                        Charlemagne         1            -1
## 2232                                        Charlemagne         1            -1
## 2233                         marked x2      Charlemagne         1            -1
## 2234                                        Charlemagne        -1            -1
## 2235                                        Charlemagne         1            -1
## 2236                            marked      Charlemagne         1            -1
## 2237                            marked      Charlemagne        -1            -1
## 2238                                        Charlemagne        -1            -1
## 2239                            marked      Charlemagne         1            -1
## 2240                                        Charlemagne        -1            -1
## 2241                                        Charlemagne         1            -1
## 2242                                        Charlemagne         1            -1
## 2243                                        Charlemagne        -1            -1
## 2244                                        Charlemagne        -1            -1
## 2245                                        Charlemagne         1            -1
## 2246                                        Charlemagne         1            -1
## 2247                                        Charlemagne         1            -1
## 2248                                        Charlemagne         1            -1
## 2249                                        Charlemagne        -1            -1
## 2250                                        Charlemagne        -1            -1
## 2251                                        Charlemagne         1            -1
## 2252                                        Charlemagne         1            -1
## 2253                                        Charlemagne        -1            -1
## 2254                                        Charlemagne        -1            -1
## 2255                                        Charlemagne        -1            -1
## 2256                                        Charlemagne        -1            -1
## 2257                                        Charlemagne         1            -1
## 2258                                        Charlemagne         1            -1
## 2259                    marked pink x2      Charlemagne         1            -1
## 2260                                        Charlemagne        -1            -1
## 2261                       marked pink      Charlemagne         1            -1
## 2262                            marked      Charlemagne         1            -1
## 2263                                        Charlemagne        -1            -1
## 2264                                        Charlemagne        -1            -1
## 2265                                        Charlemagne         1            -1
## 2266                                        Charlemagne         1            -1
## 2267                                        Charlemagne        -1            -1
## 2268                                        Charlemagne        -1            -1
## 2269                                        Charlemagne         1            -1
## 2270                                        Charlemagne         1            -1
## 2271                   marked white x2      Charlemagne        -1            -1
## 2272                                        Charlemagne        -1            -1
## 2273                                        Charlemagne        -1            -1
## 2274                       marked pink      Charlemagne         1            -1
## 2275                      marked white      Charlemagne         1            -1
## 2276                                        Charlemagne         1            -1
## 2277                                        Charlemagne         1            -1
## 2278                   marked white x2      Charlemagne         1            -1
## 2279                       marked pink      Charlemagne        -1            -1
## 2280                      marked white      Charlemagne         1            -1
## 2281                                        Charlemagne         1            -1
## 2282                                        Charlemagne        -1            -1
## 2283                                        Charlemagne        -1            -1
## 2284                                        Charlemagne        -1            -1
## 2285                       marked pink      Charlemagne         1            -1
## 2286                      marked white      Charlemagne         1            -1
## 2287                                        Charlemagne        -1            -1
## 2288                      marked white      Charlemagne        -1            -1
## 2289                                        Charlemagne         1            -1
## 2290                      marked white      Charlemagne        -1            -1
## 2291                                        Charlemagne        -1            -1
## 2292                                        Charlemagne        -1            -1
## 2293                                        Charlemagne         1            -1
## 2294                                        Charlemagne         1            -1
## 2295                                        Charlemagne        -1            -1
## 2296                                        Charlemagne         1            -1
## 2297                                        Charlemagne         1            -1
## 2298                       marked pink      Charlemagne        -1            -1
## 2299                                        Charlemagne        -1            -1
## 2300                      marked white      Charlemagne         1            -1
## 2301                                        Charlemagne         1            -1
## 2302                                        Charlemagne         1            -1
## 2303                                        Charlemagne        -1            -1
## 2304                   marked white d2      Charlemagne         1            -1
## 2305                                        Charlemagne        -1            -1
## 2306                                        Charlemagne         1            -1
## 2307                                        Charlemagne        -1            -1
## 2308                   marked white d3      Charlemagne        -1            -1
## 2309                                        Charlemagne        -1            -1
## 2310                                        Charlemagne        -1            -1
## 2311                                        Charlemagne        -1            -1
## 2312                   marked white d2      Charlemagne        -1            -1
## 2313               marked pink d1 + d3      Charlemagne         1            -1
## 2314                                        Charlemagne        -1            -1
## 2315                     white d1 + d3      Charlemagne         1            -1
## 2316                                        Charlemagne        -1            -1
## 2317                          white d3      Charlemagne        -1            -1
## 2318                                        Charlemagne         1            -1
## 2319                                        Charlemagne        -1            -1
## 2320                                        Charlemagne        -1            -1
## 2321                          white d2      Charlemagne         1            -1
## 2322                                        Charlemagne        -1            -1
## 2323                           pink d1      Charlemagne         1            -1
## 2324                           pink d3      Charlemagne        -1            -1
## 2325                                        Charlemagne        -1            -1
## 2326                                        Charlemagne        -1            -1
## 2327                                        Charlemagne        -1            -1
## 2328                                        Charlemagne        -1            -1
## 2329                                        Charlemagne        -1            -1
## 2330                     white d2 + d3      Charlemagne        -1            -1
## 2331                                        Charlemagne        -1            -1
## 2332                                        Charlemagne        -1            -1
## 2333                                        Charlemagne        -1            -1
## 2334                                        Charlemagne         1            -1
## 2335                         marked d3      Charlemagne         1            -1
## 2336                         marked d3      Charlemagne         1            -1
## 2337                         marked d3      Charlemagne        -1            -1
## 2338                                        Charlemagne         1            -1
## 2339                    marked d1 + d2      Charlemagne        -1            -1
## 2340                                        Charlemagne         1            -1
## 2341                    marked d2 + d3      Charlemagne         1            -1
## 2342                                        Charlemagne        -1            -1
## 2343                                        Charlemagne         1            -1
## 2344                         marked d1      Charlemagne        -1            -1
## 2345                                        Charlemagne         1            -1
## 2346                    marked d1 + d3      Charlemagne        -1            -1
## 2347                    marked d1 + d3      Charlemagne        -1            -1
## 2348                         marked d3      Charlemagne         1            -1
## 2349                                        Charlemagne        -1            -1
## 2350                                        Charlemagne        -1            -1
## 2351                         marked d3      Charlemagne         1            -1
## 2352                                        Charlemagne        -1            -1
## 2353                                        Charlemagne         1            -1
## 2354                         marked d1      Charlemagne        -1            -1
## 2355                                        Charlemagne        -1            -1
## 2356                         marked d1      Charlemagne         1            -1
## 2357                                        Charlemagne        -1            -1
## 2358                                        Charlemagne        -1            -1
## 2359                         marked d1      Charlemagne        -1            -1
## 2360                         marked d1      Charlemagne         1            -1
## 2361                                        Charlemagne        -1            -1
## 2362                                        Charlemagne         1            -1
## 2363          marked turquoise d1 + d3      Charlemagne         1            -1
## 2364               marked turquoise d3      Charlemagne         1            -1
## 2365          marked turquoise d1 + d3      Charlemagne         1            -1
## 2366                                        Charlemagne         1            -1
## 2367                                        Charlemagne        -1            -1
## 2368          marked turquoise d1 + d3      Charlemagne         1            -1
## 2369                                          Founder's        -1            -1
## 2370                                          Founder's        -1            -1
## 2371                                          Founder's        -1            -1
## 2372                                          Founder's        -1            -1
## 2373                                          Founder's        -1            -1
## 2374                                          Founder's         1            -1
## 2375                                          Founder's         1            -1
## 2376                                          Founder's        -1            -1
## 2377                                          Founder's         1            -1
## 2378                                          Founder's         1            -1
## 2379                                          Founder's         1            -1
## 2380                                          Founder's        -1            -1
## 2381                                          Founder's        -1            -1
## 2382                                          Founder's        -1            -1
## 2383                                          Founder's         1            -1
## 2384                                          Founder's         1            -1
## 2385                                          Founder's         1            -1
## 2386                                          Founder's        -1            -1
## 2387                                          Founder's        -1            -1
## 2388                                          Founder's        -1            -1
## 2389                                          Founder's        -1            -1
## 2390                                          Founder's        -1            -1
## 2391                                          Founder's        -1            -1
## 2392                                          Founder's         1            -1
## 2393                                          Founder's        -1            -1
## 2394                                          Founder's        -1            -1
## 2395                                          Founder's         1            -1
## 2396                                          Founder's        -1            -1
## 2397                                          Founder's        -1            -1
## 2398                                          Founder's         1            -1
## 2399                                          Founder's         1            -1
## 2400                                          Founder's         1            -1
## 2401                                          Founder's         1            -1
## 2402                                          Founder's        -1            -1
## 2403                                         23rd & 8th         1             1
## 2404                                         23rd & 8th        -1             1
## 2405                                         23rd & 8th        -1             1
## 2406                                         23rd & 8th         1             1
## 2407                                         23rd & 8th         1             1
## 2408                 wings torn at end       23rd & 8th        -1             1
## 2409                 wings torn at end       23rd & 8th        -1             1
## 2410                 wings torn at end       23rd & 8th        -1             1
## 2411                                         23rd & 8th        -1             1
## 2412                 wings torn at end       23rd & 8th         1             1
## 2413                                         23rd & 8th         1             1
## 2414                 wings torn at end       23rd & 8th         1             1
## 2415                                         23rd & 8th        -1             1
## 2416                                         23rd & 8th        -1             1
## 2417                                         23rd & 8th        -1             1
## 2418                                         23rd & 8th        -1             1
## 2419                                        SW 296th St        -1             1
## 2420                                        SW 296th St         1             1
## 2421                                        SW 296th St        -1             1
## 2422                                        SW 296th St        -1             1
## 2423                                        SW 296th St         1             1
## 2424                                        SW 296th St        -1             1
## 2425                                        SW 296th St         1             1
## 2426                                        SW 296th St        -1             1
## 2427                                        SW 296th St        -1             1
## 2428                                        SW 296th St         1             1
## 2429                                        SW 296th St        -1             1
## 2430                                        SW 296th St         1             1
## 2431                                        SW 296th St         1             1
## 2432                                        SW 296th St         1             1
## 2433                                        SW 296th St         1             1
## 2434                                        SW 296th St         1             1
## 2435                                        SW 296th St        -1             1
## 2436                                        SW 296th St        -1             1
## 2437                                        SW 296th St        -1             1
## 2438                                        SW 296th St        -1             1
## 2439                                        SW 296th St        -1             1
## 2440                                        SW 296th St        -1             1
## 2441                                        SW 296th St        -1             1
## 2442                                        SW 296th St        -1             1
## 2443                                        SW 296th St        -1             1
## 2444                                        SW 296th St        -1             1
## 2445                                        SW 296th St        -1             1
## 2446                 wings torn at end      SW 296th St        -1             1
## 2447                 wings torn at end      SW 296th St        -1             1
## 2448                 wings torn at end      SW 296th St        -1             1
## 2449                                        SW 296th St         1             1
## 2450                                        SW 296th St        -1             1
## 2451                                        SW 296th St        -1             1
## 2452                                        SW 296th St         1             1
## 2453                                        SW 296th St        -1             1
## 2454                 wings torn at end      Charlemagne         1            -1
## 2455                 wings torn at end      Charlemagne         1            -1
## 2456                                        Charlemagne        -1            -1
## 2457                 wings torn at end      Charlemagne         1            -1
## 2458                 wings torn at end      Charlemagne        -1            -1
## 2459                                        Charlemagne         1            -1
## 2460                                        Charlemagne        -1            -1
## 2461                                        Charlemagne        -1            -1
## 2462                 wings torn at end      Charlemagne         1            -1
## 2463                                        Charlemagne        -1            -1
## 2464                                        Charlemagne        -1            -1
## 2465                 wings torn at end      Charlemagne         1            -1
## 2466                 wings torn at end      Charlemagne        -1            -1
## 2467                                        Charlemagne         1            -1
## 2468                 wings torn at end      Charlemagne         1            -1
## 2469                 wings torn at end      Charlemagne         1            -1
## 2470                                          110N Main        -1             1
## 2471                                          110N Main         1             1
## 2472                                          110N Main         1             1
## 2473                                          110N Main        -1             1
## 2474                 wings torn at end        110N Main        -1             1
## 2475                                          110N Main         1             1
## 2476                                          110N Main         1             1
## 2477                                          110N Main         1             1
## 2478                                          110N Main        -1             1
## 2479                                          110N Main         1             1
## 2480                 wings torn at end        110N Main        -1             1
## 2481                 wings torn at end        110N Main        -1             1
## 2482                                          110N Main         1             1
## 2483                                          110N Main         1             1
## 2484                                          110N Main         1             1
## 2485                                          110N Main        -1             1
## 2486                                          110N Main         1             1
## 2487                                          110N Main         1             1
## 2488                                          110N Main        -1             1
## 2489                                          110N Main        -1             1
## 2490                                          110N Main         1             1
## 2491                                          110N Main        -1             1
## 2492                                          110N Main        -1             1
## 2493                                          110N Main         1             1
## 2494                                          110N Main        -1             1
## 2495                 wings torn at end        110N Main        -1             1
## 2496                                          110N Main         1             1
## 2497                                          110N Main        -1             1
## 2498                 wings torn at end        110N Main         1             1
## 2499                                          110N Main        -1             1
## 2500                                          110N Main         1             1
## 2501                                          110N Main         1             1
## 2502                                          110N Main        -1             1
## 2503                                          110N Main        -1             1
## 2504                                          110N Main         1             1
## 2505                                          110N Main         1             1
## 2506                                          110N Main        -1             1
## 2507                                          110N Main        -1             1
## 2508                                          110N Main        -1             1
## 2509                                          110N Main        -1             1
## 2510                                          110N Main        -1             1
## 2511                                          110N Main        -1             1
## 2512                 wings torn at end        110N Main         1             1
## 2513                                           Polk Ave         1             1
## 2514                                           Polk Ave         1             1
## 2515                                           Polk Ave         1             1
## 2516                 wings torn at end         Polk Ave        -1             1
## 2517                 wings torn at end         Polk Ave         1             1
## 2518                                           Polk Ave        -1             1
## 2519                 wings torn at end         Polk Ave         1             1
## 2520                                           Polk Ave         1             1
## 2521                 wings torn at end         Polk Ave        -1             1
## 2522                                           Polk Ave        -1             1
## 2523                                           Polk Ave        -1             1
## 2524                                           Polk Ave         1             1
## 2525                                           Polk Ave        -1             1
## 2526                                           Polk Ave         1             1
## 2527                                           Polk Ave         1             1
## 2528                        wings torn         Polk Ave        -1             1
## 2529                                           Polk Ave        -1             1
## 2530                                           Polk Ave        -1             1
## 2531                                           Polk Ave         1             1
## 2532                                           Polk Ave         1             1
## 2533                                           Polk Ave        -1             1
## 2534                                           Polk Ave         1             1
## 2535                                           Polk Ave         1             1
## 2536                 wings torn at end      Mount & 8th         1             1
## 2537                                        Mount & 8th         1             1
## 2538                                        Mount & 8th         1             1
## 2539                                        Mount & 8th         1             1
## 2540                 wings torn at end      Mount & 8th         1             1
## 2541                                        Mount & 8th        -1             1
## 2542                                        Mount & 8th        -1             1
## 2543                 wings torn at end      Mount & 8th        -1             1
## 2544                                        Mount & 8th         1             1
## 2545                                        Mount & 8th        -1             1
## 2546                                        Mount & 8th        -1             1
## 2547                                        Mount & 8th         1             1
## 2548                                        Mount & 8th        -1             1
## 2549                                        Mount & 8th        -1             1
## 2550                                        Mount & 8th        -1             1
## 2551                                        Mount & 8th         1             1
## 2552                                        Mount & 8th        -1             1
## 2553                                        Mount & 8th        -1             1
## 2554                 wings torn at end      Mount & 8th         1             1
## 2555                                        Mount & 8th         1             1
## 2556                                        Mount & 8th        -1             1
## 2557                 wings torn at end      Mount & 8th         1             1
## 2558                                        Mount & 8th         1             1
## 2559                                        Mount & 8th         1             1
## 2560                 wings torn at end      Mount & 8th        -1             1
## 2561                                        Mount & 8th        -1             1
## 2562                                        Charlemagne         1            -1
## 2563                                        Charlemagne        -1            -1
## 2564                                        Charlemagne         1            -1
## 2565                                        Charlemagne         1            -1
## 2566                                        Charlemagne        -1            -1
## 2567                 wings torn at end      Charlemagne         1            -1
## 2568                                        Charlemagne         1            -1
## 2569                 wings torn at end      Charlemagne        -1            -1
## 2570                                        Charlemagne        -1            -1
## 2571                                        Charlemagne        -1            -1
## 2572                                        Charlemagne        -1            -1
## 2573                 wings torn at end      Charlemagne         1            -1
## 2574                                        Charlemagne        -1            -1
## 2575                                        Charlemagne        -1            -1
## 2576                                        Charlemagne        -1            -1
## 2577                                        Charlemagne         1            -1
## 2578                                        Charlemagne        -1            -1
## 2579                                        Charlemagne        -1            -1
## 2580                                        Charlemagne        -1            -1
## 2581                 wings torn at end      Charlemagne        -1            -1
## 2582                                        Charlemagne         1            -1
## 2583                 wings torn at end      Charlemagne        -1            -1
## 2584                                        Charlemagne         1            -1
## 2585                                        Charlemagne         1            -1
## 2586                                        Charlemagne         1            -1
## 2587                 wings torn at end      Charlemagne        -1            -1
## 2588                 wings torn at end      Charlemagne        -1            -1
## 2589                                        Charlemagne         1            -1
## 2590                 wings torn at end      Charlemagne        -1            -1
## 2591                                        Charlemagne        -1            -1
## 2592                                        Charlemagne         1            -1
## 2593                                        Charlemagne         1            -1
## 2594                 wings torn at end      Charlemagne        -1            -1
## 2595                                        Charlemagne        -1            -1
## 2596                                        Charlemagne         1            -1
## 2597                                        Charlemagne         1            -1
## 2598                                        Charlemagne         1            -1
## 2599                                        Charlemagne         1            -1
## 2600                 wings torn at end      Charlemagne         1            -1
## 2601                                        Charlemagne         1            -1
## 2602                                        Charlemagne         1            -1
## 2603                                        Charlemagne         1            -1
## 2604                                        Charlemagne         1            -1
## 2605                                        Charlemagne         1            -1
## 2606                                        Charlemagne         1            -1
## 2607                                        Charlemagne         1            -1
## 2608                 wings torn at end      Charlemagne        -1            -1
## 2609                                        Charlemagne        -1            -1
## 2610                                        Charlemagne         1            -1
## 2611                 wings torn at end      Charlemagne        -1            -1
## 2612                                        Charlemagne        -1            -1
## 2613                                        Charlemagne        -1            -1
## 2614                 wings torn at end      Charlemagne        -1            -1
## 2615                                        Charlemagne        -1            -1
## 2616                                        Charlemagne         1            -1
## 2617                                        Charlemagne        -1            -1
## 2618                                        Charlemagne         1            -1
## 2619                 wings torn at end      Charlemagne        -1            -1
## 2620                 wings torn at end      Charlemagne         1            -1
## 2621                                        Charlemagne        -1            -1
## 2622                                        Charlemagne         1            -1
## 2623                 wings torn at end      Charlemagne        -1            -1
## 2624                                        Charlemagne        -1            -1
## 2625                                        Charlemagne        -1            -1
## 2626                                        Charlemagne        -1            -1
## 2627                 wings torn at end      Charlemagne        -1            -1
## 2628                 wings torn at end      Charlemagne         1            -1
## 2629                 wings torn at end      Charlemagne        -1            -1
## 2630                                        Charlemagne         1            -1
## 2631                                        Charlemagne        -1            -1
## 2632                                        Charlemagne        -1            -1
## 2633                 wings torn at end      Charlemagne        -1            -1
## 2634                                        Charlemagne        -1            -1
## 2635                                        Charlemagne        -1            -1
## 2636                        wings torn      Charlemagne         1            -1
## 2637                                        Charlemagne        -1            -1
## 2638                        wings torn      Charlemagne         1            -1
## 2639                                        Charlemagne         1            -1
## 2640                                        Charlemagne        -1            -1
## 2641                                        Charlemagne        -1            -1
## 2642                                        Charlemagne        -1            -1
## 2643                                          Mohawk St         1            -1
## 2644                                          Mohawk St         1            -1
## 2645                                          Mohawk St         1            -1
## 2646                 wings torn at end        Mohawk St        -1            -1
## 2647                                          Mohawk St        -1            -1
## 2648                                          Mohawk St         1            -1
## 2649                                          Mohawk St        -1            -1
## 2650                                          Mohawk St        -1            -1
## 2651                                          Mohawk St        -1            -1
## 2652                                          Mohawk St        -1            -1
## 2653                                          Mohawk St         1            -1
## 2654                                          Mohawk St        -1            -1
## 2655                                          Mohawk St        -1            -1
## 2656                                          Mohawk St         1            -1
## 2657                                          Mohawk St        -1            -1
## 2658                                         23rd & 8th        -1             1
## 2659             wings torn at the end       23rd & 8th        -1             1
## 2660                                         23rd & 8th        -1             1
## 2661                                         23rd & 8th        -1             1
## 2662                                         23rd & 8th        -1             1
## 2663             wings torn at the end       23rd & 8th        -1             1
## 2664             wings torn at the end       23rd & 8th        -1             1
## 2665                                         23rd & 8th        -1             1
## 2666                                         23rd & 8th        -1             1
## 2667                                         23rd & 8th        -1             1
## 2668                                         23rd & 8th         1             1
## 2669                                         23rd & 8th        -1             1
## 2670             wings torn at the end       23rd & 8th         1             1
## 2671             wings torn at the end       23rd & 8th        -1             1
## 2672                                         23rd & 8th        -1             1
## 2673                                         23rd & 8th        -1             1
## 2674             wings torn at the end       23rd & 8th        -1             1
## 2675                                         23rd & 8th         1             1
## 2676             wings torn at the end       23rd & 8th        -1             1
## 2677             wings torn at the end       23rd & 8th         1             1
## 2678                                         23rd & 8th        -1             1
## 2679             wings torn at the end       23rd & 8th         1             1
## 2680                                         23rd & 8th        -1             1
## 2681             wings torn at the end       23rd & 8th        -1             1
## 2682                                         23rd & 8th        -1             1
## 2683             wings torn at the end       23rd & 8th        -1             1
## 2684                                         23rd & 8th        -1             1
## 2685             wings torn at the end       23rd & 8th        -1             1
## 2686             wings torn at the end       23rd & 8th        -1             1
## 2687             wings torn at the end       23rd & 8th        -1             1
## 2688             wings torn at the end       23rd & 8th        -1             1
## 2689             wings torn at the end       23rd & 8th         1             1
## 2690                                         23rd & 8th        -1             1
## 2691                                         23rd & 8th         1             1
## 2692                                         23rd & 8th        -1             1
## 2693                                         23rd & 8th        -1             1
## 2694                                        SW 296th St        -1             1
## 2695                                        SW 296th St         1             1
## 2696                                        SW 296th St         1             1
## 2697                                        SW 296th St         1             1
## 2698                                        SW 296th St         1             1
## 2699             wings torn at the end      SW 296th St        -1             1
## 2700                                        SW 296th St        -1             1
## 2701                                        SW 296th St         1             1
## 2702             wings torn at the end      SW 296th St        -1             1
## 2703             wings torn at the end      SW 296th St        -1             1
## 2704             wings torn at the end      SW 296th St        -1             1
## 2705                                        SW 296th St        -1             1
## 2706                                        SW 296th St        -1             1
## 2707             wings torn at the end      SW 296th St        -1             1
## 2708                                        SW 296th St         1             1
## 2709                                        SW 296th St         1             1
## 2710                                        SW 296th St         1             1
## 2711                                        SW 296th St        -1             1
## 2712                                        SW 296th St        -1             1
## 2713                                        SW 296th St         1             1
## 2714                                        SW 296th St        -1             1
## 2715                                        SW 296th St         1             1
## 2716                                        SW 296th St         1             1
## 2717                                        SW 296th St        -1             1
## 2718                                        SW 296th St        -1             1
## 2719                                        SW 296th St        -1             1
## 2720                                        SW 296th St        -1             1
## 2721                                        SW 296th St        -1             1
## 2722                                        SW 296th St         1             1
## 2723                                        SW 296th St         1             1
## 2724                                        SW 296th St        -1             1
## 2725                                        SW 296th St        -1             1
## 2726                                        SW 296th St        -1             1
## 2727                                        SW 296th St        -1             1
## 2728                                        SW 296th St        -1             1
## 2729                                        SW 296th St        -1             1
## 2730                                        SW 296th St         1             1
## 2731                                        SW 296th St         1             1
## 2732                                        SW 296th St        -1             1
## 2733                                        SW 296th St        -1             1
## 2734                                        SW 296th St        -1             1
## 2735                                        SW 296th St        -1             1
## 2736                                              KLMRL        -1            -1
## 2737                                              KLMRL         1            -1
## 2738             wings torn at the end            KLMRL         1            -1
## 2739                                              KLMRL        -1            -1
## 2740                                                 JP        -1            -1
## 2741                                                 JP         1            -1
## 2742                                                 JP        -1            -1
## 2743                                                 JP        -1            -1
## 2744                                                 JP         1            -1
## 2745                                                 JP        -1            -1
## 2746                                              KLMRL         1            -1
## 2747                                              KLMRL         1            -1
## 2748                                              KLMRL        -1            -1
## 2749                                              KLMRL        -1            -1
## 2750                                                 JP         1            -1
## 2751                                                 JP        -1            -1
## 2752                                                 JP         1            -1
## 2753             wings torn at the end               JP        -1            -1
## 2754                                              KLMRL         1            -1
## 2755                                              KLMRL        -1            -1
## 2756             wings torn at the end            KLMRL        -1            -1
## 2757                                              KLMRL         1            -1
## 2758                                              KLMRL        -1            -1
## 2759                                                 JP        -1            -1
## 2760                                                 JP         1            -1
## 2761                                                 JP        -1            -1
## 2762                                                 JP         1            -1
## 2763             wings torn at the end            KLMRL        -1            -1
## 2764                                              KLMRL        -1            -1
## 2765                                              KLMRL        -1            -1
## 2766           thorax torn on one side            KLMRL         1            -1
## 2767                                              KLMRL        -1            -1
## 2768             wings torn at the end               JP        -1            -1
## 2769                                                 JP         1            -1
## 2770                                                 JP         1            -1
## 2771                                                 JP        -1            -1
## 2772             wings torn at the end            KLMRL        -1            -1
## 2773                                              KLMRL        -1            -1
## 2774                                              KLMRL        -1            -1
## 2775                                              KLMRL        -1            -1
## 2776                                              KLMRL        -1            -1
## 2777             wings torn at the end               JP         1            -1
## 2778                                                 JP        -1            -1
## 2779                                                 JP        -1            -1
## 2780                                                 JP        -1            -1
## 2781                                                 JP        -1            -1
## 2782                                                 JP        -1            -1
## 2783                                                 JP        -1            -1
## 2784                                                 JP        -1            -1
## 2785                                                 JP        -1            -1
## 2786                                                 JP        -1            -1
## 2787                                                 JP        -1            -1
## 2788                                                 JP         1            -1
## 2789                                                 JP         1            -1
## 2790                                                 JP         1            -1
## 2791                                                 JP        -1            -1
## 2792                                                 JP        -1            -1
## 2793                                                 JP         1            -1
## 2794                                                 JP         1            -1
## 2795                                                 JP        -1            -1
## 2796                                                 JP         1            -1
## 2797                                                 JP        -1            -1
## 2798                                                 JP        -1            -1
## 2799                                                 JP         1            -1
## 2800                                                 JP        -1            -1
## 2801                                                 JP         1            -1
## 2802                                                 JP         1            -1
## 2803                                                 JP         1            -1
## 2804                                                 JP         1            -1
## 2805                                                 JP        -1            -1
## 2806                                                 JP        -1            -1
## 2807                                                 JP        -1            -1
## 2808                                                 JP         1            -1
## 2809                                                 JP         1            -1
## 2810                                                 JP        -1            -1
## 2811                                                 JP        -1            -1
## 2812                                          110N Main        -1             1
## 2813                                          110N Main         1             1
## 2814                                          110N Main         1             1
## 2815                                          110N Main        -1             1
## 2816                                          110N Main        -1             1
## 2817                                          110N Main         1             1
## 2818                                          110N Main         1             1
## 2819                                          110N Main         1             1
## 2820                                          110N Main        -1             1
## 2821                                          110N Main         1             1
## 2822                                          110N Main        -1             1
## 2823             wings torn at the end        110N Main        -1             1
## 2824                                          110N Main        -1             1
## 2825                                          110N Main        -1             1
## 2826                                          110N Main         1             1
## 2827                                          110N Main        -1             1
## 2828                                          110N Main         1             1
## 2829                                          110N Main        -1             1
## 2830                                          110N Main        -1             1
## 2831                                          110N Main        -1             1
## 2832                                          110N Main         1             1
## 2833                                          110N Main        -1             1
## 2834                                          110N Main        -1             1
## 2835                                          110N Main         1             1
## 2836                                          110N Main         1             1
## 2837                                          110N Main        -1             1
## 2838                                          110N Main         1             1
## 2839                                          110N Main         1             1
## 2840                                          110N Main        -1             1
## 2841                                          110N Main        -1             1
## 2842                                          110N Main        -1             1
## 2843                                          110N Main        -1             1
## 2844                                          110N Main        -1             1
## 2845                                          110N Main        -1             1
## 2846                                          110N Main         1             1
## 2847                                          110N Main        -1             1
## 2848                                          110N Main         1             1
## 2849                                          110N Main        -1             1
## 2850                                          110N Main        -1             1
## 2851                                          110N Main        -1             1
## 2852                                          110N Main         1             1
## 2853                                          110N Main        -1             1
## 2854                                          110N Main        -1             1
## 2855                                           Polk Ave        -1             1
## 2856                                           Polk Ave         1             1
## 2857                                           Polk Ave        -1             1
## 2858                                           Polk Ave         1             1
## 2859                                           Polk Ave         1             1
## 2860                                           Polk Ave         1             1
## 2861                                           Polk Ave         1             1
## 2862             wings torn at the end         Polk Ave        -1             1
## 2863                                           Polk Ave        -1             1
## 2864             wings torn at the end         Polk Ave         1             1
## 2865                                           Polk Ave        -1             1
## 2866                                           Polk Ave        -1             1
## 2867                                           Polk Ave        -1             1
## 2868                                           Polk Ave         1             1
## 2869                                           Polk Ave         1             1
## 2870                                           Polk Ave        -1             1
## 2871                                           Polk Ave        -1             1
## 2872             wings torn at the end         Polk Ave        -1             1
## 2873                                           Polk Ave         1             1
## 2874                                           Polk Ave        -1             1
## 2875                                           Polk Ave        -1             1
## 2876                                           Polk Ave         1             1
## 2877                                           Polk Ave        -1             1
## 2878                                           Polk Ave         1             1
## 2879                                           Polk Ave        -1             1
## 2880                                           Polk Ave         1             1
## 2881                                           Polk Ave         1             1
## 2882                                           Polk Ave        -1             1
## 2883                                           Polk Ave        -1             1
## 2884                                           Polk Ave         1             1
## 2885                                           Polk Ave         1             1
## 2886                                           Polk Ave         1             1
## 2887                                           Polk Ave        -1             1
## 2888                                           Polk Ave        -1             1
## 2889                                           Polk Ave         1             1
## 2890                                           Polk Ave        -1             1
## 2891                                           Polk Ave        -1             1
## 2892                                           Polk Ave        -1             1
## 2893                                           Polk Ave        -1             1
## 2894                                           Polk Ave        -1             1
## 2895                                           Polk Ave         1             1
## 2896                                           Polk Ave        -1             1
## 2897                                           Polk Ave        -1             1
## 2898                                           Polk Ave        -1             1
## 2899                                           Polk Ave         1             1
## 2900                                           Polk Ave        -1             1
## 2901                                           Polk Ave         1             1
## 2902                                           Polk Ave         1             1
## 2903                                           Polk Ave        -1             1
## 2904                                           Polk Ave        -1             1
## 2905                                        Mount & 8th        -1             1
## 2906                                        Mount & 8th        -1             1
## 2907                                        Mount & 8th        -1             1
## 2908                                        Mount & 8th        -1             1
## 2909                                        Mount & 8th        -1             1
## 2910                                        Mount & 8th        -1             1
## 2911                                        Mount & 8th         1             1
## 2912                                        Mount & 8th         1             1
## 2913                                        Mount & 8th         1             1
## 2914             wings torn at the end      Mount & 8th        -1             1
## 2915                                        Mount & 8th        -1             1
## 2916                                        Mount & 8th        -1             1
## 2917                                        Mount & 8th         1             1
## 2918                                        Mount & 8th        -1             1
## 2919                                        Mount & 8th         1             1
## 2920                                        Mount & 8th         1             1
## 2921             wings torn at the end      Mount & 8th        -1             1
## 2922                                        Mount & 8th        -1             1
## 2923                                        Mount & 8th        -1             1
## 2924                                        Mount & 8th        -1             1
## 2925                                        Mount & 8th        -1             1
## 2926                                        Mount & 8th        -1             1
## 2927                                        Mount & 8th         1             1
## 2928                                        Mount & 8th         1             1
## 2929                                        Mount & 8th        -1             1
## 2930             wings torn at the end      Mount & 8th         1             1
## 2931                                        Mount & 8th        -1             1
## 2932                                        Mount & 8th        -1             1
## 2933                                        Mount & 8th        -1             1
## 2934                                        Charlemagne        -1            -1
## 2935                                        Charlemagne        -1            -1
## 2936             wings torn at the end      Charlemagne        -1            -1
## 2937                                        Charlemagne        -1            -1
## 2938                                        Charlemagne         1            -1
## 2939                                        Charlemagne         1            -1
## 2940                                        Charlemagne         1            -1
## 2941             wings torn at the end      Charlemagne        -1            -1
## 2942                                        Charlemagne         1            -1
## 2943                                        Charlemagne         1            -1
## 2944                                        Charlemagne         1            -1
## 2945             wings torn at the end      Charlemagne         1            -1
## 2946                                        Charlemagne        -1            -1
## 2947                                        Charlemagne        -1            -1
## 2948                                        Charlemagne        -1            -1
## 2949                                        Charlemagne        -1            -1
## 2950                                        Charlemagne         1            -1
## 2951                                        Charlemagne        -1            -1
## 2952                                        Charlemagne         1            -1
## 2953                                        Charlemagne         1            -1
## 2954                                        Charlemagne        -1            -1
## 2955                                        Charlemagne         1            -1
## 2956                                        Charlemagne         1            -1
## 2957                                        Charlemagne        -1            -1
## 2958                                        Charlemagne        -1            -1
## 2959                                        Charlemagne        -1            -1
## 2960             wings torn at the end      Charlemagne        -1            -1
## 2961                                        Charlemagne        -1            -1
## 2962                                        Charlemagne        -1            -1
## 2963                                        Charlemagne        -1            -1
## 2964             wings torn at the end      Charlemagne         1            -1
## 2965                                        Charlemagne        -1            -1
## 2966                                        Charlemagne         1            -1
## 2967                                        Charlemagne        -1            -1
## 2968                                        Charlemagne         1            -1
## 2969                                        Charlemagne         1            -1
## 2970                                        Charlemagne         1            -1
## 2971                                        Charlemagne         1            -1
## 2972                                        Charlemagne        -1            -1
## 2973             wings torn at the end      Charlemagne        -1            -1
## 2974                                        Charlemagne        -1            -1
## 2975                                        Charlemagne         1            -1
## 2976                                        Charlemagne         1            -1
## 2977                                        Charlemagne         1            -1
## 2978                                        Charlemagne        -1            -1
## 2979                                        Charlemagne        -1            -1
## 2980                                        Charlemagne        -1            -1
## 2981             wings torn at the end      Charlemagne        -1            -1
## 2982                                        Charlemagne         1            -1
## 2983                                        Charlemagne         1            -1
## 2984                                        Charlemagne         1            -1
## 2985                                        Charlemagne        -1            -1
## 2986                                        Charlemagne        -1            -1
## 2987                                        Charlemagne        -1            -1
## 2988                                        Charlemagne         1            -1
## 2989                                        Charlemagne        -1            -1
## 2990                                        Charlemagne         1            -1
## 2991                                        Charlemagne        -1            -1
## 2992                                        Charlemagne        -1            -1
## 2993                                        Charlemagne        -1            -1
## 2994                                        Charlemagne         1            -1
## 2995                                        Charlemagne         1            -1
## 2996                                        Charlemagne        -1            -1
## 2997           thorax torn on one side      Charlemagne        -1            -1
## 2998                                        Charlemagne         1            -1
## 2999             wings torn at the end      Charlemagne        -1            -1
## 3000                                        Charlemagne        -1            -1
## 3001                                        Charlemagne        -1            -1
## 3002                                        Charlemagne        -1            -1
## 3003                                        Charlemagne         1            -1
## 3004                                        Charlemagne        -1            -1
## 3005                                        Charlemagne        -1            -1
## 3006                                        Charlemagne        -1            -1
## 3007                                        Charlemagne        -1            -1
## 3008                                        Charlemagne        -1            -1
## 3009                                        Charlemagne         1            -1
## 3010                                        Charlemagne         1            -1
## 3011                                        Charlemagne         1            -1
## 3012                                        Charlemagne        -1            -1
## 3013                                        Charlemagne        -1            -1
## 3014                                        Charlemagne        -1            -1
## 3015                                        Charlemagne         1            -1
## 3016                                        Charlemagne         1            -1
## 3017                                        Charlemagne         1            -1
## 3018                                        Charlemagne         1            -1
## 3019                                        Charlemagne         1            -1
## 3020                                        Charlemagne        -1            -1
## 3021                                        Charlemagne        -1            -1
## 3022                                        Charlemagne        -1            -1
## 3023                                        Charlemagne         1            -1
## 3024                                        Charlemagne        -1            -1
## 3025                                        Charlemagne         1            -1
## 3026             wings torn at the end      Charlemagne        -1            -1
## 3027                                        Charlemagne         1            -1
## 3028                                        Charlemagne        -1            -1
## 3029                                        Charlemagne         1            -1
## 3030             wings torn at the end      Charlemagne        -1            -1
## 3031                                        Charlemagne        -1            -1
## 3032                                        Charlemagne        -1            -1
## 3033                                        Charlemagne        -1            -1
## 3034                                        Charlemagne        -1            -1
## 3035                                        Charlemagne        -1            -1
## 3036             wings torn at the end      Charlemagne        -1            -1
## 3037                                        Charlemagne        -1            -1
## 3038             wings torn at the end      Charlemagne        -1            -1
## 3039                                        Charlemagne        -1            -1
## 3040                                        Charlemagne        -1            -1
## 3041                                        Charlemagne        -1            -1
## 3042                                        Charlemagne         1            -1
## 3043                                        Charlemagne        -1            -1
## 3044                                        Charlemagne        -1            -1
## 3045                                        Charlemagne        -1            -1
## 3046                                        Charlemagne        -1            -1
## 3047                                        Charlemagne        -1            -1
## 3048                                        Charlemagne        -1            -1
## 3049                                        Charlemagne        -1            -1
## 3050             wings torn at the end      Charlemagne        -1            -1
## 3051             wings torn at the end      Charlemagne         1            -1
## 3052                                        Charlemagne        -1            -1
## 3053                                        Charlemagne        -1            -1
## 3054                                        Charlemagne         1            -1
## 3055                                        Charlemagne        -1            -1
## 3056                                        Charlemagne        -1            -1
## 3057                                        Charlemagne        -1            -1
## 3058                                        Charlemagne         1            -1
## 3059                                        Charlemagne         1            -1
## 3060                                        Charlemagne        -1            -1
## 3061                                        Charlemagne        -1            -1
## 3062             wings torn at the end      Charlemagne        -1            -1
## 3063                                        Charlemagne        -1            -1
## 3064                                        Charlemagne        -1            -1
## 3065                                        Charlemagne        -1            -1
## 3066                                        Charlemagne         1            -1
## 3067                                        Charlemagne        -1            -1
## 3068                                        Charlemagne        -1            -1
## 3069                                        Charlemagne        -1            -1
## 3070                                        Charlemagne        -1            -1
## 3071                                        Charlemagne        -1            -1
## 3072                                        Charlemagne        -1            -1
## 3073                                        Charlemagne        -1            -1
## 3074                                        Charlemagne         1            -1
## 3075                                        Charlemagne         1            -1
## 3076                                        Charlemagne        -1            -1
## 3077                                        Charlemagne         1            -1
## 3078                                        Charlemagne        -1            -1
## 3079                                        Charlemagne        -1            -1
## 3080                                        Charlemagne        -1            -1
## 3081                                        Charlemagne        -1            -1
## 3082                                        Charlemagne         1            -1
## 3083                                        Charlemagne        -1            -1
## 3084                                        Charlemagne         1            -1
## 3085                                        Charlemagne         1            -1
## 3086                                        Charlemagne         1            -1
## 3087                                        Charlemagne         1            -1
## 3088                                        Charlemagne         1            -1
## 3089                                        Charlemagne         1            -1
## 3090                                        Charlemagne        -1            -1
## 3091                                        Charlemagne        -1            -1
## 3092                                        Charlemagne         1            -1
## 3093                                        Charlemagne         1            -1
## 3094                                        Charlemagne        -1            -1
## 3095                                        Charlemagne        -1            -1
## 3096                                        Charlemagne        -1            -1
## 3097                                        Charlemagne         1            -1
## 3098                                        Charlemagne        -1            -1
## 3099                                        Charlemagne        -1            -1
## 3100                                        Charlemagne         1            -1
## 3101             wings torn at the end      Charlemagne        -1            -1
## 3102                                        Charlemagne        -1            -1
## 3103                                        Charlemagne         1            -1
## 3104                                        Charlemagne        -1            -1
## 3105                                        Charlemagne        -1            -1
## 3106                                        Charlemagne         1            -1
## 3107                                        Charlemagne         1            -1
## 3108                                        Charlemagne        -1            -1
## 3109                                        Charlemagne        -1            -1
## 3110                                        Charlemagne         1            -1
## 3111                                        Charlemagne        -1            -1
## 3112                                        Charlemagne         1            -1
## 3113                                        Charlemagne        -1            -1
## 3114                                        Charlemagne         1            -1
## 3115                                        Charlemagne         1            -1
## 3116                                        Charlemagne        -1            -1
## 3117                                        Charlemagne        -1            -1
## 3118                                        Charlemagne        -1            -1
## 3119                                        Charlemagne         1            -1
## 3120                                        Charlemagne        -1            -1
## 3121                                        Charlemagne        -1            -1
## 3122                                        Charlemagne        -1            -1
## 3123                                        Charlemagne         1            -1
## 3124                                        Charlemagne         1            -1
## 3125                                        Charlemagne        -1            -1
## 3126                                        Charlemagne        -1            -1
## 3127                                        Charlemagne        -1            -1
## 3128                                        Charlemagne         1            -1
## 3129                                        Charlemagne         1            -1
## 3130                                        Charlemagne        -1            -1
## 3131                                        Charlemagne         1            -1
## 3132                                        Charlemagne        -1            -1
## 3133                                        Charlemagne        -1            -1
## 3134                                        Charlemagne        -1            -1
## 3135                                        Charlemagne         1            -1
## 3136             wings torn at the end      Charlemagne         1            -1
## 3137                                        Charlemagne        -1            -1
## 3138                                        Charlemagne         1            -1
## 3139                                        Charlemagne        -1            -1
## 3140                                        Charlemagne         1            -1
## 3141                                        Charlemagne        -1            -1
## 3142                                        Charlemagne        -1            -1
## 3143                                        Charlemagne         1            -1
## 3144                                        Charlemagne        -1            -1
## 3145                                        Charlemagne         1            -1
## 3146                                        Charlemagne         1            -1
## 3147                                        Charlemagne         1            -1
## 3148                                        Charlemagne        -1            -1
## 3149                                        Charlemagne         1            -1
## 3150                                        Charlemagne         1            -1
## 3151                                        Charlemagne         1            -1
## 3152                                        Charlemagne        -1            -1
## 3153                                        Charlemagne         1            -1
## 3154                                        Charlemagne        -1            -1
## 3155             wings torn at the end       Aregood Ln        -1            -1
## 3156                                         Aregood Ln        -1            -1
## 3157                                         Aregood Ln        -1            -1
## 3158                                         Aregood Ln        -1            -1
## 3159                                         Aregood Ln         1            -1
## 3160                                          Founder's        -1            -1
## 3161                                          Founder's         1            -1
## 3162                                          Founder's         1            -1
## 3163                                          Founder's        -1            -1
## 3164                                          Founder's        -1            -1
## 3165             wings torn at the end       Aregood Ln         1            -1
## 3166                                         Aregood Ln        -1            -1
## 3167                                         Aregood Ln         1            -1
## 3168             wings torn at the end       Aregood Ln        -1            -1
## 3169             wings torn at the end       Aregood Ln        -1            -1
## 3170                                          Founder's         1            -1
## 3171                                          Founder's        -1            -1
## 3172                                          Founder's        -1            -1
## 3173                                          Founder's         1            -1
## 3174                                          Founder's        -1            -1
## 3175                                         Aregood Ln        -1            -1
## 3176                                         Aregood Ln        -1            -1
## 3177                                         Aregood Ln        -1            -1
## 3178           thorax torn on one side       Aregood Ln        -1            -1
## 3179             wings torn at the end       Aregood Ln        -1            -1
## 3180                                          Founder's        -1            -1
## 3181                                          Founder's        -1            -1
## 3182                                          Founder's        -1            -1
## 3183                                          Founder's         1            -1
## 3184                                         Aregood Ln        -1            -1
## 3185                                         Aregood Ln        -1            -1
## 3186                                         Aregood Ln        -1            -1
## 3187                                          Founder's        -1            -1
## 3188                                          Founder's        -1            -1
## 3189                                          Founder's         1            -1
## 3190                                          Founder's        -1            -1
## 3191                                          Founder's        -1            -1
## 3192                                          Founder's        -1            -1
## 3193                                          Founder's        -1            -1
## 3194                                          Founder's        -1            -1
## 3195                                          Founder's         1            -1
## 3196                                          Founder's         1            -1
## 3197                                          Founder's        -1            -1
## 3198             wings torn at the end        Founder's         1            -1
## 3199                                          Founder's         1            -1
## 3200             wings torn at the end        Founder's        -1            -1
## 3201                                          Founder's        -1            -1
## 3202                                          Founder's         1            -1
## 3203                                          Founder's        -1            -1
## 3204                                          Founder's        -1            -1
## 3205             wings torn at the end        Founder's         1            -1
## 3206                                          Founder's        -1            -1
## 3207                                          Founder's        -1            -1
## 3208                                          Founder's         1            -1
## 3209                                          Founder's        -1            -1
## 3210                                          Founder's         1            -1
## 3211                                          Founder's         1            -1
## 3212                                          Founder's        -1            -1
## 3213                                          Founder's        -1            -1
## 3214                                          Founder's         1            -1
## 3215                                          Founder's        -1            -1
## 3216                                          Founder's        -1            -1
## 3217                                          Founder's         1            -1
## 3218                                          Founder's         1            -1
## 3219                                          Founder's         1            -1
## 3220                                          Founder's        -1            -1
## 3221                                          Founder's        -1            -1
## 3222                                          Founder's         1            -1
## 3223                                          Founder's         1            -1
## 3224             wings torn at the end       Aregood Ln         1            -1
## 3225             wings torn at the end       Aregood Ln         1            -1
## 3226                                          Founder's        -1            -1
## 3227                                          Founder's         1            -1
## 3228                                          Founder's         1            -1
## 3229                                          Founder's        -1            -1
## 3230                                          Founder's        -1            -1
## 3231                                          Founder's         1            -1
## 3232                                          Founder's         1            -1
## 3233                                          Founder's        -1            -1
## 3234                                          Founder's         1            -1
## 3235                                          Founder's         1            -1
## 3236                                          Founder's        -1            -1
## 3237                                          Founder's        -1            -1
## 3238                                          Founder's        -1            -1
## 3239                                          Founder's        -1            -1
## 3240                                          Founder's         1            -1
## 3241                                          Founder's         1            -1
## 3242                                          Founder's        -1            -1
## 3243                                          Founder's         1            -1
## 3244                                          Founder's         1            -1
## 3245                                          Founder's         1            -1
## 3246                                          Founder's        -1            -1
## 3247                                          Founder's        -1            -1
## 3248                                          Founder's        -1            -1
## 3249                                          Founder's         1            -1
## 3250                                          Founder's         1            -1
## 3251                                        SW 296th St        -1             1
## 3252                                        SW 296th St        -1             1
## 3253                                        SW 296th St         1             1
## 3254                                        SW 296th St        -1             1
## 3255                                        SW 296th St         1             1
## 3256                                        SW 296th St         1             1
## 3257                                        SW 296th St        -1             1
## 3258                                        SW 296th St         1             1
## 3259                                        SW 296th St         1             1
## 3260                                        SW 296th St         1             1
## 3261                                        SW 296th St        -1             1
## 3262                                        SW 296th St         1             1
## 3263                                        Charlemagne         1            -1
## 3264                                        Charlemagne         1            -1
## 3265                                        Charlemagne         1            -1
## 3266                                        Charlemagne         1            -1
## 3267                                        Charlemagne        -1            -1
## 3268                                        Charlemagne         1            -1
## 3269                                        Charlemagne        -1            -1
## 3270                                        Charlemagne         1            -1
## 3271                                        Charlemagne         1            -1
## 3272                                        Charlemagne         1            -1
## 3273                                        Charlemagne        -1            -1
## 3274                                        Charlemagne         1            -1
## 3275                                        Charlemagne         1            -1
## 3276                                        Charlemagne        -1            -1
## 3277                                        Charlemagne         1            -1
## 3278                                        Charlemagne        -1            -1
## 3279                                        Charlemagne         1            -1
## 3280                                        Charlemagne        -1            -1
## 3281                                        Charlemagne         1            -1
## 3282                                        Charlemagne        -1            -1
## 3283                                        Charlemagne         1            -1
## 3284                                        Charlemagne        -1            -1
## 3285                                        Charlemagne         1            -1
## 3286                                        Charlemagne        -1            -1
## 3287                                        Charlemagne        -1            -1
## 3288                                        Charlemagne        -1            -1
## 3289                                          110N Main        -1             1
## 3290                                          110N Main         1             1
## 3291                                          110N Main        -1             1
## 3292                                          110N Main        -1             1
## 3293                                          110N Main         1             1
## 3294                                          110N Main         1             1
## 3295                                          110N Main         1             1
## 3296                                          110N Main        -1             1
## 3297                                          110N Main        -1             1
## 3298                                          110N Main         1             1
## 3299                                          110N Main        -1             1
## 3300                                          110N Main         1             1
## 3301                                          110N Main        -1             1
## 3302                                          110N Main         1             1
## 3303                                          110N Main        -1             1
## 3304                                          110N Main         1             1
## 3305                                          110N Main         1             1
## 3306                                          110N Main        -1             1
## 3307                                          110N Main         1             1
## 3308                                          110N Main        -1             1
## 3309                                          110N Main        -1             1
## 3310                                        Charlemagne        -1            -1
## 3311                                        Charlemagne         1            -1
## 3312                                        Charlemagne        -1            -1
## 3313                                        Charlemagne        -1            -1
## 3314                                        SW 142nd St         1             1
## 3315                                        SW 142nd St        -1             1
## 3316                                        SW 142nd St         1             1
## 3317                                        SW 142nd St        -1             1
## 3318                                                 JP        -1            -1
## 3319                                                 JP        -1            -1
## 3320                                                 JP         1            -1
## 3321                                                 JP        -1            -1
## 3322                                                 JP         1            -1
## 3323                                                 JP         1            -1
## 3324                                                 JP         1            -1
## 3325                                        Charlemagne        -1            -1
## 3326                                        Charlemagne         1            -1
## 3327                                        Charlemagne         1            -1
## 3328                                        Charlemagne        -1            -1
## 3329                                        Charlemagne        -1            -1
## 3330                                        Charlemagne        -1            -1
## 3331                                                 JP        -1            -1
## 3332                                                 JP         1            -1
## 3333                                                 JP        -1            -1
## 3334                                        Charlemagne         1            -1
## 3335                                        Charlemagne         1            -1
## 3336                                        Charlemagne        -1            -1
## 3337                                        Charlemagne         1            -1
## 3338                                        Charlemagne        -1            -1
## 3339                                        Charlemagne         1            -1
## 3340                                           Polk Ave         1             1
## 3341                                           Polk Ave        -1             1
## 3342                                           Polk Ave         1             1
## 3343                                           Polk Ave         1             1
## 3344                       torn thorax         Polk Ave         1             1
## 3345                                           Polk Ave         1             1
## 3346                                           Polk Ave         1             1
## 3347                                           Polk Ave         1             1
## 3348                                           Polk Ave         1             1
## 3349                                           Polk Ave        -1             1
## 3350                                           Polk Ave         1             1
## 3351                                           Polk Ave        -1             1
## 3352                                           Polk Ave         1             1
## 3353                                           Polk Ave         1             1
## 3354                                           Polk Ave         1             1
## 3355                                           Polk Ave         1             1
## 3356                                           Polk Ave         1             1
## 3357                                           Polk Ave         1             1
## 3358                                           Polk Ave         1             1
## 3359                                           Polk Ave         1             1
## 3360                                           Polk Ave         1             1
## 3361                                           Polk Ave         1             1
## 3362                                           Polk Ave        -1             1
## 3363                                           Polk Ave        -1             1
## 3364                                           Polk Ave         1             1
## 3365                                           Polk Ave         1             1
## 3366                                           Polk Ave         1             1
## 3367                                           Polk Ave         1             1
## 3368                                           Polk Ave        -1             1
## 3369                                           Polk Ave        -1             1
## 3370                                           Polk Ave         1             1
## 3371                                           Polk Ave         1             1
## 3372                                           Polk Ave         1             1
## 3373                                           Polk Ave        -1             1
## 3374                                           Polk Ave         1             1
## 3375                                           Polk Ave        -1             1
## 3376                                           Polk Ave         1             1
## 3377                                           Polk Ave         1             1
## 3378                                           Polk Ave         1             1
## 3379                                           Polk Ave        -1             1
## 3380                                           Polk Ave        -1             1
## 3381                                           Polk Ave         1             1
## 3382                                           Polk Ave        -1             1
## 3383                                           Polk Ave         1             1
## 3384                                           Polk Ave         1             1
## 3385                                           Polk Ave         1             1
## 3386                                           Polk Ave        -1             1
## 3387                                           Polk Ave         1             1
## 3388                                           Polk Ave        -1             1
## 3389                                           Polk Ave         1             1
## 3390                                           Polk Ave         1             1
## 3391                                           Polk Ave         1             1
## 3392                                           Polk Ave         1             1
## 3393                                           Polk Ave        -1             1
## 3394                     (8th x Mound)      Mount & 8th        -1             1
## 3395                                        Mount & 8th         1             1
## 3396                                        Mount & 8th         1             1
## 3397                                        Mount & 8th         1             1
## 3398                                        Mount & 8th         1             1
## 3399                                        Mount & 8th        -1             1
## 3400                                        Mount & 8th         1             1
## 3401                                        Mount & 8th         1             1
## 3402                        torn wings      Mount & 8th         1             1
## 3403                                        Mount & 8th         1             1
## 3404                                        Mount & 8th        -1             1
## 3405                        torn wings      Mount & 8th        -1             1
## 3406                                        Mount & 8th        -1             1
## 3407                                        Mount & 8th         1             1
## 3408                                        Mount & 8th         1             1
## 3409                                        Mount & 8th         1             1
## 3410                                        Mount & 8th         1             1
## 3411                                        Mount & 8th        -1             1
## 3412                                        Mount & 8th         1             1
## 3413                                        Mount & 8th         1             1
## 3414                                        Mount & 8th        -1             1
## 3415                                        Mount & 8th        -1             1
## 3416                                        Mount & 8th         1             1
## 3417                                        Mount & 8th         1             1
## 3418                                        Mount & 8th         1             1
## 3419                                        Mount & 8th         1             1
## 3420                                        Mount & 8th         1             1
## 3421                                        Mount & 8th         1             1
## 3422                                        Mount & 8th         1             1
## 3423                                        Mount & 8th         1             1
## 3424                                        Mount & 8th         1             1
## 3425                                        Mount & 8th         1             1
## 3426                                        Mount & 8th         1             1
## 3427                  torn right wings      Mount & 8th         1             1
## 3428                                        Mount & 8th         1             1
## 3429                                        Mount & 8th         1             1
## 3430                                        Mount & 8th        -1             1
## 3431                                        Mount & 8th         1             1
## 3432                                        Mount & 8th         1             1
## 3433                                        Mount & 8th        -1             1
## 3434                                        Mount & 8th         1             1
## 3435                                        Mount & 8th         1             1
## 3436                                        Mount & 8th         1             1
## 3437                                        Mount & 8th         1             1
## 3438                                        Mount & 8th         1             1
## 3439                                        Mount & 8th        -1             1
## 3440                                        Mount & 8th         1             1
## 3441                                        Mount & 8th         1             1
## 3442                                        Mount & 8th        -1             1
## 3443                                        Mount & 8th         1             1
## 3444                                        Mount & 8th         1             1
## 3445                                        Mount & 8th         1             1
## 3446                                        Mount & 8th        -1             1
## 3447                        torn wings      Mount & 8th         1             1
## 3448                                        SW 296th St         1             1
## 3449                                        SW 296th St         1             1
## 3450              torn wing; left side      SW 296th St         1             1
## 3451                                        SW 296th St        -1             1
## 3452                                        SW 296th St         1             1
## 3453                                        SW 296th St         1             1
## 3454                                        SW 296th St        -1             1
## 3455                                        SW 296th St         1             1
## 3456                                        SW 296th St        -1             1
## 3457                                        SW 296th St         1             1
## 3458                        torn wings      SW 296th St         1             1
## 3459                                        SW 296th St         1             1
## 3460                                        SW 296th St        -1             1
## 3461                                        SW 296th St         1             1
## 3462                                        SW 296th St         1             1
## 3463                                        SW 296th St         1             1
## 3464                                        SW 296th St        -1             1
## 3465                                        SW 296th St        -1             1
## 3466                                        SW 296th St         1             1
## 3467                                        SW 296th St        -1             1
## 3468                                        SW 296th St         1             1
## 3469                                        SW 296th St         1             1
## 3470                                        SW 296th St         1             1
## 3471                                        SW 296th St         1             1
## 3472                         torn tips      SW 296th St         1             1
## 3473                                        SW 296th St         1             1
## 3474                                        SW 296th St         1             1
## 3475                                        SW 296th St         1             1
## 3476                                        SW 296th St        -1             1
## 3477                                        SW 296th St         1             1
## 3478                                        SW 296th St        -1             1
## 3479                                        SW 296th St         1             1
## 3480                                        SW 296th St         1             1
## 3481                        torn wings      SW 296th St         1             1
## 3482                                        SW 296th St        -1             1
## 3483                                        SW 296th St         1             1
## 3484                                        SW 296th St         1             1
## 3485                                        SW 296th St        -1             1
##                 date datetime      dates month_of_year wing2thorax
## 1         April/2013 Apr 2013 2013-04-01             4    2.790210
## 2         April/2013 Apr 2013 2013-04-01             4    2.676375
## 3         April/2013 Apr 2013 2013-04-01             4    2.812903
## 4         April/2013 Apr 2013 2013-04-01             4    2.617530
## 5         April/2013 Apr 2013 2013-04-01             4    2.821549
## 6         April/2013 Apr 2013 2013-04-01             4    2.652027
## 7         April/2013 Apr 2013 2013-04-01             4    2.794425
## 8         April/2013 Apr 2013 2013-04-01             4    2.830769
## 9         April/2013 Apr 2013 2013-04-01             4    2.721254
## 10        April/2013 Apr 2013 2013-04-01             4    2.626984
## 11        April/2013 Apr 2013 2013-04-01             4    2.707463
## 12        April/2013 Apr 2013 2013-04-01             4    2.765125
## 13        April/2013 Apr 2013 2013-04-01             4    2.686520
## 14        April/2013 Apr 2013 2013-04-01             4    2.555556
## 15        April/2013 Apr 2013 2013-04-01             4    1.716172
## 16        April/2013 Apr 2013 2013-04-01             4    2.652459
## 17        April/2013 Apr 2013 2013-04-01             4    2.652459
## 18        April/2013 Apr 2013 2013-04-01             4    2.743316
## 19        April/2013 Apr 2013 2013-04-01             4    2.770492
## 20        April/2013 Apr 2013 2013-04-01             4    2.762658
## 21        April/2013 Apr 2013 2013-04-01             4    2.887608
## 22        April/2013 Apr 2013 2013-04-01             4    2.485246
## 23        April/2013 Apr 2013 2013-04-01             4    2.848138
## 24        April/2013 Apr 2013 2013-04-01             4    2.710247
## 25        April/2013 Apr 2013 2013-04-01             4    2.781250
## 26        April/2013 Apr 2013 2013-04-01             4    2.817857
## 27        April/2013 Apr 2013 2013-04-01             4    2.717877
## 28        April/2013 Apr 2013 2013-04-01             4    2.783626
## 29        April/2013 Apr 2013 2013-04-01             4    1.706122
## 30        April/2013 Apr 2013 2013-04-01             4    1.759036
## 31        April/2013 Apr 2013 2013-04-01             4    2.697674
## 32        April/2013 Apr 2013 2013-04-01             4    2.662295
## 33        April/2013 Apr 2013 2013-04-01             4    2.692547
## 34        April/2013 Apr 2013 2013-04-01             4    2.666667
## 35        April/2013 Apr 2013 2013-04-01             4    2.025830
## 36        April/2013 Apr 2013 2013-04-01             4    2.720137
## 37        April/2013 Apr 2013 2013-04-01             4    2.817073
## 38        April/2013 Apr 2013 2013-04-01             4    2.705263
## 39        April/2013 Apr 2013 2013-04-01             4    2.542254
## 40        April/2013 Apr 2013 2013-04-01             4    2.790625
## 41        April/2013 Apr 2013 2013-04-01             4    2.653199
## 42        April/2013 Apr 2013 2013-04-01             4    2.764085
## 43        April/2013 Apr 2013 2013-04-01             4    2.889968
## 44        April/2013 Apr 2013 2013-04-01             4    2.067797
## 45        April/2013 Apr 2013 2013-04-01             4    2.705674
## 46        April/2013 Apr 2013 2013-04-01             4    2.641509
## 47        April/2013 Apr 2013 2013-04-01             4    2.933798
## 48        April/2013 Apr 2013 2013-04-01             4    1.771429
## 49        April/2013 Apr 2013 2013-04-01             4    2.616022
## 50        April/2013 Apr 2013 2013-04-01             4    2.637037
## 51        April/2013 Apr 2013 2013-04-01             4    2.537415
## 52        April/2013 Apr 2013 2013-04-01             4    2.654952
## 53        April/2013 Apr 2013 2013-04-01             4    2.668770
## 54        April/2013 Apr 2013 2013-04-01             4    2.558583
## 55        April/2013 Apr 2013 2013-04-01             4    2.946996
## 56        April/2013 Apr 2013 2013-04-01             4    2.631737
## 57        April/2013 Apr 2013 2013-04-01             4    2.791209
## 58        April/2013 Apr 2013 2013-04-01             4    2.787986
## 59        April/2013 Apr 2013 2013-04-01             4    2.747423
## 60        April/2013 Apr 2013 2013-04-01             4    2.810345
## 61        April/2013 Apr 2013 2013-04-01             4    2.747801
## 62        April/2013 Apr 2013 2013-04-01             4    2.850318
## 63        April/2013 Apr 2013 2013-04-01             4    2.569801
## 64        April/2013 Apr 2013 2013-04-01             4    2.463668
## 65        April/2013 Apr 2013 2013-04-01             4    2.653846
## 66        April/2013 Apr 2013 2013-04-01             4    2.527851
## 67        April/2013 Apr 2013 2013-04-01             4    2.811881
## 68        April/2013 Apr 2013 2013-04-01             4    2.865269
## 69        April/2013 Apr 2013 2013-04-01             4    2.972973
## 70        April/2013 Apr 2013 2013-04-01             4    2.477816
## 71        April/2013 Apr 2013 2013-04-01             4    2.828652
## 72        April/2013 Apr 2013 2013-04-01             4    2.535316
## 73        April/2013 Apr 2013 2013-04-01             4    2.544959
## 74        April/2013 Apr 2013 2013-04-01             4    2.705882
## 75        April/2013 Apr 2013 2013-04-01             4    2.639175
## 76        April/2013 Apr 2013 2013-04-01             4    1.704918
## 77        April/2013 Apr 2013 2013-04-01             4    2.942529
## 78        April/2013 Apr 2013 2013-04-01             4    2.829060
## 79        April/2013 Apr 2013 2013-04-01             4    2.712230
## 80        April/2013 Apr 2013 2013-04-01             4    1.707547
## 81        April/2013 Apr 2013 2013-04-01             4    2.520000
## 82        April/2013 Apr 2013 2013-04-01             4    1.827004
## 83        April/2013 Apr 2013 2013-04-01             4    1.639405
## 84        April/2013 Apr 2013 2013-04-01             4    2.504587
## 85        April/2013 Apr 2013 2013-04-01             4    1.918644
## 86        April/2013 Apr 2013 2013-04-01             4    1.571984
## 87        April/2013 Apr 2013 2013-04-01             4    1.728070
## 88        April/2013 Apr 2013 2013-04-01             4    1.798419
## 89        April/2013 Apr 2013 2013-04-01             4    1.762295
## 90        April/2013 Apr 2013 2013-04-01             4    1.771863
## 91        April/2013 Apr 2013 2013-04-01             4    1.670543
## 92        April/2013 Apr 2013 2013-04-01             4    1.914397
## 93        April/2013 Apr 2013 2013-04-01             4    2.685714
## 94        April/2013 Apr 2013 2013-04-01             4    2.846154
## 95        April/2013 Apr 2013 2013-04-01             4    1.638462
## 96        April/2013 Apr 2013 2013-04-01             4    2.527027
## 97        April/2013 Apr 2013 2013-04-01             4    2.604457
## 98        April/2013 Apr 2013 2013-04-01             4    2.419825
## 99        April/2013 Apr 2013 2013-04-01             4    2.513021
## 100       April/2013 Apr 2013 2013-04-01             4    1.666667
## 101       April/2013 Apr 2013 2013-04-01             4    2.594675
## 102       April/2013 Apr 2013 2013-04-01             4    2.535088
## 103       April/2013 Apr 2013 2013-04-01             4    2.120301
## 104       April/2013 Apr 2013 2013-04-01             4    2.693548
## 105       April/2013 Apr 2013 2013-04-01             4    2.727829
## 106       April/2013 Apr 2013 2013-04-01             4    2.713396
## 107       April/2013 Apr 2013 2013-04-01             4    1.417857
## 108       April/2013 Apr 2013 2013-04-01             4    2.851266
## 109       April/2013 Apr 2013 2013-04-01             4    2.667702
## 110       April/2013 Apr 2013 2013-04-01             4    2.803448
## 111       April/2013 Apr 2013 2013-04-01             4    2.746082
## 112       April/2013 Apr 2013 2013-04-01             4    1.875969
## 113       April/2013 Apr 2013 2013-04-01             4    2.449275
## 114       April/2013 Apr 2013 2013-04-01             4    2.497396
## 115       April/2013 Apr 2013 2013-04-01             4    2.506925
## 116       April/2013 Apr 2013 2013-04-01             4    3.081633
## 117       April/2013 Apr 2013 2013-04-01             4    2.823362
## 118       April/2013 Apr 2013 2013-04-01             4    2.629747
## 119       April/2013 Apr 2013 2013-04-01             4    2.787791
## 120       April/2013 Apr 2013 2013-04-01             4    2.745283
## 121       April/2013 Apr 2013 2013-04-01             4    2.664879
## 122       April/2013 Apr 2013 2013-04-01             4    2.631429
## 123       April/2013 Apr 2013 2013-04-01             4    2.652174
## 124       April/2013 Apr 2013 2013-04-01             4    2.675362
## 125       April/2013 Apr 2013 2013-04-01             4    2.620000
## 126       April/2013 Apr 2013 2013-04-01             4    2.630573
## 127       April/2013 Apr 2013 2013-04-01             4    2.794702
## 128       April/2013 Apr 2013 2013-04-01             4    2.711538
## 129       April/2013 Apr 2013 2013-04-01             4    2.686520
## 130       April/2013 Apr 2013 2013-04-01             4    2.813609
## 131       April/2013 Apr 2013 2013-04-01             4    2.691030
## 132       April/2013 Apr 2013 2013-04-01             4    2.763333
## 133       April/2013 Apr 2013 2013-04-01             4    2.722826
## 134       April/2013 Apr 2013 2013-04-01             4    2.728000
## 135       April/2013 Apr 2013 2013-04-01             4    3.003226
## 136       April/2013 Apr 2013 2013-04-01             4    2.900344
## 137       April/2013 Apr 2013 2013-04-01             4    2.765363
## 138       April/2013 Apr 2013 2013-04-01             4    2.763077
## 139       April/2013 Apr 2013 2013-04-01             4    2.956667
## 140       April/2013 Apr 2013 2013-04-01             4    2.813380
## 141       April/2013 Apr 2013 2013-04-01             4    2.678344
## 142       April/2013 Apr 2013 2013-04-01             4    2.529114
## 143       April/2013 Apr 2013 2013-04-01             4    2.707547
## 144       April/2013 Apr 2013 2013-04-01             4    1.826087
## 145       April/2013 Apr 2013 2013-04-01             4    2.551320
## 146       April/2013 Apr 2013 2013-04-01             4    2.657609
## 147       April/2013 Apr 2013 2013-04-01             4    2.974684
## 148       April/2013 Apr 2013 2013-04-01             4    2.773649
## 149       April/2013 Apr 2013 2013-04-01             4    2.689231
## 150       April/2013 Apr 2013 2013-04-01             4    1.823276
## 151       April/2013 Apr 2013 2013-04-01             4    2.799228
## 152       April/2013 Apr 2013 2013-04-01             4    2.698413
## 153       April/2013 Apr 2013 2013-04-01             4    2.665605
## 154       April/2013 Apr 2013 2013-04-01             4    2.532353
## 155       April/2013 Apr 2013 2013-04-01             4    2.708455
## 156       April/2013 Apr 2013 2013-04-01             4    2.812883
## 157       April/2013 Apr 2013 2013-04-01             4    2.508861
## 158       April/2013 Apr 2013 2013-04-01             4    2.758389
## 159       April/2013 Apr 2013 2013-04-01             4    1.986486
## 160       April/2013 Apr 2013 2013-04-01             4    2.653251
## 161       April/2013 Apr 2013 2013-04-01             4    1.573944
## 162       April/2013 Apr 2013 2013-04-01             4    2.607046
## 163       April/2013 Apr 2013 2013-04-01             4    2.689223
## 164       April/2013 Apr 2013 2013-04-01             4    2.560914
## 165       April/2013 Apr 2013 2013-04-01             4    2.690476
## 166       April/2013 Apr 2013 2013-04-01             4    2.722741
## 167       April/2013 Apr 2013 2013-04-01             4    2.649068
## 168       April/2013 Apr 2013 2013-04-01             4    2.555838
## 169       April/2013 Apr 2013 2013-04-01             4    2.634675
## 170       April/2013 Apr 2013 2013-04-01             4    2.801242
## 171       April/2013 Apr 2013 2013-04-01             4    2.684066
## 172       April/2013 Apr 2013 2013-04-01             4    2.737542
## 173       April/2013 Apr 2013 2013-04-01             4    2.619938
## 174       April/2013 Apr 2013 2013-04-01             4    2.715753
## 175       April/2013 Apr 2013 2013-04-01             4    1.679443
## 176       April/2013 Apr 2013 2013-04-01             4    2.685714
## 177       April/2013 Apr 2013 2013-04-01             4    2.653409
## 178       April/2013 Apr 2013 2013-04-01             4    2.485294
## 179       April/2013 Apr 2013 2013-04-01             4    2.595588
## 180       April/2013 Apr 2013 2013-04-01             4    2.790698
## 181       April/2013 Apr 2013 2013-04-01             4    2.758730
## 182       April/2013 Apr 2013 2013-04-01             4    1.732510
## 183       April/2013 Apr 2013 2013-04-01             4    2.637462
## 184       April/2013 Apr 2013 2013-04-01             4    2.037657
## 185       April/2013 Apr 2013 2013-04-01             4    2.575198
## 186       April/2013 Apr 2013 2013-04-01             4    2.740061
## 187       April/2013 Apr 2013 2013-04-01             4    2.668622
## 188       April/2013 Apr 2013 2013-04-01             4    2.581871
## 189       April/2013 Apr 2013 2013-04-01             4    1.610738
## 190       April/2013 Apr 2013 2013-04-01             4    1.625000
## 191       April/2013 Apr 2013 2013-04-01             4    2.873199
## 192       April/2013 Apr 2013 2013-04-01             4    2.697987
## 193       April/2013 Apr 2013 2013-04-01             4    1.801262
## 194       April/2013 Apr 2013 2013-04-01             4    1.974729
## 195       April/2013 Apr 2013 2013-04-01             4    2.530899
## 196       April/2013 Apr 2013 2013-04-01             4    2.798780
## 197       April/2013 Apr 2013 2013-04-01             4    2.729730
## 198       April/2013 Apr 2013 2013-04-01             4    2.597633
## 199       April/2013 Apr 2013 2013-04-01             4    2.653439
## 200       April/2013 Apr 2013 2013-04-01             4    2.580645
## 201       April/2013 Apr 2013 2013-04-01             4    2.559486
## 202       April/2013 Apr 2013 2013-04-01             4    2.422481
## 203       April/2013 Apr 2013 2013-04-01             4    2.635783
## 204       April/2013 Apr 2013 2013-04-01             4    2.964744
## 205       April/2013 Apr 2013 2013-04-01             4    2.826568
## 206       April/2013 Apr 2013 2013-04-01             4    2.827309
## 207       April/2013 Apr 2013 2013-04-01             4    2.722388
## 208       April/2013 Apr 2013 2013-04-01             4    2.989130
## 209       April/2013 Apr 2013 2013-04-01             4    2.482072
## 210       April/2013 Apr 2013 2013-04-01             4    2.532680
## 211       April/2013 Apr 2013 2013-04-01             4    2.796562
## 212       April/2013 Apr 2013 2013-04-01             4    2.596429
## 213       April/2013 Apr 2013 2013-04-01             4    2.521875
## 214       April/2013 Apr 2013 2013-04-01             4    1.885932
## 215       April/2013 Apr 2013 2013-04-01             4    2.396104
## 216       April/2013 Apr 2013 2013-04-01             4    1.970213
## 217       April/2013 Apr 2013 2013-04-01             4    2.670103
## 218       April/2013 Apr 2013 2013-04-01             4    1.905797
## 219       April/2013 Apr 2013 2013-04-01             4    2.744275
## 220       April/2013 Apr 2013 2013-04-01             4    2.655914
## 221       April/2013 Apr 2013 2013-04-01             4    2.602410
## 222       April/2013 Apr 2013 2013-04-01             4    2.738255
## 223       April/2013 Apr 2013 2013-04-01             4    2.858657
## 224       April/2013 Apr 2013 2013-04-01             4    2.649007
## 225       April/2013 Apr 2013 2013-04-01             4    1.935223
## 226       April/2013 Apr 2013 2013-04-01             4    2.738170
## 227       April/2013 Apr 2013 2013-04-01             4    2.608280
## 228       April/2013 Apr 2013 2013-04-01             4    2.647651
## 229       April/2013 Apr 2013 2013-04-01             4    1.664234
## 230       April/2013 Apr 2013 2013-04-01             4    2.780769
## 231       April/2013 Apr 2013 2013-04-01             4    2.727273
## 232       April/2013 Apr 2013 2013-04-01             4    2.725552
## 233       April/2013 Apr 2013 2013-04-01             4    2.807339
## 234       April/2013 Apr 2013 2013-04-01             4    2.855596
## 235       April/2013 Apr 2013 2013-04-01             4    2.809028
## 236       April/2013 Apr 2013 2013-04-01             4    2.622159
## 237       April/2013 Apr 2013 2013-04-01             4    2.730303
## 238       April/2013 Apr 2013 2013-04-01             4    2.948718
## 239       April/2013 Apr 2013 2013-04-01             4    2.762069
## 240       April/2013 Apr 2013 2013-04-01             4    2.812500
## 241       April/2013 Apr 2013 2013-04-01             4    2.623134
## 242       April/2013 Apr 2013 2013-04-01             4    1.725191
## 243       April/2013 Apr 2013 2013-04-01             4    2.569801
## 244       April/2013 Apr 2013 2013-04-01             4    2.675159
## 245       April/2013 Apr 2013 2013-04-01             4    2.951368
## 246       April/2013 Apr 2013 2013-04-01             4    2.984848
## 247       April/2013 Apr 2013 2013-04-01             4    2.969283
## 248       April/2013 Apr 2013 2013-04-01             4    2.708609
## 249       April/2013 Apr 2013 2013-04-01             4    2.734375
## 250       April/2013 Apr 2013 2013-04-01             4    2.789474
## 251       April/2013 Apr 2013 2013-04-01             4    2.703947
## 252       April/2013 Apr 2013 2013-04-01             4    2.661710
## 253       April/2013 Apr 2013 2013-04-01             4    2.707237
## 254       April/2013 Apr 2013 2013-04-01             4    2.643411
## 255       April/2013 Apr 2013 2013-04-01             4    2.935484
## 256       April/2013 Apr 2013 2013-04-01             4    2.840304
## 257       April/2013 Apr 2013 2013-04-01             4    2.849858
## 258       April/2013 Apr 2013 2013-04-01             4    2.041985
## 259       April/2013 Apr 2013 2013-04-01             4    2.670270
## 260       April/2013 Apr 2013 2013-04-01             4    2.976744
## 261       April/2013 Apr 2013 2013-04-01             4    2.085938
## 262       April/2013 Apr 2013 2013-04-01             4    1.930502
## 263       April/2013 Apr 2013 2013-04-01             4    2.455263
## 264       April/2013 Apr 2013 2013-04-01             4    1.753788
## 265       April/2013 Apr 2013 2013-04-01             4    2.424242
## 266       April/2013 Apr 2013 2013-04-01             4    1.918182
## 267       April/2013 Apr 2013 2013-04-01             4    2.739777
## 268       April/2013 Apr 2013 2013-04-01             4    2.688312
## 269       April/2013 Apr 2013 2013-04-01             4    2.894737
## 270       April/2013 Apr 2013 2013-04-01             4    3.046099
## 271       April/2013 Apr 2013 2013-04-01             4    2.666667
## 272       April/2013 Apr 2013 2013-04-01             4    2.932660
## 273       April/2013 Apr 2013 2013-04-01             4    2.615854
## 274       April/2013 Apr 2013 2013-04-01             4    1.918149
## 275       April/2013 Apr 2013 2013-04-01             4    2.904959
## 276       April/2013 Apr 2013 2013-04-01             4    2.707831
## 277       April/2013 Apr 2013 2013-04-01             4    2.668966
## 278       April/2013 Apr 2013 2013-04-01             4    2.821549
## 279       April/2013 Apr 2013 2013-04-01             4    2.678571
## 280       April/2013 Apr 2013 2013-04-01             4    2.654206
## 281       April/2013 Apr 2013 2013-04-01             4    1.783439
## 282       April/2013 Apr 2013 2013-04-01             4    2.623824
## 283       April/2013 Apr 2013 2013-04-01             4    2.597668
## 284       April/2013 Apr 2013 2013-04-01             4    1.884477
## 285       April/2013 Apr 2013 2013-04-01             4    2.514706
## 286       April/2013 Apr 2013 2013-04-01             4    2.715655
## 287       April/2013 Apr 2013 2013-04-01             4    1.722045
## 288       April/2013 Apr 2013 2013-04-01             4    2.854839
## 289       April/2013 Apr 2013 2013-04-01             4    2.806452
## 290       April/2013 Apr 2013 2013-04-01             4    2.819048
## 291       April/2013 Apr 2013 2013-04-01             4    2.856688
## 292       April/2013 Apr 2013 2013-04-01             4    2.882550
## 293       April/2013 Apr 2013 2013-04-01             4    1.761538
## 294       April/2013 Apr 2013 2013-04-01             4    2.684211
## 295       April/2013 Apr 2013 2013-04-01             4    2.100977
## 296       April/2013 Apr 2013 2013-04-01             4    1.572438
## 297       April/2013 Apr 2013 2013-04-01             4    1.623077
## 298       April/2013 Apr 2013 2013-04-01             4    2.472119
## 299       April/2013 Apr 2013 2013-04-01             4    1.725753
## 300       April/2013 Apr 2013 2013-04-01             4    2.743827
## 301       April/2013 Apr 2013 2013-04-01             4    2.655556
## 302       April/2013 Apr 2013 2013-04-01             4    2.469965
## 303       April/2013 Apr 2013 2013-04-01             4    2.585034
## 304       April/2013 Apr 2013 2013-04-01             4    1.952381
## 305       April/2013 Apr 2013 2013-04-01             4    2.688172
## 306       April/2013 Apr 2013 2013-04-01             4    2.648208
## 307       April/2013 Apr 2013 2013-04-01             4    1.830450
## 308       April/2013 Apr 2013 2013-04-01             4    1.616279
## 309       April/2013 Apr 2013 2013-04-01             4    2.622356
## 310       April/2013 Apr 2013 2013-04-01             4    1.969605
## 311       April/2013 Apr 2013 2013-04-01             4    2.091255
## 312       April/2013 Apr 2013 2013-04-01             4    1.965625
## 313       April/2013 Apr 2013 2013-04-01             4    2.522807
## 314       April/2013 Apr 2013 2013-04-01             4    2.665635
## 315       April/2013 Apr 2013 2013-04-01             4    2.495327
## 316       April/2013 Apr 2013 2013-04-01             4    2.528902
## 317       April/2013 Apr 2013 2013-04-01             4    1.969789
## 318       April/2013 Apr 2013 2013-04-01             4    1.954984
## 319       April/2013 Apr 2013 2013-04-01             4    2.781145
## 320       April/2013 Apr 2013 2013-04-01             4    1.632836
## 321       April/2013 Apr 2013 2013-04-01             4    2.650685
## 322  December/2013.6 Dec 2013 2013-12-01            12    2.510703
## 323  December/2013.6 Dec 2013 2013-12-01            12    2.753247
## 324  December/2013.6 Dec 2013 2013-12-01            12    2.493639
## 325  December/2013.6 Dec 2013 2013-12-01            12    2.603774
## 326  December/2013.6 Dec 2013 2013-12-01            12    2.720109
## 327  December/2013.6 Dec 2013 2013-12-01            12    2.598746
## 328  December/2013.6 Dec 2013 2013-12-01            12    2.538667
## 329  December/2013.6 Dec 2013 2013-12-01            12    2.671196
## 330  December/2013.6 Dec 2013 2013-12-01            12    2.706806
## 331  December/2013.6 Dec 2013 2013-12-01            12    2.700906
## 332  December/2013.6 Dec 2013 2013-12-01            12    2.787356
## 333  December/2013.6 Dec 2013 2013-12-01            12    1.811558
## 334  December/2013.6 Dec 2013 2013-12-01            12    2.609687
## 335  December/2013.6 Dec 2013 2013-12-01            12    2.732759
## 336  December/2013.6 Dec 2013 2013-12-01            12    2.704735
## 337  December/2013.6 Dec 2013 2013-12-01            12    2.729231
## 338  December/2013.6 Dec 2013 2013-12-01            12    2.571429
## 339  December/2013.6 Dec 2013 2013-12-01            12    2.661891
## 340  December/2013.6 Dec 2013 2013-12-01            12    2.505102
## 341  December/2013.6 Dec 2013 2013-12-01            12    2.670213
## 342  December/2013.6 Dec 2013 2013-12-01            12    2.582210
## 343  December/2013.6 Dec 2013 2013-12-01            12    2.735294
## 344  December/2013.6 Dec 2013 2013-12-01            12    2.396594
## 345  December/2013.6 Dec 2013 2013-12-01            12    2.836565
## 346  December/2013.6 Dec 2013 2013-12-01            12    2.897611
## 347  December/2013.6 Dec 2013 2013-12-01            12    2.495726
## 348  December/2013.6 Dec 2013 2013-12-01            12    2.561453
## 349  December/2013.6 Dec 2013 2013-12-01            12    2.753463
## 350  December/2013.6 Dec 2013 2013-12-01            12    2.702918
## 351  December/2013.6 Dec 2013 2013-12-01            12    2.883853
## 352  December/2013.6 Dec 2013 2013-12-01            12    2.684971
## 353  December/2013.6 Dec 2013 2013-12-01            12    2.751429
## 354  December/2013.6 Dec 2013 2013-12-01            12    2.693767
## 355  December/2013.6 Dec 2013 2013-12-01            12    2.548052
## 356  December/2013.6 Dec 2013 2013-12-01            12    2.747604
## 357  December/2013.6 Dec 2013 2013-12-01            12    2.740634
## 358  December/2013.6 Dec 2013 2013-12-01            12    2.822742
## 359  December/2013.6 Dec 2013 2013-12-01            12    2.586592
## 360  December/2013.6 Dec 2013 2013-12-01            12    2.916667
## 361  December/2013.6 Dec 2013 2013-12-01            12    2.602210
## 362  December/2013.6 Dec 2013 2013-12-01            12    2.646113
## 363  December/2013.6 Dec 2013 2013-12-01            12    2.829545
## 364  December/2013.6 Dec 2013 2013-12-01            12    2.676630
## 365  December/2013.6 Dec 2013 2013-12-01            12    2.655440
## 366  December/2013.6 Dec 2013 2013-12-01            12    2.722930
## 367  December/2013.6 Dec 2013 2013-12-01            12    2.640306
## 368  December/2013.6 Dec 2013 2013-12-01            12    2.865320
## 369  December/2013.6 Dec 2013 2013-12-01            12    2.679558
## 370  December/2013.6 Dec 2013 2013-12-01            12    2.893617
## 371  December/2013.6 Dec 2013 2013-12-01            12    2.948980
## 372  December/2013.6 Dec 2013 2013-12-01            12    2.696049
## 373  December/2013.6 Dec 2013 2013-12-01            12    2.842254
## 374  December/2013.6 Dec 2013 2013-12-01            12    2.660057
## 375  December/2013.6 Dec 2013 2013-12-01            12    2.675900
## 376  December/2013.6 Dec 2013 2013-12-01            12    2.771875
## 377  December/2013.6 Dec 2013 2013-12-01            12    2.739837
## 378  December/2013.6 Dec 2013 2013-12-01            12    2.900826
## 379  December/2013.6 Dec 2013 2013-12-01            12    2.706704
## 380  December/2013.6 Dec 2013 2013-12-01            12    2.662420
## 381  December/2013.6 Dec 2013 2013-12-01            12    2.765957
## 382  December/2013.6 Dec 2013 2013-12-01            12    2.684211
## 383  December/2013.6 Dec 2013 2013-12-01            12    2.831956
## 384  December/2013.6 Dec 2013 2013-12-01            12    2.638243
## 385  December/2013.6 Dec 2013 2013-12-01            12    2.857558
## 386  December/2013.6 Dec 2013 2013-12-01            12    2.653951
## 387  December/2013.6 Dec 2013 2013-12-01            12    2.689373
## 388  December/2013.6 Dec 2013 2013-12-01            12    2.813869
## 389  December/2013.6 Dec 2013 2013-12-01            12    2.660256
## 390  December/2013.6 Dec 2013 2013-12-01            12    2.803763
## 391  December/2013.6 Dec 2013 2013-12-01            12    2.721311
## 392  December/2013.6 Dec 2013 2013-12-01            12    2.628895
## 393  December/2013.6 Dec 2013 2013-12-01            12    2.664042
## 394  December/2013.6 Dec 2013 2013-12-01            12    2.690476
## 395  December/2013.6 Dec 2013 2013-12-01            12    2.923077
## 396  December/2013.6 Dec 2013 2013-12-01            12    2.552000
## 397  December/2013.6 Dec 2013 2013-12-01            12    2.727869
## 398  December/2013.6 Dec 2013 2013-12-01            12    2.729814
## 399  December/2013.6 Dec 2013 2013-12-01            12    2.724234
## 400  December/2013.6 Dec 2013 2013-12-01            12    2.600000
## 401  December/2013.6 Dec 2013 2013-12-01            12    2.777027
## 402  December/2013.6 Dec 2013 2013-12-01            12    2.660256
## 403  December/2013.6 Dec 2013 2013-12-01            12    2.568182
## 404  December/2013.6 Dec 2013 2013-12-01            12    2.739927
## 405  December/2013.6 Dec 2013 2013-12-01            12    2.622581
## 406  December/2013.6 Dec 2013 2013-12-01            12    2.794702
## 407  December/2013.6 Dec 2013 2013-12-01            12    2.704348
## 408  December/2013.6 Dec 2013 2013-12-01            12    2.918919
## 409  December/2013.6 Dec 2013 2013-12-01            12    2.654971
## 410  December/2013.6 Dec 2013 2013-12-01            12    2.701183
## 411  December/2013.6 Dec 2013 2013-12-01            12    1.822823
## 412  December/2013.6 Dec 2013 2013-12-01            12    1.829412
## 413  December/2013.6 Dec 2013 2013-12-01            12    2.416000
## 414  December/2013.6 Dec 2013 2013-12-01            12    2.454545
## 415  December/2013.6 Dec 2013 2013-12-01            12    1.985915
## 416  December/2013.6 Dec 2013 2013-12-01            12    1.782609
## 417  December/2013.6 Dec 2013 2013-12-01            12    2.858025
## 418  December/2013.6 Dec 2013 2013-12-01            12    2.542700
## 419  December/2013.6 Dec 2013 2013-12-01            12    1.645833
## 420  December/2013.6 Dec 2013 2013-12-01            12    2.489583
## 421  December/2013.6 Dec 2013 2013-12-01            12    2.140110
## 422  December/2013.6 Dec 2013 2013-12-01            12    2.424149
## 423  December/2013.6 Dec 2013 2013-12-01            12    1.964179
## 424  December/2013.6 Dec 2013 2013-12-01            12    1.629518
## 425  December/2013.6 Dec 2013 2013-12-01            12    2.785047
## 426  December/2013.6 Dec 2013 2013-12-01            12    2.610028
## 427  December/2013.6 Dec 2013 2013-12-01            12    1.736994
## 428  December/2013.6 Dec 2013 2013-12-01            12    1.700704
## 429  December/2013.6 Dec 2013 2013-12-01            12    1.787356
## 430  December/2013.6 Dec 2013 2013-12-01            12    2.526154
## 431  December/2013.6 Dec 2013 2013-12-01            12    2.691803
## 432  December/2013.6 Dec 2013 2013-12-01            12    2.765886
## 433  December/2013.6 Dec 2013 2013-12-01            12    2.457071
## 434  December/2013.6 Dec 2013 2013-12-01            12    2.409556
## 435  December/2013.6 Dec 2013 2013-12-01            12    1.696429
## 436  December/2013.6 Dec 2013 2013-12-01            12    2.634483
## 437  December/2013.6 Dec 2013 2013-12-01            12    2.096096
## 438  December/2013.6 Dec 2013 2013-12-01            12    2.011494
## 439  December/2013.6 Dec 2013 2013-12-01            12    2.825397
## 440  December/2013.6 Dec 2013 2013-12-01            12    2.438692
## 441  December/2013.6 Dec 2013 2013-12-01            12    2.522013
## 442  December/2013.6 Dec 2013 2013-12-01            12    2.576923
## 443  December/2013.6 Dec 2013 2013-12-01            12    2.450617
## 444  December/2013.6 Dec 2013 2013-12-01            12    1.962500
## 445  December/2013.6 Dec 2013 2013-12-01            12    2.650131
## 446  December/2013.6 Dec 2013 2013-12-01            12    2.710448
## 447  December/2013.6 Dec 2013 2013-12-01            12    2.649351
## 448  December/2013.6 Dec 2013 2013-12-01            12    1.911864
## 449  December/2013.6 Dec 2013 2013-12-01            12    2.022222
## 450  December/2013.6 Dec 2013 2013-12-01            12    2.777090
## 451  December/2013.6 Dec 2013 2013-12-01            12    1.783699
## 452  December/2013.6 Dec 2013 2013-12-01            12    2.027397
## 453  December/2013.6 Dec 2013 2013-12-01            12    2.808176
## 454  December/2013.6 Dec 2013 2013-12-01            12    2.557545
## 455  December/2013.6 Dec 2013 2013-12-01            12    2.177419
## 456  December/2013.6 Dec 2013 2013-12-01            12    2.489933
## 457  December/2013.6 Dec 2013 2013-12-01            12    2.529255
## 458  December/2013.6 Dec 2013 2013-12-01            12    1.708709
## 459  December/2013.6 Dec 2013 2013-12-01            12    2.654639
## 460  December/2013.6 Dec 2013 2013-12-01            12    2.790634
## 461  December/2013.6 Dec 2013 2013-12-01            12    2.622024
## 462  December/2013.6 Dec 2013 2013-12-01            12    2.716088
## 463  December/2013.6 Dec 2013 2013-12-01            12    2.671010
## 464  December/2013.6 Dec 2013 2013-12-01            12    2.608466
## 465  December/2013.6 Dec 2013 2013-12-01            12    1.575000
## 466  December/2013.6 Dec 2013 2013-12-01            12    2.710714
## 467  December/2013.6 Dec 2013 2013-12-01            12    2.583333
## 468  December/2013.6 Dec 2013 2013-12-01            12    2.558642
## 469  December/2013.6 Dec 2013 2013-12-01            12    2.760000
## 470  December/2013.6 Dec 2013 2013-12-01            12    1.746479
## 471  December/2013.6 Dec 2013 2013-12-01            12    2.574413
## 472  December/2013.6 Dec 2013 2013-12-01            12    1.714286
## 473  December/2013.6 Dec 2013 2013-12-01            12    2.646865
## 474  December/2013.6 Dec 2013 2013-12-01            12    2.641711
## 475  December/2013.6 Dec 2013 2013-12-01            12    2.414474
## 476  December/2013.6 Dec 2013 2013-12-01            12    2.624585
## 477  December/2013.6 Dec 2013 2013-12-01            12    2.622222
## 478  December/2013.6 Dec 2013 2013-12-01            12    1.688525
## 479  December/2013.6 Dec 2013 2013-12-01            12    1.893238
## 480  December/2013.6 Dec 2013 2013-12-01            12    2.507042
## 481  December/2013.6 Dec 2013 2013-12-01            12    2.457944
## 482  December/2013.6 Dec 2013 2013-12-01            12    2.570997
## 483  December/2013.6 Dec 2013 2013-12-01            12    2.701538
## 484  December/2013.6 Dec 2013 2013-12-01            12    2.712375
## 485  December/2013.6 Dec 2013 2013-12-01            12    2.592262
## 486  December/2013.6 Dec 2013 2013-12-01            12    2.626140
## 487  December/2013.6 Dec 2013 2013-12-01            12    2.651282
## 488  December/2013.6 Dec 2013 2013-12-01            12    2.749311
## 489  December/2013.6 Dec 2013 2013-12-01            12    2.799410
## 490  December/2013.6 Dec 2013 2013-12-01            12    2.856230
## 491  December/2013.6 Dec 2013 2013-12-01            12    2.536193
## 492  December/2013.6 Dec 2013 2013-12-01            12    2.622419
## 493  December/2013.6 Dec 2013 2013-12-01            12    1.634058
## 494  December/2013.6 Dec 2013 2013-12-01            12    2.597884
## 495  December/2013.6 Dec 2013 2013-12-01            12    2.793651
## 496  December/2013.6 Dec 2013 2013-12-01            12    2.880137
## 497  December/2013.6 Dec 2013 2013-12-01            12    2.778816
## 498  December/2013.6 Dec 2013 2013-12-01            12    2.718182
## 499  December/2013.6 Dec 2013 2013-12-01            12    2.565460
## 500  December/2013.6 Dec 2013 2013-12-01            12    2.733108
## 501  December/2013.6 Dec 2013 2013-12-01            12    2.826705
## 502  December/2013.6 Dec 2013 2013-12-01            12    2.625418
## 503  December/2013.6 Dec 2013 2013-12-01            12    2.652174
## 504  December/2013.6 Dec 2013 2013-12-01            12    2.607345
## 505  December/2013.6 Dec 2013 2013-12-01            12    2.562092
## 506  December/2013.6 Dec 2013 2013-12-01            12    2.741538
## 507  December/2013.6 Dec 2013 2013-12-01            12    2.705329
## 508  December/2013.6 Dec 2013 2013-12-01            12    2.906433
## 509  December/2013.6 Dec 2013 2013-12-01            12    2.959410
## 510  December/2013.6 Dec 2013 2013-12-01            12    2.558360
## 511  December/2013.6 Dec 2013 2013-12-01            12    2.585443
## 512  December/2013.6 Dec 2013 2013-12-01            12    2.664835
## 513  December/2013.6 Dec 2013 2013-12-01            12    2.821918
## 514  December/2013.6 Dec 2013 2013-12-01            12    2.758842
## 515  December/2013.6 Dec 2013 2013-12-01            12    2.895470
## 516  December/2013.6 Dec 2013 2013-12-01            12    2.917808
## 517  December/2013.6 Dec 2013 2013-12-01            12    2.733696
## 518  December/2013.6 Dec 2013 2013-12-01            12    2.746356
## 519  December/2013.6 Dec 2013 2013-12-01            12    2.657051
## 520  December/2013.6 Dec 2013 2013-12-01            12    2.579125
## 521  December/2013.6 Dec 2013 2013-12-01            12    2.870748
## 522  December/2013.6 Dec 2013 2013-12-01            12    2.771987
## 523  December/2013.6 Dec 2013 2013-12-01            12    2.579288
## 524  December/2013.6 Dec 2013 2013-12-01            12    2.697674
## 525  December/2013.6 Dec 2013 2013-12-01            12    2.735294
## 526  December/2013.6 Dec 2013 2013-12-01            12    2.915441
## 527  December/2013.6 Dec 2013 2013-12-01            12    2.663934
## 528  December/2013.6 Dec 2013 2013-12-01            12    2.774648
## 529  December/2013.6 Dec 2013 2013-12-01            12    2.919732
## 530  December/2013.6 Dec 2013 2013-12-01            12    2.902027
## 531  December/2013.6 Dec 2013 2013-12-01            12    2.752613
## 532  December/2013.6 Dec 2013 2013-12-01            12    2.730263
## 533  December/2013.6 Dec 2013 2013-12-01            12    2.735119
## 534  December/2013.6 Dec 2013 2013-12-01            12    2.835766
## 535  December/2013.6 Dec 2013 2013-12-01            12    2.655977
## 536  December/2013.6 Dec 2013 2013-12-01            12    2.722222
## 537  December/2013.6 Dec 2013 2013-12-01            12    2.563218
## 538  December/2013.6 Dec 2013 2013-12-01            12    2.688623
## 539  December/2013.6 Dec 2013 2013-12-01            12    2.537313
## 540  December/2013.6 Dec 2013 2013-12-01            12    2.607143
## 541  December/2013.6 Dec 2013 2013-12-01            12    2.542484
## 542  December/2013.6 Dec 2013 2013-12-01            12    2.408602
## 543  December/2013.6 Dec 2013 2013-12-01            12    2.768025
## 544  December/2013.6 Dec 2013 2013-12-01            12    2.843206
## 545  December/2013.6 Dec 2013 2013-12-01            12    2.672783
## 546  December/2013.6 Dec 2013 2013-12-01            12    2.763636
## 547  December/2013.6 Dec 2013 2013-12-01            12    3.316456
## 548  December/2013.6 Dec 2013 2013-12-01            12    2.403955
## 549  December/2013.6 Dec 2013 2013-12-01            12    2.426702
## 550  December/2013.6 Dec 2013 2013-12-01            12    2.558219
## 551  December/2013.6 Dec 2013 2013-12-01            12    2.488599
## 552  December/2013.6 Dec 2013 2013-12-01            12    2.584270
## 553  December/2013.6 Dec 2013 2013-12-01            12    2.828571
## 554  December/2013.6 Dec 2013 2013-12-01            12    2.731959
## 555  December/2013.6 Dec 2013 2013-12-01            12    2.642202
## 556  December/2013.6 Dec 2013 2013-12-01            12    2.916667
## 557  December/2013.6 Dec 2013 2013-12-01            12    2.373832
## 558  December/2013.6 Dec 2013 2013-12-01            12    2.532258
## 559  December/2013.6 Dec 2013 2013-12-01            12    2.768519
## 560  December/2013.6 Dec 2013 2013-12-01            12    2.548476
## 561  December/2013.6 Dec 2013 2013-12-01            12    2.847518
## 562  December/2013.6 Dec 2013 2013-12-01            12    2.665574
## 563  December/2013.6 Dec 2013 2013-12-01            12    2.397626
## 564  December/2013.6 Dec 2013 2013-12-01            12    2.632867
## 565  December/2013.6 Dec 2013 2013-12-01            12    2.568807
## 566  December/2013.6 Dec 2013 2013-12-01            12    2.691589
## 567  December/2013.6 Dec 2013 2013-12-01            12    2.494737
## 568  December/2013.6 Dec 2013 2013-12-01            12    2.887755
## 569  December/2013.6 Dec 2013 2013-12-01            12    2.564356
## 570  December/2013.6 Dec 2013 2013-12-01            12    2.479224
## 571  December/2013.6 Dec 2013 2013-12-01            12    2.697509
## 572  December/2013.6 Dec 2013 2013-12-01            12    2.479310
## 573  December/2013.6 Dec 2013 2013-12-01            12    2.797101
## 574  December/2013.6 Dec 2013 2013-12-01            12    2.774603
## 575  December/2013.6 Dec 2013 2013-12-01            12    2.542373
## 576  December/2013.6 Dec 2013 2013-12-01            12    2.430199
## 577  December/2013.6 Dec 2013 2013-12-01            12    2.636364
## 578  December/2013.6 Dec 2013 2013-12-01            12    2.605442
## 579  December/2013.6 Dec 2013 2013-12-01            12    2.511696
## 580  December/2013.6 Dec 2013 2013-12-01            12    2.445355
## 581  December/2013.6 Dec 2013 2013-12-01            12    2.395349
## 582  December/2013.6 Dec 2013 2013-12-01            12    2.549296
## 583  December/2013.6 Dec 2013 2013-12-01            12    2.762058
## 584  December/2013.6 Dec 2013 2013-12-01            12    2.639731
## 585  December/2013.6 Dec 2013 2013-12-01            12    2.550955
## 586  December/2013.6 Dec 2013 2013-12-01            12    2.431694
## 587  December/2013.6 Dec 2013 2013-12-01            12    2.675497
## 588  December/2013.6 Dec 2013 2013-12-01            12    2.405488
## 589  December/2013.6 Dec 2013 2013-12-01            12    2.584527
## 590  December/2013.6 Dec 2013 2013-12-01            12    2.446108
## 591  December/2013.6 Dec 2013 2013-12-01            12    2.848138
## 592  December/2013.6 Dec 2013 2013-12-01            12    2.761194
## 593  December/2013.6 Dec 2013 2013-12-01            12    2.662651
## 594  December/2013.6 Dec 2013 2013-12-01            12    3.078947
## 595  December/2013.6 Dec 2013 2013-12-01            12    2.394203
## 596  December/2013.6 Dec 2013 2013-12-01            12    2.916667
## 597  December/2013.6 Dec 2013 2013-12-01            12    2.670330
## 598  December/2013.6 Dec 2013 2013-12-01            12    2.385075
## 599  December/2013.6 Dec 2013 2013-12-01            12    2.546392
## 600  December/2013.6 Dec 2013 2013-12-01            12    2.377465
## 601  December/2013.6 Dec 2013 2013-12-01            12    3.013559
## 602  December/2013.6 Dec 2013 2013-12-01            12    2.425414
## 603  December/2013.6 Dec 2013 2013-12-01            12    2.474576
## 604  December/2013.6 Dec 2013 2013-12-01            12    2.539432
## 605  December/2013.6 Dec 2013 2013-12-01            12    2.562701
## 606  December/2013.6 Dec 2013 2013-12-01            12    2.539735
## 607  December/2013.6 Dec 2013 2013-12-01            12    2.805732
## 608  December/2013.6 Dec 2013 2013-12-01            12    2.627451
## 609  December/2013.6 Dec 2013 2013-12-01            12    2.473520
## 610  December/2013.6 Dec 2013 2013-12-01            12    2.743506
## 611  December/2013.6 Dec 2013 2013-12-01            12    2.660969
## 612  December/2013.6 Dec 2013 2013-12-01            12    2.431884
## 613  December/2013.6 Dec 2013 2013-12-01            12    2.926174
## 614  December/2013.6 Dec 2013 2013-12-01            12    2.829132
## 615  December/2013.6 Dec 2013 2013-12-01            12    2.386819
## 616  December/2013.6 Dec 2013 2013-12-01            12    2.647059
## 617  December/2013.6 Dec 2013 2013-12-01            12    2.748227
## 618  December/2013.6 Dec 2013 2013-12-01            12    2.543253
## 619  December/2013.6 Dec 2013 2013-12-01            12    2.583090
## 620  December/2013.6 Dec 2013 2013-12-01            12    2.917431
## 621  December/2013.6 Dec 2013 2013-12-01            12    2.629758
## 622  December/2013.6 Dec 2013 2013-12-01            12    2.870000
## 623  December/2013.6 Dec 2013 2013-12-01            12    2.430723
## 624  December/2013.6 Dec 2013 2013-12-01            12    2.581994
## 625  December/2013.6 Dec 2013 2013-12-01            12    2.480836
## 626  December/2013.6 Dec 2013 2013-12-01            12    2.895105
## 627  December/2013.6 Dec 2013 2013-12-01            12    2.137931
## 628  December/2013.6 Dec 2013 2013-12-01            12    2.476190
## 629  December/2013.6 Dec 2013 2013-12-01            12    2.504587
## 630  December/2013.6 Dec 2013 2013-12-01            12    2.580838
## 631  December/2013.6 Dec 2013 2013-12-01            12    3.034364
## 632  December/2013.6 Dec 2013 2013-12-01            12    2.512968
## 633  December/2013.6 Dec 2013 2013-12-01            12    2.810811
## 634  December/2013.6 Dec 2013 2013-12-01            12    2.639344
## 635  December/2013.6 Dec 2013 2013-12-01            12    2.750751
## 636  December/2013.6 Dec 2013 2013-12-01            12    2.728707
## 637  December/2013.6 Dec 2013 2013-12-01            12    2.597403
## 638  December/2013.6 Dec 2013 2013-12-01            12    2.679868
## 639  December/2013.6 Dec 2013 2013-12-01            12    2.869159
## 640  December/2013.6 Dec 2013 2013-12-01            12    2.663194
## 641  December/2013.6 Dec 2013 2013-12-01            12    2.508242
## 642  December/2013.6 Dec 2013 2013-12-01            12    2.792388
## 643  December/2013.6 Dec 2013 2013-12-01            12    2.523490
## 644  December/2013.6 Dec 2013 2013-12-01            12    2.663082
## 645  December/2013.6 Dec 2013 2013-12-01            12    2.589404
## 646  December/2013.6 Dec 2013 2013-12-01            12    2.906040
## 647  December/2013.6 Dec 2013 2013-12-01            12    2.719298
## 648  December/2013.6 Dec 2013 2013-12-01            12    2.548495
## 649  December/2013.6 Dec 2013 2013-12-01            12    2.702797
## 650  December/2013.6 Dec 2013 2013-12-01            12    2.480114
## 651  December/2013.6 Dec 2013 2013-12-01            12    2.369697
## 652  December/2013.6 Dec 2013 2013-12-01            12    2.908012
## 653  December/2013.6 Dec 2013 2013-12-01            12    2.654237
## 654  December/2013.6 Dec 2013 2013-12-01            12    2.466238
## 655  December/2013.6 Dec 2013 2013-12-01            12    2.473684
## 656  December/2013.6 Dec 2013 2013-12-01            12    2.676768
## 657  December/2013.6 Dec 2013 2013-12-01            12    2.836879
## 658  December/2013.6 Dec 2013 2013-12-01            12    2.611650
## 659  December/2013.6 Dec 2013 2013-12-01            12    2.640569
## 660  December/2013.6 Dec 2013 2013-12-01            12    2.841509
## 661  December/2013.6 Dec 2013 2013-12-01            12    2.817891
## 662  December/2013.6 Dec 2013 2013-12-01            12    2.400000
## 663  December/2013.6 Dec 2013 2013-12-01            12    2.577844
## 664  December/2013.6 Dec 2013 2013-12-01            12    2.642458
## 665  December/2013.6 Dec 2013 2013-12-01            12    1.961538
## 666  December/2013.6 Dec 2013 2013-12-01            12    2.551237
## 667  December/2013.6 Dec 2013 2013-12-01            12    2.514667
## 668  December/2013.6 Dec 2013 2013-12-01            12    2.722045
## 669  December/2013.6 Dec 2013 2013-12-01            12    2.642105
## 670  December/2013.6 Dec 2013 2013-12-01            12    2.566563
## 671  December/2013.6 Dec 2013 2013-12-01            12    2.679012
## 672  December/2013.6 Dec 2013 2013-12-01            12    2.711974
## 673  December/2013.6 Dec 2013 2013-12-01            12    2.741259
## 674  December/2013.6 Dec 2013 2013-12-01            12    2.877551
## 675  December/2013.6 Dec 2013 2013-12-01            12    2.534884
## 676  December/2013.6 Dec 2013 2013-12-01            12    2.693069
## 677  December/2013.6 Dec 2013 2013-12-01            12    2.828986
## 678  December/2013.6 Dec 2013 2013-12-01            12    2.618234
## 679  December/2013.6 Dec 2013 2013-12-01            12    2.018519
## 680  December/2013.6 Dec 2013 2013-12-01            12    2.714754
## 681  December/2013.6 Dec 2013 2013-12-01            12    2.648094
## 682  December/2013.6 Dec 2013 2013-12-01            12    2.627976
## 683  December/2013.6 Dec 2013 2013-12-01            12    2.985765
## 684  December/2013.6 Dec 2013 2013-12-01            12    2.855634
## 685  December/2013.6 Dec 2013 2013-12-01            12    2.703072
## 686  December/2013.6 Dec 2013 2013-12-01            12    2.661850
## 687  December/2013.6 Dec 2013 2013-12-01            12    2.672269
## 688  December/2013.6 Dec 2013 2013-12-01            12    2.769634
## 689  December/2013.6 Dec 2013 2013-12-01            12    2.633690
## 690  December/2013.6 Dec 2013 2013-12-01            12    2.744417
## 691  December/2013.6 Dec 2013 2013-12-01            12    2.787546
## 692  December/2013.6 Dec 2013 2013-12-01            12    2.653125
## 693  December/2013.6 Dec 2013 2013-12-01            12    2.911565
## 694  December/2013.6 Dec 2013 2013-12-01            12    2.729814
## 695  December/2013.6 Dec 2013 2013-12-01            12    2.647436
## 696  December/2013.6 Dec 2013 2013-12-01            12    1.680934
## 697  December/2013.6 Dec 2013 2013-12-01            12    2.759777
## 698  December/2013.6 Dec 2013 2013-12-01            12    3.163043
## 699  December/2013.6 Dec 2013 2013-12-01            12    2.751656
## 700  December/2013.6 Dec 2013 2013-12-01            12    2.649231
## 701  December/2013.6 Dec 2013 2013-12-01            12    1.982639
## 702  December/2013.6 Dec 2013 2013-12-01            12    2.955172
## 703  December/2013.6 Dec 2013 2013-12-01            12    1.860759
## 704  December/2013.6 Dec 2013 2013-12-01            12    3.005865
## 705       April/2014 Apr 2014 2014-04-01             4    2.594118
## 706       April/2014 Apr 2014 2014-04-01             4    2.665468
## 707       April/2014 Apr 2014 2014-04-01             4    2.680921
## 708       April/2014 Apr 2014 2014-04-01             4    2.652459
## 709       April/2014 Apr 2014 2014-04-01             4    2.796296
## 710       April/2014 Apr 2014 2014-04-01             4    2.606557
## 711       April/2014 Apr 2014 2014-04-01             4    2.780980
## 712       April/2014 Apr 2014 2014-04-01             4    2.599448
## 713       April/2014 Apr 2014 2014-04-01             4    2.944056
## 714       April/2014 Apr 2014 2014-04-01             4    2.833846
## 715       April/2014 Apr 2014 2014-04-01             4    2.729167
## 716       April/2014 Apr 2014 2014-04-01             4    2.754545
## 717       April/2014 Apr 2014 2014-04-01             4    2.664516
## 718       April/2014 Apr 2014 2014-04-01             4    2.508361
## 719       April/2014 Apr 2014 2014-04-01             4    2.699405
## 720       April/2014 Apr 2014 2014-04-01             4    2.802083
## 721       April/2014 Apr 2014 2014-04-01             4    2.643564
## 722       April/2014 Apr 2014 2014-04-01             4    2.564784
## 723       April/2014 Apr 2014 2014-04-01             4    2.638365
## 724       April/2014 Apr 2014 2014-04-01             4    2.603399
## 725       April/2014 Apr 2014 2014-04-01             4    2.672794
## 726       April/2014 Apr 2014 2014-04-01             4    1.830040
## 727       April/2014 Apr 2014 2014-04-01             4    2.611940
## 728       April/2014 Apr 2014 2014-04-01             4    2.521866
## 729       April/2014 Apr 2014 2014-04-01             4    2.795918
## 730       April/2014 Apr 2014 2014-04-01             4    2.707006
## 731       April/2014 Apr 2014 2014-04-01             4    2.663842
## 732       April/2014 Apr 2014 2014-04-01             4    1.806647
## 733       April/2014 Apr 2014 2014-04-01             4    2.570175
## 734       April/2014 Apr 2014 2014-04-01             4    2.947735
## 735       April/2014 Apr 2014 2014-04-01             4    2.636888
## 736       April/2014 Apr 2014 2014-04-01             4    2.766467
## 737       April/2014 Apr 2014 2014-04-01             4    2.800000
## 738       April/2014 Apr 2014 2014-04-01             4    2.694737
## 739       April/2014 Apr 2014 2014-04-01             4    2.693548
## 740       April/2014 Apr 2014 2014-04-01             4    2.771605
## 741       April/2014 Apr 2014 2014-04-01             4    2.713805
## 742       April/2014 Apr 2014 2014-04-01             4    2.699324
## 743       April/2014 Apr 2014 2014-04-01             4    2.639053
## 744       April/2014 Apr 2014 2014-04-01             4    2.870175
## 745       April/2014 Apr 2014 2014-04-01             4    2.581315
## 746       April/2014 Apr 2014 2014-04-01             4    2.699405
## 747       April/2014 Apr 2014 2014-04-01             4    2.720395
## 748       April/2014 Apr 2014 2014-04-01             4    2.754045
## 749       April/2014 Apr 2014 2014-04-01             4    2.631034
## 750       April/2014 Apr 2014 2014-04-01             4    2.589443
## 751       April/2014 Apr 2014 2014-04-01             4    2.595318
## 752       April/2014 Apr 2014 2014-04-01             4    2.795367
## 753       April/2014 Apr 2014 2014-04-01             4    2.808874
## 754       April/2014 Apr 2014 2014-04-01             4    2.534535
## 755       April/2014 Apr 2014 2014-04-01             4    2.686335
## 756       April/2014 Apr 2014 2014-04-01             4    2.531088
## 757       April/2014 Apr 2014 2014-04-01             4    2.923567
## 758       April/2014 Apr 2014 2014-04-01             4    1.727545
## 759       April/2014 Apr 2014 2014-04-01             4    1.753968
## 760       April/2014 Apr 2014 2014-04-01             4    1.610738
## 761       April/2014 Apr 2014 2014-04-01             4    2.043353
## 762       April/2014 Apr 2014 2014-04-01             4    1.653430
## 763       April/2014 Apr 2014 2014-04-01             4    1.525547
## 764       April/2014 Apr 2014 2014-04-01             4    1.933908
## 765       April/2014 Apr 2014 2014-04-01             4    2.655518
## 766       April/2014 Apr 2014 2014-04-01             4    2.629412
## 767       April/2014 Apr 2014 2014-04-01             4    2.793814
## 768       April/2014 Apr 2014 2014-04-01             4    2.572755
## 769       April/2014 Apr 2014 2014-04-01             4    1.541958
## 770       April/2014 Apr 2014 2014-04-01             4    1.623269
## 771       April/2014 Apr 2014 2014-04-01             4    1.598513
## 772       April/2014 Apr 2014 2014-04-01             4    1.771930
## 773       April/2014 Apr 2014 2014-04-01             4    2.501348
## 774       April/2014 Apr 2014 2014-04-01             4    1.566092
## 775       April/2014 Apr 2014 2014-04-01             4    1.685619
## 776       April/2014 Apr 2014 2014-04-01             4    2.454006
## 777       April/2014 Apr 2014 2014-04-01             4    1.887417
## 778       April/2014 Apr 2014 2014-04-01             4    2.501348
## 779       April/2014 Apr 2014 2014-04-01             4    1.635135
## 780       April/2014 Apr 2014 2014-04-01             4    1.429054
## 781       April/2014 Apr 2014 2014-04-01             4    2.442822
## 782       April/2014 Apr 2014 2014-04-01             4    1.525000
## 783       April/2014 Apr 2014 2014-04-01             4    2.478142
## 784       April/2014 Apr 2014 2014-04-01             4    2.473988
## 785       April/2014 Apr 2014 2014-04-01             4    1.542857
## 786       April/2014 Apr 2014 2014-04-01             4    1.498233
## 787       April/2014 Apr 2014 2014-04-01             4    1.421053
## 788       April/2014 Apr 2014 2014-04-01             4    2.552941
## 789       April/2014 Apr 2014 2014-04-01             4    2.597938
## 790       April/2014 Apr 2014 2014-04-01             4    1.709459
## 791       April/2014 Apr 2014 2014-04-01             4    2.494505
## 792       April/2014 Apr 2014 2014-04-01             4    2.622807
## 793       April/2014 Apr 2014 2014-04-01             4    1.561514
## 794       April/2014 Apr 2014 2014-04-01             4    2.086053
## 795       April/2014 Apr 2014 2014-04-01             4    1.520446
## 796       April/2014 Apr 2014 2014-04-01             4    2.393782
## 797       April/2014 Apr 2014 2014-04-01             4    1.479624
## 798       April/2014 Apr 2014 2014-04-01             4    2.359649
## 799       April/2014 Apr 2014 2014-04-01             4    1.779935
## 800       April/2014 Apr 2014 2014-04-01             4    1.724739
## 801       April/2014 Apr 2014 2014-04-01             4    2.667722
## 802       April/2014 Apr 2014 2014-04-01             4    1.567766
## 803       April/2014 Apr 2014 2014-04-01             4    2.680272
## 804       April/2014 Apr 2014 2014-04-01             4    2.629820
## 805       April/2014 Apr 2014 2014-04-01             4    2.749319
## 806       April/2014 Apr 2014 2014-04-01             4    1.714286
## 807       April/2014 Apr 2014 2014-04-01             4    1.667845
## 808       April/2014 Apr 2014 2014-04-01             4    2.785965
## 809       April/2014 Apr 2014 2014-04-01             4    2.619565
## 810       April/2014 Apr 2014 2014-04-01             4    1.842975
## 811       April/2014 Apr 2014 2014-04-01             4    2.782090
## 812       April/2014 Apr 2014 2014-04-01             4    2.674740
## 813       April/2014 Apr 2014 2014-04-01             4    2.824138
## 814       April/2014 Apr 2014 2014-04-01             4    2.693498
## 815       April/2014 Apr 2014 2014-04-01             4    2.726727
## 816       April/2014 Apr 2014 2014-04-01             4    2.648387
## 817       April/2014 Apr 2014 2014-04-01             4    2.686649
## 818       April/2014 Apr 2014 2014-04-01             4    2.555215
## 819       April/2014 Apr 2014 2014-04-01             4    2.706667
## 820       April/2014 Apr 2014 2014-04-01             4    2.840391
## 821       April/2014 Apr 2014 2014-04-01             4    2.637771
## 822       April/2014 Apr 2014 2014-04-01             4    2.525641
## 823       April/2014 Apr 2014 2014-04-01             4    2.730887
## 824       April/2014 Apr 2014 2014-04-01             4    2.863481
## 825       April/2014 Apr 2014 2014-04-01             4    2.827839
## 826       April/2014 Apr 2014 2014-04-01             4    2.711246
## 827       April/2014 Apr 2014 2014-04-01             4    1.743056
## 828       April/2014 Apr 2014 2014-04-01             4    2.621993
## 829       April/2014 Apr 2014 2014-04-01             4    2.598160
## 830       April/2014 Apr 2014 2014-04-01             4    2.752475
## 831       April/2014 Apr 2014 2014-04-01             4    2.630682
## 832       April/2014 Apr 2014 2014-04-01             4    1.840000
## 833       April/2014 Apr 2014 2014-04-01             4    2.665653
## 834       April/2014 Apr 2014 2014-04-01             4    2.934211
## 835       April/2014 Apr 2014 2014-04-01             4    2.456338
## 836       April/2014 Apr 2014 2014-04-01             4    2.722071
## 837       April/2014 Apr 2014 2014-04-01             4    2.523810
## 838       April/2014 Apr 2014 2014-04-01             4    2.747720
## 839       April/2014 Apr 2014 2014-04-01             4    1.581940
## 840       April/2014 Apr 2014 2014-04-01             4    2.727586
## 841       April/2014 Apr 2014 2014-04-01             4    2.772109
## 842       April/2014 Apr 2014 2014-04-01             4    2.756579
## 843       April/2014 Apr 2014 2014-04-01             4    2.770227
## 844       April/2014 Apr 2014 2014-04-01             4    2.803175
## 845       April/2014 Apr 2014 2014-04-01             4    2.472789
## 846       April/2014 Apr 2014 2014-04-01             4    2.428571
## 847       April/2014 Apr 2014 2014-04-01             4    2.598662
## 848       April/2014 Apr 2014 2014-04-01             4    1.750000
## 849       April/2014 Apr 2014 2014-04-01             4    2.727829
## 850       April/2014 Apr 2014 2014-04-01             4    2.944444
## 851       April/2014 Apr 2014 2014-04-01             4    2.727575
## 852       April/2014 Apr 2014 2014-04-01             4    2.723810
## 853       April/2014 Apr 2014 2014-04-01             4    2.631250
## 854       April/2014 Apr 2014 2014-04-01             4    2.806916
## 855       April/2014 Apr 2014 2014-04-01             4    2.870629
## 856       April/2014 Apr 2014 2014-04-01             4    2.648387
## 857       April/2014 Apr 2014 2014-04-01             4    2.727829
## 858       April/2014 Apr 2014 2014-04-01             4    2.785467
## 859       April/2014 Apr 2014 2014-04-01             4    2.642623
## 860       April/2014 Apr 2014 2014-04-01             4    2.725948
## 861       April/2014 Apr 2014 2014-04-01             4    2.710914
## 862       April/2014 Apr 2014 2014-04-01             4    2.913495
## 863       April/2014 Apr 2014 2014-04-01             4    2.830000
## 864       April/2014 Apr 2014 2014-04-01             4    2.640669
## 865       April/2014 Apr 2014 2014-04-01             4    2.741742
## 866       April/2014 Apr 2014 2014-04-01             4    2.567308
## 867       April/2014 Apr 2014 2014-04-01             4    2.916667
## 868       April/2014 Apr 2014 2014-04-01             4    2.788690
## 869       April/2014 Apr 2014 2014-04-01             4    1.882812
## 870       April/2014 Apr 2014 2014-04-01             4    2.729167
## 871       April/2014 Apr 2014 2014-04-01             4    1.947195
## 872       April/2014 Apr 2014 2014-04-01             4    2.046610
## 873       April/2014 Apr 2014 2014-04-01             4    1.876000
## 874       April/2014 Apr 2014 2014-04-01             4    2.696594
## 875       April/2014 Apr 2014 2014-04-01             4    2.608414
## 876       April/2014 Apr 2014 2014-04-01             4    1.840989
## 877       April/2014 Apr 2014 2014-04-01             4    2.116279
## 878       April/2014 Apr 2014 2014-04-01             4    2.826667
## 879       April/2014 Apr 2014 2014-04-01             4    2.182143
## 880       April/2014 Apr 2014 2014-04-01             4    2.625749
## 881       April/2014 Apr 2014 2014-04-01             4    2.792388
## 882       April/2014 Apr 2014 2014-04-01             4    1.651341
## 883       April/2014 Apr 2014 2014-04-01             4    2.712375
## 884       April/2014 Apr 2014 2014-04-01             4    2.620787
## 885       April/2014 Apr 2014 2014-04-01             4    1.678112
## 886       April/2014 Apr 2014 2014-04-01             4    2.870307
## 887       April/2014 Apr 2014 2014-04-01             4    2.766234
## 888       April/2014 Apr 2014 2014-04-01             4    2.041199
## 889       April/2014 Apr 2014 2014-04-01             4    2.518293
## 890       April/2014 Apr 2014 2014-04-01             4    2.674121
## 891       April/2014 Apr 2014 2014-04-01             4    2.492260
## 892       April/2014 Apr 2014 2014-04-01             4    2.778157
## 893       April/2014 Apr 2014 2014-04-01             4    1.585284
## 894       April/2014 Apr 2014 2014-04-01             4    2.617329
## 895       April/2014 Apr 2014 2014-04-01             4    1.838346
## 896       April/2014 Apr 2014 2014-04-01             4    2.735395
## 897       April/2014 Apr 2014 2014-04-01             4    2.584665
## 898       April/2014 Apr 2014 2014-04-01             4    2.174074
## 899       April/2014 Apr 2014 2014-04-01             4    1.769759
## 900       April/2014 Apr 2014 2014-04-01             4    1.680162
## 901       April/2014 Apr 2014 2014-04-01             4    1.900709
## 902       April/2014 Apr 2014 2014-04-01             4    1.608553
## 903       April/2014 Apr 2014 2014-04-01             4    2.631250
## 904       April/2014 Apr 2014 2014-04-01             4    2.763473
## 905       April/2014 Apr 2014 2014-04-01             4    1.742537
## 906       April/2014 Apr 2014 2014-04-01             4    2.671480
## 907       April/2014 Apr 2014 2014-04-01             4    2.649718
## 908       April/2014 Apr 2014 2014-04-01             4    2.603604
## 909       April/2014 Apr 2014 2014-04-01             4    1.599174
## 910       April/2014 Apr 2014 2014-04-01             4    2.679365
## 911       April/2014 Apr 2014 2014-04-01             4    2.439560
## 912       April/2015 Apr 2015 2015-04-01             4    1.553191
## 913       April/2015 Apr 2015 2015-04-01             4    1.794574
## 914       April/2015 Apr 2015 2015-04-01             4    1.683398
## 915       April/2015 Apr 2015 2015-04-01             4    2.583554
## 916       April/2015 Apr 2015 2015-04-01             4    1.864151
## 917       April/2015 Apr 2015 2015-04-01             4    1.619377
## 918       April/2015 Apr 2015 2015-04-01             4    2.812903
## 919       April/2015 Apr 2015 2015-04-01             4    2.130597
## 920       April/2015 Apr 2015 2015-04-01             4    1.698690
## 921       April/2015 Apr 2015 2015-04-01             4    1.692790
## 922       April/2015 Apr 2015 2015-04-01             4    1.761404
## 923       April/2015 Apr 2015 2015-04-01             4    1.712166
## 924       April/2015 Apr 2015 2015-04-01             4    1.775701
## 925       April/2015 Apr 2015 2015-04-01             4    1.655844
## 926       April/2015 Apr 2015 2015-04-01             4    2.705502
## 927       April/2015 Apr 2015 2015-04-01             4    1.735593
## 928       April/2015 Apr 2015 2015-04-01             4    1.697211
## 929       April/2015 Apr 2015 2015-04-01             4    1.606272
## 930       April/2015 Apr 2015 2015-04-01             4    2.675585
## 931       April/2015 Apr 2015 2015-04-01             4    1.841270
## 932       April/2015 Apr 2015 2015-04-01             4    1.714801
## 933       April/2015 Apr 2015 2015-04-01             4    2.615917
## 934       April/2015 Apr 2015 2015-04-01             4    1.547368
## 935       April/2015 Apr 2015 2015-04-01             4    2.511628
## 936       April/2015 Apr 2015 2015-04-01             4    2.575221
## 937       April/2015 Apr 2015 2015-04-01             4    2.644295
## 938       April/2015 Apr 2015 2015-04-01             4    1.711111
## 939       April/2015 Apr 2015 2015-04-01             4    1.730612
## 940       April/2015 Apr 2015 2015-04-01             4    1.858209
## 941       April/2015 Apr 2015 2015-04-01             4    2.596774
## 942       April/2015 Apr 2015 2015-04-01             4    1.678233
## 943       April/2015 Apr 2015 2015-04-01             4    1.764259
## 944       April/2015 Apr 2015 2015-04-01             4    1.819923
## 945       April/2015 Apr 2015 2015-04-01             4    1.733333
## 946       April/2015 Apr 2015 2015-04-01             4    1.646865
## 947       April/2015 Apr 2015 2015-04-01             4    1.707317
## 948       April/2015 Apr 2015 2015-04-01             4    1.809524
## 949       April/2015 Apr 2015 2015-04-01             4    1.809129
## 950       April/2015 Apr 2015 2015-04-01             4    1.630705
## 951       April/2015 Apr 2015 2015-04-01             4    1.800000
## 952       April/2015 Apr 2015 2015-04-01             4    2.653595
## 953       April/2015 Apr 2015 2015-04-01             4    1.898551
## 954       April/2015 Apr 2015 2015-04-01             4    2.561562
## 955       April/2015 Apr 2015 2015-04-01             4    1.871795
## 956       April/2015 Apr 2015 2015-04-01             4    1.603077
## 957       April/2015 Apr 2015 2015-04-01             4    2.721854
## 958       April/2015 Apr 2015 2015-04-01             4    2.614379
## 959       April/2015 Apr 2015 2015-04-01             4    1.778195
## 960       April/2015 Apr 2015 2015-04-01             4    1.829365
## 961       April/2015 Apr 2015 2015-04-01             4    1.767025
## 962       April/2015 Apr 2015 2015-04-01             4    1.811502
## 963       April/2015 Apr 2015 2015-04-01             4    2.663551
## 964       April/2015 Apr 2015 2015-04-01             4    2.703583
## 965       April/2015 Apr 2015 2015-04-01             4    2.881720
## 966       April/2015 Apr 2015 2015-04-01             4    2.731392
## 967       April/2015 Apr 2015 2015-04-01             4    2.571429
## 968       April/2015 Apr 2015 2015-04-01             4    2.547401
## 969       April/2015 Apr 2015 2015-04-01             4    2.674051
## 970       April/2015 Apr 2015 2015-04-01             4    2.574307
## 971       April/2015 Apr 2015 2015-04-01             4    2.690554
## 972       April/2015 Apr 2015 2015-04-01             4    2.636628
## 973       April/2015 Apr 2015 2015-04-01             4    2.550152
## 974       April/2015 Apr 2015 2015-04-01             4    2.934708
## 975       April/2015 Apr 2015 2015-04-01             4    2.639394
## 976       April/2015 Apr 2015 2015-04-01             4    2.433584
## 977       April/2015 Apr 2015 2015-04-01             4    2.636667
## 978       April/2015 Apr 2015 2015-04-01             4    2.668449
## 979       April/2015 Apr 2015 2015-04-01             4    2.737430
## 980       April/2015 Apr 2015 2015-04-01             4    2.689944
## 981       April/2015 Apr 2015 2015-04-01             4    2.467456
## 982       April/2015 Apr 2015 2015-04-01             4    2.681063
## 983       April/2015 Apr 2015 2015-04-01             4    2.571429
## 984       April/2015 Apr 2015 2015-04-01             4    2.573427
## 985       April/2015 Apr 2015 2015-04-01             4    2.620130
## 986       April/2015 Apr 2015 2015-04-01             4    2.705015
## 987       April/2015 Apr 2015 2015-04-01             4    2.755556
## 988       April/2015 Apr 2015 2015-04-01             4    2.946023
## 989       April/2015 Apr 2015 2015-04-01             4    2.664634
## 990       April/2015 Apr 2015 2015-04-01             4    2.616438
## 991       April/2015 Apr 2015 2015-04-01             4    2.704762
## 992       April/2015 Apr 2015 2015-04-01             4    2.731629
## 993       April/2015 Apr 2015 2015-04-01             4    2.731861
## 994       April/2015 Apr 2015 2015-04-01             4    2.667732
## 995       April/2015 Apr 2015 2015-04-01             4    2.604222
## 996       April/2015 Apr 2015 2015-04-01             4    2.664894
## 997       April/2015 Apr 2015 2015-04-01             4    2.693151
## 998       April/2015 Apr 2015 2015-04-01             4    2.656338
## 999       April/2015 Apr 2015 2015-04-01             4    2.656250
## 1000      April/2015 Apr 2015 2015-04-01             4    2.666667
## 1001      April/2015 Apr 2015 2015-04-01             4    2.552910
## 1002      April/2015 Apr 2015 2015-04-01             4    2.661442
## 1003      April/2015 Apr 2015 2015-04-01             4    2.659375
## 1004      April/2015 Apr 2015 2015-04-01             4    2.736842
## 1005      April/2015 Apr 2015 2015-04-01             4    2.638418
## 1006      April/2015 Apr 2015 2015-04-01             4    2.717105
## 1007      April/2015 Apr 2015 2015-04-01             4    2.645604
## 1008      April/2015 Apr 2015 2015-04-01             4    2.788690
## 1009      April/2015 Apr 2015 2015-04-01             4    2.541796
## 1010      April/2015 Apr 2015 2015-04-01             4    2.605333
## 1011      April/2015 Apr 2015 2015-04-01             4    2.746835
## 1012      April/2015 Apr 2015 2015-04-01             4    2.661376
## 1013      April/2015 Apr 2015 2015-04-01             4    2.730061
## 1014      April/2015 Apr 2015 2015-04-01             4    2.753247
## 1015      April/2015 Apr 2015 2015-04-01             4    2.887052
## 1016      April/2015 Apr 2015 2015-04-01             4    2.516575
## 1017      April/2015 Apr 2015 2015-04-01             4    2.796825
## 1018      April/2015 Apr 2015 2015-04-01             4    2.737003
## 1019      April/2015 Apr 2015 2015-04-01             4    2.763231
## 1020      April/2015 Apr 2015 2015-04-01             4    3.021148
## 1021      April/2015 Apr 2015 2015-04-01             4    2.567657
## 1022      April/2015 Apr 2015 2015-04-01             4    2.728395
## 1023      April/2015 Apr 2015 2015-04-01             4    2.841935
## 1024      April/2015 Apr 2015 2015-04-01             4    2.926421
## 1025      April/2015 Apr 2015 2015-04-01             4    2.556410
## 1026      April/2015 Apr 2015 2015-04-01             4    1.821538
## 1027      April/2015 Apr 2015 2015-04-01             4    2.914089
## 1028      April/2015 Apr 2015 2015-04-01             4    2.798658
## 1029      April/2015 Apr 2015 2015-04-01             4    2.813725
## 1030      April/2015 Apr 2015 2015-04-01             4    2.693182
## 1031      April/2015 Apr 2015 2015-04-01             4    2.874214
## 1032      April/2015 Apr 2015 2015-04-01             4    2.828070
## 1033      April/2015 Apr 2015 2015-04-01             4    2.755486
## 1034      April/2015 Apr 2015 2015-04-01             4    2.764120
## 1035      April/2015 Apr 2015 2015-04-01             4    2.563187
## 1036      April/2015 Apr 2015 2015-04-01             4    2.581921
## 1037      April/2015 Apr 2015 2015-04-01             4    2.813253
## 1038      April/2015 Apr 2015 2015-04-01             4    2.781538
## 1039      April/2015 Apr 2015 2015-04-01             4    2.651297
## 1040      April/2015 Apr 2015 2015-04-01             4    2.723776
## 1041      April/2015 Apr 2015 2015-04-01             4    2.027778
## 1042      April/2015 Apr 2015 2015-04-01             4    2.736232
## 1043      April/2015 Apr 2015 2015-04-01             4    2.581267
## 1044      April/2015 Apr 2015 2015-04-01             4    2.250689
## 1045      April/2015 Apr 2015 2015-04-01             4    2.750000
## 1046      April/2015 Apr 2015 2015-04-01             4    2.660714
## 1047      April/2015 Apr 2015 2015-04-01             4    2.818815
## 1048      April/2015 Apr 2015 2015-04-01             4    1.715328
## 1049      April/2015 Apr 2015 2015-04-01             4    3.048544
## 1050      April/2015 Apr 2015 2015-04-01             4    2.744262
## 1051      April/2015 Apr 2015 2015-04-01             4    2.594771
## 1052      April/2015 Apr 2015 2015-04-01             4    1.689320
## 1053      April/2015 Apr 2015 2015-04-01             4    2.682635
## 1054      April/2015 Apr 2015 2015-04-01             4    1.601974
## 1055      April/2015 Apr 2015 2015-04-01             4    1.732143
## 1056      April/2015 Apr 2015 2015-04-01             4    2.544262
## 1057      April/2015 Apr 2015 2015-04-01             4    2.509485
## 1058      April/2015 Apr 2015 2015-04-01             4    2.679894
## 1059      April/2015 Apr 2015 2015-04-01             4    1.631769
## 1060      April/2015 Apr 2015 2015-04-01             4    2.600575
## 1061      April/2015 Apr 2015 2015-04-01             4    2.591592
## 1062      April/2015 Apr 2015 2015-04-01             4    1.474048
## 1063      April/2015 Apr 2015 2015-04-01             4    2.589888
## 1064   December/2016 Dec 2016 2016-12-01            12    2.564417
## 1065   December/2016 Dec 2016 2016-12-01            12    2.743516
## 1066   December/2016 Dec 2016 2016-12-01            12    3.006472
## 1067   December/2016 Dec 2016 2016-12-01            12    2.691030
## 1068   December/2016 Dec 2016 2016-12-01            12    2.844444
## 1069   December/2016 Dec 2016 2016-12-01            12    2.539846
## 1070   December/2016 Dec 2016 2016-12-01            12    2.575198
## 1071   December/2016 Dec 2016 2016-12-01            12    2.654494
## 1072   December/2016 Dec 2016 2016-12-01            12    2.626741
## 1073   December/2016 Dec 2016 2016-12-01            12    2.635097
## 1074   December/2016 Dec 2016 2016-12-01            12    2.662207
## 1075   December/2016 Dec 2016 2016-12-01            12    2.742297
## 1076   December/2016 Dec 2016 2016-12-01            12    2.728395
## 1077   December/2016 Dec 2016 2016-12-01            12    2.710692
## 1078   December/2016 Dec 2016 2016-12-01            12    2.726994
## 1079   December/2016 Dec 2016 2016-12-01            12    2.808451
## 1080   December/2016 Dec 2016 2016-12-01            12    2.672535
## 1081   December/2016 Dec 2016 2016-12-01            12    2.609290
## 1082   December/2016 Dec 2016 2016-12-01            12    2.587432
## 1083   December/2016 Dec 2016 2016-12-01            12    2.699659
## 1084   December/2016 Dec 2016 2016-12-01            12    2.756545
## 1085   December/2016 Dec 2016 2016-12-01            12    2.749296
## 1086   December/2016 Dec 2016 2016-12-01            12    2.716463
## 1087   December/2016 Dec 2016 2016-12-01            12    2.673653
## 1088   December/2016 Dec 2016 2016-12-01            12    2.604502
## 1089   December/2016 Dec 2016 2016-12-01            12    2.528024
## 1090   December/2016 Dec 2016 2016-12-01            12    2.694006
## 1091   December/2016 Dec 2016 2016-12-01            12    2.722380
## 1092   December/2016 Dec 2016 2016-12-01            12    2.584615
## 1093   December/2016 Dec 2016 2016-12-01            12    2.687117
## 1094   December/2016 Dec 2016 2016-12-01            12    2.648936
## 1095   December/2016 Dec 2016 2016-12-01            12    2.677419
## 1096   December/2016 Dec 2016 2016-12-01            12    2.487261
## 1097   December/2016 Dec 2016 2016-12-01            12    2.639205
## 1098   December/2016 Dec 2016 2016-12-01            12    2.108911
## 1099   December/2016 Dec 2016 2016-12-01            12    2.600000
## 1100   December/2016 Dec 2016 2016-12-01            12    2.657343
## 1101   December/2016 Dec 2016 2016-12-01            12    2.632708
## 1102   December/2016 Dec 2016 2016-12-01            12    2.811502
## 1103   December/2016 Dec 2016 2016-12-01            12    2.605714
## 1104   December/2016 Dec 2016 2016-12-01            12    2.786408
## 1105   December/2016 Dec 2016 2016-12-01            12    2.640483
## 1106   December/2016 Dec 2016 2016-12-01            12    2.669697
## 1107   December/2016 Dec 2016 2016-12-01            12    1.603279
## 1108   December/2016 Dec 2016 2016-12-01            12    2.785340
## 1109   December/2016 Dec 2016 2016-12-01            12    2.794872
## 1110   December/2016 Dec 2016 2016-12-01            12    2.299611
## 1111   December/2016 Dec 2016 2016-12-01            12    2.700326
## 1112   December/2016 Dec 2016 2016-12-01            12    2.719444
## 1113   December/2016 Dec 2016 2016-12-01            12    2.573099
## 1114   December/2016 Dec 2016 2016-12-01            12    2.530405
## 1115   December/2016 Dec 2016 2016-12-01            12    3.076412
## 1116   December/2016 Dec 2016 2016-12-01            12    2.856688
## 1117   December/2016 Dec 2016 2016-12-01            12    2.886667
## 1118   December/2016 Dec 2016 2016-12-01            12    2.721739
## 1119   December/2016 Dec 2016 2016-12-01            12    2.726496
## 1120   December/2016 Dec 2016 2016-12-01            12    2.743056
## 1121   December/2016 Dec 2016 2016-12-01            12    2.800000
## 1122   December/2016 Dec 2016 2016-12-01            12    1.616725
## 1123   December/2016 Dec 2016 2016-12-01            12    1.702422
## 1124   December/2016 Dec 2016 2016-12-01            12    2.661585
## 1125   December/2016 Dec 2016 2016-12-01            12    2.750760
## 1126   December/2016 Dec 2016 2016-12-01            12    1.666667
## 1127   December/2016 Dec 2016 2016-12-01            12    2.789617
## 1128   December/2016 Dec 2016 2016-12-01            12    2.752542
## 1129   December/2016 Dec 2016 2016-12-01            12    1.663158
## 1130   December/2016 Dec 2016 2016-12-01            12    2.729299
## 1131   December/2016 Dec 2016 2016-12-01            12    2.889241
## 1132   December/2016 Dec 2016 2016-12-01            12    2.818750
## 1133   December/2016 Dec 2016 2016-12-01            12    2.733746
## 1134   December/2016 Dec 2016 2016-12-01            12    2.641096
## 1135   December/2016 Dec 2016 2016-12-01            12    2.601719
## 1136   December/2016 Dec 2016 2016-12-01            12    2.660969
## 1137   December/2016 Dec 2016 2016-12-01            12    1.731884
## 1138   December/2016 Dec 2016 2016-12-01            12    2.787162
## 1139   December/2016 Dec 2016 2016-12-01            12    1.850000
## 1140   December/2016 Dec 2016 2016-12-01            12    2.780405
## 1141   December/2016 Dec 2016 2016-12-01            12    2.550409
## 1142   December/2016 Dec 2016 2016-12-01            12    2.721264
## 1143   December/2016 Dec 2016 2016-12-01            12    2.410494
## 1144   December/2016 Dec 2016 2016-12-01            12    2.571066
## 1145   December/2016 Dec 2016 2016-12-01            12    1.847973
## 1146   December/2016 Dec 2016 2016-12-01            12    2.262774
## 1147   December/2016 Dec 2016 2016-12-01            12    2.814286
## 1148   December/2016 Dec 2016 2016-12-01            12    2.527950
## 1149   December/2016 Dec 2016 2016-12-01            12    2.610778
## 1150   December/2016 Dec 2016 2016-12-01            12    2.713826
## 1151   December/2016 Dec 2016 2016-12-01            12    2.580000
## 1152   December/2016 Dec 2016 2016-12-01            12    2.662921
## 1153   December/2016 Dec 2016 2016-12-01            12    2.539735
## 1154   December/2016 Dec 2016 2016-12-01            12    2.716511
## 1155   December/2016 Dec 2016 2016-12-01            12    1.653846
## 1156   December/2016 Dec 2016 2016-12-01            12    2.370370
## 1157   December/2016 Dec 2016 2016-12-01            12    1.694006
## 1158   December/2016 Dec 2016 2016-12-01            12    2.665706
## 1159   December/2016 Dec 2016 2016-12-01            12    2.014286
## 1160   December/2016 Dec 2016 2016-12-01            12    2.473545
## 1161   December/2016 Dec 2016 2016-12-01            12    2.557065
## 1162   December/2016 Dec 2016 2016-12-01            12    2.678808
## 1163   December/2016 Dec 2016 2016-12-01            12    2.638889
## 1164   December/2016 Dec 2016 2016-12-01            12    2.495601
## 1165   December/2016 Dec 2016 2016-12-01            12    2.510511
## 1166   December/2016 Dec 2016 2016-12-01            12    2.539326
## 1167   December/2016 Dec 2016 2016-12-01            12    2.652778
## 1168   December/2016 Dec 2016 2016-12-01            12    1.706320
## 1169   December/2016 Dec 2016 2016-12-01            12    2.787781
## 1170   December/2016 Dec 2016 2016-12-01            12    1.702422
## 1171   December/2016 Dec 2016 2016-12-01            12    2.232558
## 1172   December/2016 Dec 2016 2016-12-01            12    1.682692
## 1173   December/2016 Dec 2016 2016-12-01            12    2.584098
## 1174   December/2016 Dec 2016 2016-12-01            12    2.593315
## 1175   December/2016 Dec 2016 2016-12-01            12    2.187879
## 1176   December/2016 Dec 2016 2016-12-01            12    2.638806
## 1177   December/2016 Dec 2016 2016-12-01            12    2.484419
## 1178   December/2016 Dec 2016 2016-12-01            12    2.652308
## 1179   December/2016 Dec 2016 2016-12-01            12    1.693662
## 1180   December/2016 Dec 2016 2016-12-01            12    2.790123
## 1181   December/2016 Dec 2016 2016-12-01            12    2.195122
## 1182   December/2016 Dec 2016 2016-12-01            12    2.481928
## 1183   December/2016 Dec 2016 2016-12-01            12    2.688581
## 1184   December/2016 Dec 2016 2016-12-01            12    2.665595
## 1185   December/2016 Dec 2016 2016-12-01            12    2.703571
## 1186   December/2016 Dec 2016 2016-12-01            12    2.607717
## 1187   December/2016 Dec 2016 2016-12-01            12    2.368564
## 1188   December/2016 Dec 2016 2016-12-01            12    2.776271
## 1189   December/2016 Dec 2016 2016-12-01            12    2.613333
## 1190   December/2016 Dec 2016 2016-12-01            12    2.036424
## 1191   December/2016 Dec 2016 2016-12-01            12    2.460568
## 1192   December/2016 Dec 2016 2016-12-01            12    2.615836
## 1193   December/2016 Dec 2016 2016-12-01            12    2.161376
## 1194   December/2016 Dec 2016 2016-12-01            12    2.660870
## 1195   December/2016 Dec 2016 2016-12-01            12    2.140541
## 1196   December/2016 Dec 2016 2016-12-01            12    2.545455
## 1197   December/2016 Dec 2016 2016-12-01            12    2.682243
## 1198   December/2016 Dec 2016 2016-12-01            12    2.718182
## 1199   December/2016 Dec 2016 2016-12-01            12    2.581818
## 1200   December/2016 Dec 2016 2016-12-01            12    2.777385
## 1201   December/2016 Dec 2016 2016-12-01            12    2.850932
## 1202   December/2016 Dec 2016 2016-12-01            12    2.882143
## 1203   December/2016 Dec 2016 2016-12-01            12    2.688103
## 1204   December/2016 Dec 2016 2016-12-01            12    2.742029
## 1205   December/2016 Dec 2016 2016-12-01            12    1.873199
## 1206   December/2016 Dec 2016 2016-12-01            12    2.744479
## 1207   December/2016 Dec 2016 2016-12-01            12    2.833333
## 1208   December/2016 Dec 2016 2016-12-01            12    2.651376
## 1209   December/2016 Dec 2016 2016-12-01            12    2.786232
## 1210   December/2016 Dec 2016 2016-12-01            12    2.807309
## 1211   December/2016 Dec 2016 2016-12-01            12    2.821053
## 1212   December/2016 Dec 2016 2016-12-01            12    2.755172
## 1213   December/2016 Dec 2016 2016-12-01            12    2.761610
## 1214   December/2016 Dec 2016 2016-12-01            12    2.893175
## 1215   December/2016 Dec 2016 2016-12-01            12    2.675676
## 1216   December/2016 Dec 2016 2016-12-01            12    2.914894
## 1217   December/2016 Dec 2016 2016-12-01            12    2.766272
## 1218   December/2016 Dec 2016 2016-12-01            12    2.790698
## 1219   December/2016 Dec 2016 2016-12-01            12    3.007407
## 1220   December/2016 Dec 2016 2016-12-01            12    2.840116
## 1221   December/2016 Dec 2016 2016-12-01            12    2.909408
## 1222   December/2016 Dec 2016 2016-12-01            12    2.959707
## 1223   December/2016 Dec 2016 2016-12-01            12    2.837748
## 1224   December/2016 Dec 2016 2016-12-01            12    2.809689
## 1225   December/2016 Dec 2016 2016-12-01            12    2.833333
## 1226   December/2016 Dec 2016 2016-12-01            12    3.000000
## 1227   December/2016 Dec 2016 2016-12-01            12    2.919614
## 1228   December/2016 Dec 2016 2016-12-01            12    3.127907
## 1229   December/2016 Dec 2016 2016-12-01            12    2.866450
## 1230   December/2016 Dec 2016 2016-12-01            12    2.710843
## 1231   December/2016 Dec 2016 2016-12-01            12    2.729373
## 1232   December/2016 Dec 2016 2016-12-01            12    3.000000
## 1233   December/2016 Dec 2016 2016-12-01            12    2.466667
## 1234   December/2016 Dec 2016 2016-12-01            12    2.776836
## 1235   December/2016 Dec 2016 2016-12-01            12    2.611594
## 1236   December/2016 Dec 2016 2016-12-01            12    2.530055
## 1237   December/2016 Dec 2016 2016-12-01            12    2.603352
## 1238   December/2016 Dec 2016 2016-12-01            12    2.797101
## 1239   December/2016 Dec 2016 2016-12-01            12    2.744792
## 1240   December/2016 Dec 2016 2016-12-01            12    2.895082
## 1241   December/2016 Dec 2016 2016-12-01            12    2.718841
## 1242   December/2016 Dec 2016 2016-12-01            12    2.845455
## 1243   December/2016 Dec 2016 2016-12-01            12    2.702941
## 1244   December/2016 Dec 2016 2016-12-01            12    1.792049
## 1245   December/2016 Dec 2016 2016-12-01            12    2.533537
## 1246   December/2016 Dec 2016 2016-12-01            12    2.832168
## 1247   December/2016 Dec 2016 2016-12-01            12    2.760736
## 1248   December/2016 Dec 2016 2016-12-01            12    2.766892
## 1249   December/2016 Dec 2016 2016-12-01            12    2.558065
## 1250   December/2016 Dec 2016 2016-12-01            12    2.672414
## 1251   December/2016 Dec 2016 2016-12-01            12    2.674931
## 1252   December/2016 Dec 2016 2016-12-01            12    2.974843
## 1253   December/2016 Dec 2016 2016-12-01            12          NA
## 1254   December/2016 Dec 2016 2016-12-01            12    2.501538
## 1255   December/2016 Dec 2016 2016-12-01            12    2.822485
## 1256   December/2016 Dec 2016 2016-12-01            12    2.656642
## 1257   December/2016 Dec 2016 2016-12-01            12    2.693662
## 1258   December/2016 Dec 2016 2016-12-01            12    2.518519
## 1259   December/2016 Dec 2016 2016-12-01            12    2.678161
## 1260   December/2016 Dec 2016 2016-12-01            12    2.821326
## 1261   December/2016 Dec 2016 2016-12-01            12    2.629179
## 1262   December/2016 Dec 2016 2016-12-01            12    2.535897
## 1263   December/2016 Dec 2016 2016-12-01            12    2.595679
## 1264   December/2016 Dec 2016 2016-12-01            12    2.737542
## 1265   December/2016 Dec 2016 2016-12-01            12    2.739255
## 1266   December/2016 Dec 2016 2016-12-01            12    2.729032
## 1267   December/2016 Dec 2016 2016-12-01            12    2.686007
## 1268   December/2016 Dec 2016 2016-12-01            12    2.738889
## 1269   December/2016 Dec 2016 2016-12-01            12    2.632312
## 1270   December/2016 Dec 2016 2016-12-01            12    2.779264
## 1271   December/2016 Dec 2016 2016-12-01            12    2.689024
## 1272   December/2016 Dec 2016 2016-12-01            12    2.678808
## 1273   December/2016 Dec 2016 2016-12-01            12    2.781350
## 1274   December/2016 Dec 2016 2016-12-01            12    2.888179
## 1275   December/2016 Dec 2016 2016-12-01            12    2.642405
## 1276   December/2016 Dec 2016 2016-12-01            12    2.731629
## 1277   December/2016 Dec 2016 2016-12-01            12    2.710963
## 1278   December/2016 Dec 2016 2016-12-01            12    2.027778
## 1279   December/2016 Dec 2016 2016-12-01            12    2.716612
## 1280   December/2016 Dec 2016 2016-12-01            12    2.931271
## 1281   December/2016 Dec 2016 2016-12-01            12    1.671587
## 1282   December/2016 Dec 2016 2016-12-01            12    2.699422
## 1283   December/2016 Dec 2016 2016-12-01            12    2.739550
## 1284   December/2016 Dec 2016 2016-12-01            12    1.798635
## 1285   December/2016 Dec 2016 2016-12-01            12    2.790036
## 1286   December/2016 Dec 2016 2016-12-01            12    2.607843
## 1287   December/2016 Dec 2016 2016-12-01            12    1.745704
## 1288   December/2016 Dec 2016 2016-12-01            12    2.733974
## 1289   December/2016 Dec 2016 2016-12-01            12    1.828947
## 1290   December/2016 Dec 2016 2016-12-01            12    1.579505
## 1291   December/2016 Dec 2016 2016-12-01            12    1.807692
## 1292   December/2016 Dec 2016 2016-12-01            12    1.827476
## 1293   December/2016 Dec 2016 2016-12-01            12    2.663580
## 1294   December/2016 Dec 2016 2016-12-01            12    2.389439
## 1295   December/2016 Dec 2016 2016-12-01            12    2.694215
## 1296   December/2016 Dec 2016 2016-12-01            12    2.922360
## 1297   December/2016 Dec 2016 2016-12-01            12    2.792244
## 1298   December/2016 Dec 2016 2016-12-01            12    1.532915
## 1299   December/2016 Dec 2016 2016-12-01            12    1.740614
## 1300   December/2016 Dec 2016 2016-12-01            12    2.900709
## 1301   December/2016 Dec 2016 2016-12-01            12    2.184375
## 1302   December/2016 Dec 2016 2016-12-01            12    1.716912
## 1303   December/2016 Dec 2016 2016-12-01            12    2.728302
## 1304   December/2016 Dec 2016 2016-12-01            12    2.580858
## 1305   December/2016 Dec 2016 2016-12-01            12    2.071429
## 1306   December/2016 Dec 2016 2016-12-01            12    2.678788
## 1307   December/2016 Dec 2016 2016-12-01            12    2.635452
## 1308   December/2016 Dec 2016 2016-12-01            12    2.605797
## 1309   December/2016 Dec 2016 2016-12-01            12    2.613383
## 1310   December/2016 Dec 2016 2016-12-01            12    2.722222
## 1311   December/2016 Dec 2016 2016-12-01            12    2.646465
## 1312   December/2016 Dec 2016 2016-12-01            12    1.655022
## 1313   December/2016 Dec 2016 2016-12-01            12    1.635762
## 1314   December/2016 Dec 2016 2016-12-01            12    2.619377
## 1315     August/2017 Aug 2017 2017-08-01             8    2.769481
## 1316     August/2017 Aug 2017 2017-08-01             8    2.755034
## 1317     August/2017 Aug 2017 2017-08-01             8    2.607843
## 1318     August/2017 Aug 2017 2017-08-01             8    2.299663
## 1319     August/2017 Aug 2017 2017-08-01             8    2.816129
## 1320     August/2017 Aug 2017 2017-08-01             8    2.779026
## 1321     August/2017 Aug 2017 2017-08-01             8    2.225806
## 1322     August/2017 Aug 2017 2017-08-01             8    2.645963
## 1323     August/2017 Aug 2017 2017-08-01             8    2.675900
## 1324     August/2017 Aug 2017 2017-08-01             8    2.757862
## 1325     August/2017 Aug 2017 2017-08-01             8    2.685246
## 1326     August/2017 Aug 2017 2017-08-01             8    2.732143
## 1327     August/2017 Aug 2017 2017-08-01             8    2.609610
## 1328     August/2017 Aug 2017 2017-08-01             8    2.663818
## 1329     August/2017 Aug 2017 2017-08-01             8    2.857143
## 1330     August/2017 Aug 2017 2017-08-01             8    2.672297
## 1331     August/2017 Aug 2017 2017-08-01             8    2.090301
## 1332     August/2017 Aug 2017 2017-08-01             8    2.578348
## 1333     August/2017 Aug 2017 2017-08-01             8    2.525373
## 1334     August/2017 Aug 2017 2017-08-01             8    2.721519
## 1335     August/2017 Aug 2017 2017-08-01             8    2.815789
## 1336     August/2017 Aug 2017 2017-08-01             8    2.631737
## 1337     August/2017 Aug 2017 2017-08-01             8    2.807829
## 1338     August/2017 Aug 2017 2017-08-01             8    2.674658
## 1339     August/2017 Aug 2017 2017-08-01             8    2.728188
## 1340     August/2017 Aug 2017 2017-08-01             8    2.144876
## 1341     August/2017 Aug 2017 2017-08-01             8    2.702312
## 1342     August/2017 Aug 2017 2017-08-01             8    2.443425
## 1343     August/2017 Aug 2017 2017-08-01             8    2.713805
## 1344     August/2017 Aug 2017 2017-08-01             8    2.680251
## 1345     August/2017 Aug 2017 2017-08-01             8    2.681818
## 1346     August/2017 Aug 2017 2017-08-01             8    2.574648
## 1347     August/2017 Aug 2017 2017-08-01             8    2.548896
## 1348     August/2017 Aug 2017 2017-08-01             8    2.789474
## 1349     August/2017 Aug 2017 2017-08-01             8    2.737003
## 1350     August/2017 Aug 2017 2017-08-01             8    2.700000
## 1351     August/2017 Aug 2017 2017-08-01             8    2.740223
## 1352     August/2017 Aug 2017 2017-08-01             8    2.730435
## 1353     August/2017 Aug 2017 2017-08-01             8    2.762376
## 1354     August/2017 Aug 2017 2017-08-01             8    2.676976
## 1355     August/2017 Aug 2017 2017-08-01             8    2.726761
## 1356     August/2017 Aug 2017 2017-08-01             8    2.712991
## 1357     August/2017 Aug 2017 2017-08-01             8    2.725989
## 1358     August/2017 Aug 2017 2017-08-01             8    1.697183
## 1359     August/2017 Aug 2017 2017-08-01             8    2.785479
## 1360     August/2017 Aug 2017 2017-08-01             8    2.752778
## 1361     August/2017 Aug 2017 2017-08-01             8    2.818182
## 1362     August/2017 Aug 2017 2017-08-01             8    2.791809
## 1363     August/2017 Aug 2017 2017-08-01             8    2.657658
## 1364     August/2017 Aug 2017 2017-08-01             8    2.517483
## 1365     August/2017 Aug 2017 2017-08-01             8    2.735669
## 1366     August/2017 Aug 2017 2017-08-01             8    2.808023
## 1367     August/2017 Aug 2017 2017-08-01             8    2.730519
## 1368     August/2017 Aug 2017 2017-08-01             8    2.740845
## 1369     August/2017 Aug 2017 2017-08-01             8    2.601744
## 1370     August/2017 Aug 2017 2017-08-01             8    2.728223
## 1371     August/2017 Aug 2017 2017-08-01             8    2.616959
## 1372     August/2017 Aug 2017 2017-08-01             8    2.649573
## 1373     August/2017 Aug 2017 2017-08-01             8    2.873134
## 1374     August/2017 Aug 2017 2017-08-01             8    2.223881
## 1375     August/2017 Aug 2017 2017-08-01             8    2.635514
## 1376     August/2017 Aug 2017 2017-08-01             8    2.072368
## 1377     August/2017 Aug 2017 2017-08-01             8    2.627168
## 1378     August/2017 Aug 2017 2017-08-01             8    2.638889
## 1379     August/2017 Aug 2017 2017-08-01             8    1.665541
## 1380     August/2017 Aug 2017 2017-08-01             8    2.696793
## 1381     August/2017 Aug 2017 2017-08-01             8    2.561538
## 1382     August/2017 Aug 2017 2017-08-01             8    2.511173
## 1383     August/2017 Aug 2017 2017-08-01             8    2.693333
## 1384     August/2017 Aug 2017 2017-08-01             8    2.860215
## 1385     August/2017 Aug 2017 2017-08-01             8    2.749164
## 1386     August/2017 Aug 2017 2017-08-01             8    2.695187
## 1387     August/2017 Aug 2017 2017-08-01             8    2.572327
## 1388     August/2017 Aug 2017 2017-08-01             8    2.601156
## 1389     August/2017 Aug 2017 2017-08-01             8    2.543478
## 1390     August/2017 Aug 2017 2017-08-01             8    2.710191
## 1391     August/2017 Aug 2017 2017-08-01             8    2.552817
## 1392     August/2017 Aug 2017 2017-08-01             8    2.701695
## 1393     August/2017 Aug 2017 2017-08-01             8    1.756757
## 1394     August/2017 Aug 2017 2017-08-01             8    2.590625
## 1395     August/2017 Aug 2017 2017-08-01             8    2.722054
## 1396     August/2017 Aug 2017 2017-08-01             8    2.722930
## 1397     August/2017 Aug 2017 2017-08-01             8    2.646341
## 1398     August/2017 Aug 2017 2017-08-01             8    2.714286
## 1399     August/2017 Aug 2017 2017-08-01             8    2.621469
## 1400     August/2017 Aug 2017 2017-08-01             8    2.583815
## 1401     August/2017 Aug 2017 2017-08-01             8    2.581662
## 1402     August/2017 Aug 2017 2017-08-01             8    2.554839
## 1403     August/2017 Aug 2017 2017-08-01             8    1.708487
## 1404     August/2017 Aug 2017 2017-08-01             8    2.820755
## 1405     August/2017 Aug 2017 2017-08-01             8    2.787356
## 1406     August/2017 Aug 2017 2017-08-01             8    2.397059
## 1407     August/2017 Aug 2017 2017-08-01             8    2.369863
## 1408     August/2017 Aug 2017 2017-08-01             8    2.098540
## 1409     August/2017 Aug 2017 2017-08-01             8    2.681347
## 1410     August/2017 Aug 2017 2017-08-01             8    2.680233
## 1411     August/2017 Aug 2017 2017-08-01             8    2.674912
## 1412     August/2017 Aug 2017 2017-08-01             8    2.758410
## 1413     August/2017 Aug 2017 2017-08-01             8    2.631902
## 1414     August/2017 Aug 2017 2017-08-01             8    2.679083
## 1415     August/2017 Aug 2017 2017-08-01             8    2.692042
## 1416     August/2017 Aug 2017 2017-08-01             8    2.600515
## 1417     August/2017 Aug 2017 2017-08-01             8    2.465054
## 1418     August/2017 Aug 2017 2017-08-01             8    1.588652
## 1419     August/2017 Aug 2017 2017-08-01             8    2.725979
## 1420     August/2017 Aug 2017 2017-08-01             8    2.790909
## 1421     August/2017 Aug 2017 2017-08-01             8    2.628169
## 1422     August/2017 Aug 2017 2017-08-01             8    2.549488
## 1423     August/2017 Aug 2017 2017-08-01             8    2.748588
## 1424     August/2017 Aug 2017 2017-08-01             8    2.686275
## 1425     August/2017 Aug 2017 2017-08-01             8    2.757764
## 1426     August/2017 Aug 2017 2017-08-01             8    2.837758
## 1427     August/2017 Aug 2017 2017-08-01             8    2.706070
## 1428     August/2017 Aug 2017 2017-08-01             8    2.661808
## 1429     August/2017 Aug 2017 2017-08-01             8    2.648101
## 1430     August/2017 Aug 2017 2017-08-01             8    2.549575
## 1431     August/2017 Aug 2017 2017-08-01             8    2.707831
## 1432     August/2017 Aug 2017 2017-08-01             8    2.766026
## 1433     August/2017 Aug 2017 2017-08-01             8    2.784264
## 1434     August/2017 Aug 2017 2017-08-01             8    2.602041
## 1435     August/2017 Aug 2017 2017-08-01             8    2.713924
## 1436     August/2017 Aug 2017 2017-08-01             8    2.750000
## 1437     August/2017 Aug 2017 2017-08-01             8    2.649852
## 1438     August/2017 Aug 2017 2017-08-01             8    2.621891
## 1439     August/2017 Aug 2017 2017-08-01             8    2.754839
## 1440     August/2017 Aug 2017 2017-08-01             8    2.742331
## 1441     August/2017 Aug 2017 2017-08-01             8    2.763077
## 1442     August/2017 Aug 2017 2017-08-01             8    2.598784
## 1443     August/2017 Aug 2017 2017-08-01             8    2.825243
## 1444     August/2017 Aug 2017 2017-08-01             8    2.762058
## 1445     August/2017 Aug 2017 2017-08-01             8    2.544794
## 1446     August/2017 Aug 2017 2017-08-01             8    2.745407
## 1447     August/2017 Aug 2017 2017-08-01             8    2.617162
## 1448     August/2017 Aug 2017 2017-08-01             8    2.763407
## 1449     August/2017 Aug 2017 2017-08-01             8    2.693671
## 1450     August/2017 Aug 2017 2017-08-01             8    2.757009
## 1451     August/2017 Aug 2017 2017-08-01             8    2.932394
## 1452     August/2017 Aug 2017 2017-08-01             8    2.712121
## 1453     August/2017 Aug 2017 2017-08-01             8    2.659459
## 1454     August/2017 Aug 2017 2017-08-01             8    2.857143
## 1455     August/2017 Aug 2017 2017-08-01             8    2.651376
## 1456     August/2017 Aug 2017 2017-08-01             8    2.739247
## 1457     August/2017 Aug 2017 2017-08-01             8    2.671779
## 1458     August/2017 Aug 2017 2017-08-01             8    2.694268
## 1459     August/2017 Aug 2017 2017-08-01             8    2.559113
## 1460     August/2017 Aug 2017 2017-08-01             8    2.729050
## 1461     August/2017 Aug 2017 2017-08-01             8    2.698361
## 1462     August/2017 Aug 2017 2017-08-01             8    2.688347
## 1463     August/2017 Aug 2017 2017-08-01             8    2.707602
## 1464     August/2017 Aug 2017 2017-08-01             8    2.666667
## 1465     August/2017 Aug 2017 2017-08-01             8    2.652893
## 1466     August/2017 Aug 2017 2017-08-01             8    2.711688
## 1467     August/2017 Aug 2017 2017-08-01             8    2.814404
## 1468     August/2017 Aug 2017 2017-08-01             8    2.704969
## 1469     August/2017 Aug 2017 2017-08-01             8    2.692090
## 1470     August/2017 Aug 2017 2017-08-01             8    2.803175
## 1471     August/2017 Aug 2017 2017-08-01             8    2.820144
## 1472     August/2017 Aug 2017 2017-08-01             8    2.753846
## 1473     August/2017 Aug 2017 2017-08-01             8    2.506112
## 1474     August/2017 Aug 2017 2017-08-01             8    2.653333
## 1475     August/2017 Aug 2017 2017-08-01             8    2.577259
## 1476     August/2017 Aug 2017 2017-08-01             8    2.669492
## 1477     August/2017 Aug 2017 2017-08-01             8    2.672872
## 1478     August/2017 Aug 2017 2017-08-01             8    2.582210
## 1479     August/2017 Aug 2017 2017-08-01             8    2.622283
## 1480     August/2017 Aug 2017 2017-08-01             8    2.615183
## 1481     August/2017 Aug 2017 2017-08-01             8    2.645963
## 1482     August/2017 Aug 2017 2017-08-01             8    2.663317
## 1483     August/2017 Aug 2017 2017-08-01             8    2.597884
## 1484     August/2017 Aug 2017 2017-08-01             8    2.806548
## 1485     August/2017 Aug 2017 2017-08-01             8    2.721180
## 1486     August/2017 Aug 2017 2017-08-01             8    2.664935
## 1487     August/2017 Aug 2017 2017-08-01             8    2.784247
## 1488     August/2017 Aug 2017 2017-08-01             8    2.752294
## 1489     August/2017 Aug 2017 2017-08-01             8    2.761610
## 1490     August/2017 Aug 2017 2017-08-01             8    2.768730
## 1491     August/2017 Aug 2017 2017-08-01             8    2.691131
## 1492     August/2017 Aug 2017 2017-08-01             8    2.711656
## 1493     August/2017 Aug 2017 2017-08-01             8    2.726519
## 1494     August/2017 Aug 2017 2017-08-01             8    2.698413
## 1495     August/2017 Aug 2017 2017-08-01             8    2.815013
## 1496     August/2017 Aug 2017 2017-08-01             8    2.835484
## 1497     August/2017 Aug 2017 2017-08-01             8    2.726727
## 1498     August/2017 Aug 2017 2017-08-01             8    2.624339
## 1499     August/2017 Aug 2017 2017-08-01             8    2.728435
## 1500     August/2017 Aug 2017 2017-08-01             8    2.803681
## 1501     August/2017 Aug 2017 2017-08-01             8    2.969697
## 1502     August/2017 Aug 2017 2017-08-01             8    2.580110
## 1503     August/2017 Aug 2017 2017-08-01             8    2.757475
## 1504     August/2017 Aug 2017 2017-08-01             8    2.882759
## 1505     August/2017 Aug 2017 2017-08-01             8    1.789474
## 1506     August/2017 Aug 2017 2017-08-01             8    2.769231
## 1507     August/2017 Aug 2017 2017-08-01             8    2.600000
## 1508     August/2017 Aug 2017 2017-08-01             8    2.748175
## 1509     August/2017 Aug 2017 2017-08-01             8    2.687273
## 1510     August/2017 Aug 2017 2017-08-01             8    2.691643
## 1511     August/2017 Aug 2017 2017-08-01             8    2.598639
## 1512     August/2017 Aug 2017 2017-08-01             8    2.754491
## 1513     August/2017 Aug 2017 2017-08-01             8    1.756458
## 1514     August/2017 Aug 2017 2017-08-01             8    2.651466
## 1515     August/2017 Aug 2017 2017-08-01             8    2.596721
## 1516     August/2017 Aug 2017 2017-08-01             8    2.813149
## 1517     August/2017 Aug 2017 2017-08-01             8    2.481928
## 1518     August/2017 Aug 2017 2017-08-01             8    2.577419
## 1519     August/2017 Aug 2017 2017-08-01             8    2.785714
## 1520     August/2017 Aug 2017 2017-08-01             8    2.630814
## 1521     August/2017 Aug 2017 2017-08-01             8    2.540541
## 1522     August/2017 Aug 2017 2017-08-01             8    2.618076
## 1523     August/2017 Aug 2017 2017-08-01             8    2.593923
## 1524     August/2017 Aug 2017 2017-08-01             8    1.810811
## 1525     August/2017 Aug 2017 2017-08-01             8    1.785714
## 1526     August/2017 Aug 2017 2017-08-01             8    2.894737
## 1527     August/2017 Aug 2017 2017-08-01             8    2.768392
## 1528     August/2017 Aug 2017 2017-08-01             8    2.588785
## 1529     August/2017 Aug 2017 2017-08-01             8    2.581749
## 1530     August/2017 Aug 2017 2017-08-01             8    2.713896
## 1531     August/2017 Aug 2017 2017-08-01             8    2.697740
## 1532     August/2017 Aug 2017 2017-08-01             8    2.631068
## 1533     August/2017 Aug 2017 2017-08-01             8    2.695971
## 1534     August/2017 Aug 2017 2017-08-01             8    2.741135
## 1535     August/2017 Aug 2017 2017-08-01             8    1.948718
## 1536     August/2017 Aug 2017 2017-08-01             8    2.743056
## 1537     August/2017 Aug 2017 2017-08-01             8    2.700000
## 1538     August/2017 Aug 2017 2017-08-01             8    2.614943
## 1539     August/2017 Aug 2017 2017-08-01             8    2.646865
## 1540     August/2017 Aug 2017 2017-08-01             8    2.642651
## 1541     August/2017 Aug 2017 2017-08-01             8    1.815094
## 1542     August/2017 Aug 2017 2017-08-01             8    2.751534
## 1543     August/2017 Aug 2017 2017-08-01             8    2.698413
## 1544     August/2017 Aug 2017 2017-08-01             8    2.678344
## 1545     August/2017 Aug 2017 2017-08-01             8    1.745520
## 1546     August/2017 Aug 2017 2017-08-01             8    1.693103
## 1547     August/2017 Aug 2017 2017-08-01             8    2.492401
## 1548     August/2017 Aug 2017 2017-08-01             8    2.663793
## 1549     August/2017 Aug 2017 2017-08-01             8    1.734982
## 1550     August/2017 Aug 2017 2017-08-01             8    2.792763
## 1551     August/2017 Aug 2017 2017-08-01             8    1.893701
## 1552     August/2017 Aug 2017 2017-08-01             8    1.894737
## 1553     August/2017 Aug 2017 2017-08-01             8    2.673973
## 1554     August/2017 Aug 2017 2017-08-01             8    2.924342
## 1555     August/2017 Aug 2017 2017-08-01             8    1.699659
## 1556     August/2017 Aug 2017 2017-08-01             8    2.622074
## 1557     August/2017 Aug 2017 2017-08-01             8    2.720430
## 1558     August/2017 Aug 2017 2017-08-01             8    2.588972
## 1559     August/2017 Aug 2017 2017-08-01             8    2.796667
## 1560     August/2017 Aug 2017 2017-08-01             8    1.757679
## 1561     August/2017 Aug 2017 2017-08-01             8    2.766871
## 1562     August/2017 Aug 2017 2017-08-01             8    1.866412
## 1563     August/2017 Aug 2017 2017-08-01             8    1.715517
## 1564     August/2017 Aug 2017 2017-08-01             8    1.858369
## 1565     August/2017 Aug 2017 2017-08-01             8    1.750000
## 1566     August/2017 Aug 2017 2017-08-01             8    1.690196
## 1567     August/2017 Aug 2017 2017-08-01             8    1.937888
## 1568     August/2017 Aug 2017 2017-08-01             8    2.814394
## 1569     August/2017 Aug 2017 2017-08-01             8    1.704380
## 1570     August/2017 Aug 2017 2017-08-01             8    2.749129
## 1571     August/2017 Aug 2017 2017-08-01             8    2.271605
## 1572     August/2017 Aug 2017 2017-08-01             8    1.824561
## 1573     August/2017 Aug 2017 2017-08-01             8    2.737542
## 1574     August/2017 Aug 2017 2017-08-01             8    2.444744
## 1575     August/2017 Aug 2017 2017-08-01             8    2.763736
## 1576     August/2017 Aug 2017 2017-08-01             8    2.674699
## 1577     August/2017 Aug 2017 2017-08-01             8    2.968858
## 1578     August/2017 Aug 2017 2017-08-01             8    2.748485
## 1579     August/2017 Aug 2017 2017-08-01             8    2.770308
## 1580     August/2017 Aug 2017 2017-08-01             8    2.707006
## 1581     August/2017 Aug 2017 2017-08-01             8    2.649547
## 1582     August/2017 Aug 2017 2017-08-01             8    2.541219
## 1583     August/2017 Aug 2017 2017-08-01             8    2.776536
## 1584     August/2017 Aug 2017 2017-08-01             8    3.048860
## 1585     August/2017 Aug 2017 2017-08-01             8    2.679310
## 1586     August/2017 Aug 2017 2017-08-01             8    1.787149
## 1587     August/2017 Aug 2017 2017-08-01             8    2.806584
## 1588     August/2017 Aug 2017 2017-08-01             8    1.778656
## 1589     August/2017 Aug 2017 2017-08-01             8    2.601852
## 1590     August/2017 Aug 2017 2017-08-01             8    2.741818
## 1591     August/2017 Aug 2017 2017-08-01             8    2.839879
## 1592     August/2017 Aug 2017 2017-08-01             8    2.660000
## 1593     August/2017 Aug 2017 2017-08-01             8    1.854839
## 1594     August/2017 Aug 2017 2017-08-01             8    2.831715
## 1595     August/2017 Aug 2017 2017-08-01             8    2.596306
## 1596     August/2017 Aug 2017 2017-08-01             8    2.702703
## 1597     August/2017 Aug 2017 2017-08-01             8    2.647841
## 1598     August/2017 Aug 2017 2017-08-01             8    2.663690
## 1599     August/2017 Aug 2017 2017-08-01             8    2.664516
## 1600     August/2017 Aug 2017 2017-08-01             8    2.779070
## 1601     August/2017 Aug 2017 2017-08-01             8    2.696078
## 1602     August/2017 Aug 2017 2017-08-01             8    2.650273
## 1603     August/2017 Aug 2017 2017-08-01             8    2.850365
## 1604     August/2017 Aug 2017 2017-08-01             8    2.766551
## 1605     August/2017 Aug 2017 2017-08-01             8    2.779605
## 1606     August/2017 Aug 2017 2017-08-01             8    2.678571
## 1607     August/2017 Aug 2017 2017-08-01             8    2.660057
## 1608     August/2017 Aug 2017 2017-08-01             8    2.612069
## 1609     August/2017 Aug 2017 2017-08-01             8    1.834586
## 1610     August/2017 Aug 2017 2017-08-01             8    2.644699
## 1611     August/2017 Aug 2017 2017-08-01             8    1.775801
## 1612     August/2017 Aug 2017 2017-08-01             8    2.546980
## 1613     August/2017 Aug 2017 2017-08-01             8    2.731988
## 1614     August/2017 Aug 2017 2017-08-01             8    2.645963
## 1615     August/2017 Aug 2017 2017-08-01             8    2.630573
## 1616     August/2017 Aug 2017 2017-08-01             8    2.724359
## 1617     August/2017 Aug 2017 2017-08-01             8    2.553719
## 1618     August/2017 Aug 2017 2017-08-01             8    2.604294
## 1619     August/2017 Aug 2017 2017-08-01             8    2.179577
## 1620     August/2017 Aug 2017 2017-08-01             8    2.603878
## 1621     August/2017 Aug 2017 2017-08-01             8    2.711806
## 1622     August/2017 Aug 2017 2017-08-01             8    2.567485
## 1623     August/2017 Aug 2017 2017-08-01             8    2.787986
## 1624     August/2017 Aug 2017 2017-08-01             8    2.737160
## 1625     August/2017 Aug 2017 2017-08-01             8    2.675758
## 1626     August/2017 Aug 2017 2017-08-01             8    2.716216
## 1627     August/2017 Aug 2017 2017-08-01             8    2.728188
## 1628     August/2017 Aug 2017 2017-08-01             8    2.126761
## 1629     August/2017 Aug 2017 2017-08-01             8    2.223301
## 1630     August/2017 Aug 2017 2017-08-01             8    2.813291
## 1631     August/2017 Aug 2017 2017-08-01             8    2.584046
## 1632     August/2017 Aug 2017 2017-08-01             8          NA
## 1633     August/2017 Aug 2017 2017-08-01             8    2.030189
## 1634     August/2017 Aug 2017 2017-08-01             8    1.725275
## 1635     August/2017 Aug 2017 2017-08-01             8    2.812500
## 1636     August/2017 Aug 2017 2017-08-01             8    2.676101
## 1637     August/2017 Aug 2017 2017-08-01             8    2.027875
## 1638     August/2017 Aug 2017 2017-08-01             8    1.934483
## 1639     August/2017 Aug 2017 2017-08-01             8    2.828383
## 1640     August/2017 Aug 2017 2017-08-01             8    1.892000
## 1641     August/2017 Aug 2017 2017-08-01             8    2.119691
## 1642     August/2017 Aug 2017 2017-08-01             8    2.715762
## 1643     August/2017 Aug 2017 2017-08-01             8    2.151125
## 1644     August/2017 Aug 2017 2017-08-01             8    2.755700
## 1645     August/2017 Aug 2017 2017-08-01             8    1.939623
## 1646     August/2017 Aug 2017 2017-08-01             8    2.582418
## 1647     August/2017 Aug 2017 2017-08-01             8    2.879870
## 1648     August/2017 Aug 2017 2017-08-01             8    2.114907
## 1649     August/2017 Aug 2017 2017-08-01             8    2.841317
## 1650     August/2017 Aug 2017 2017-08-01             8    2.755486
## 1651     August/2017 Aug 2017 2017-08-01             8    1.880952
## 1652     August/2017 Aug 2017 2017-08-01             8    2.879880
## 1653     August/2017 Aug 2017 2017-08-01             8    2.413174
## 1654     August/2017 Aug 2017 2017-08-01             8    1.814961
## 1655     August/2017 Aug 2017 2017-08-01             8    2.527132
## 1656     August/2017 Aug 2017 2017-08-01             8    2.091667
## 1657     August/2017 Aug 2017 2017-08-01             8    1.727915
## 1658     August/2017 Aug 2017 2017-08-01             8    1.966667
## 1659     August/2017 Aug 2017 2017-08-01             8    2.144231
## 1660     August/2017 Aug 2017 2017-08-01             8    2.694915
## 1661     August/2017 Aug 2017 2017-08-01             8    2.198758
## 1662     August/2017 Aug 2017 2017-08-01             8    2.854305
## 1663     August/2017 Aug 2017 2017-08-01             8    2.735294
## 1664     August/2017 Aug 2017 2017-08-01             8    2.624138
## 1665     August/2017 Aug 2017 2017-08-01             8    2.714286
## 1666     August/2017 Aug 2017 2017-08-01             8    2.714744
## 1667     August/2017 Aug 2017 2017-08-01             8    1.986301
## 1668     August/2017 Aug 2017 2017-08-01             8    1.816327
## 1669     August/2017 Aug 2017 2017-08-01             8    2.668675
## 1670     August/2017 Aug 2017 2017-08-01             8    1.956989
## 1671     August/2017 Aug 2017 2017-08-01             8    1.694737
## 1672     August/2017 Aug 2017 2017-08-01             8    1.793358
## 1673     August/2017 Aug 2017 2017-08-01             8          NA
## 1674     August/2017 Aug 2017 2017-08-01             8    1.826389
## 1675     August/2017 Aug 2017 2017-08-01             8    2.684015
## 1676     August/2017 Aug 2017 2017-08-01             8    1.978571
## 1677     August/2017 Aug 2017 2017-08-01             8    2.307971
## 1678     August/2017 Aug 2017 2017-08-01             8    2.292776
## 1679     August/2017 Aug 2017 2017-08-01             8    1.937269
## 1680     August/2017 Aug 2017 2017-08-01             8    2.603960
## 1681     August/2017 Aug 2017 2017-08-01             8    1.795380
## 1682     August/2017 Aug 2017 2017-08-01             8    2.811912
## 1683     August/2017 Aug 2017 2017-08-01             8    2.429134
## 1684     August/2017 Aug 2017 2017-08-01             8    2.193277
## 1685     August/2017 Aug 2017 2017-08-01             8    2.868852
## 1686     August/2017 Aug 2017 2017-08-01             8    2.750760
## 1687     August/2017 Aug 2017 2017-08-01             8    1.785256
## 1688     August/2017 Aug 2017 2017-08-01             8    1.754098
## 1689     August/2017 Aug 2017 2017-08-01             8    1.721190
## 1690     August/2017 Aug 2017 2017-08-01             8    2.641104
## 1691     August/2017 Aug 2017 2017-08-01             8    2.853125
## 1692     August/2017 Aug 2017 2017-08-01             8    2.853147
## 1693     August/2017 Aug 2017 2017-08-01             8    2.730104
## 1694     August/2017 Aug 2017 2017-08-01             8    1.843373
## 1695     August/2017 Aug 2017 2017-08-01             8    2.753571
## 1696     August/2017 Aug 2017 2017-08-01             8    2.675393
## 1697     August/2017 Aug 2017 2017-08-01             8    2.685792
## 1698     August/2017 Aug 2017 2017-08-01             8    2.799242
## 1699     August/2017 Aug 2017 2017-08-01             8    1.964539
## 1700     August/2017 Aug 2017 2017-08-01             8    2.189474
## 1701     August/2017 Aug 2017 2017-08-01             8    2.787356
## 1702     August/2017 Aug 2017 2017-08-01             8    1.916350
## 1703     August/2017 Aug 2017 2017-08-01             8    2.643243
## 1704     August/2017 Aug 2017 2017-08-01             8    2.837838
## 1705     August/2017 Aug 2017 2017-08-01             8    2.726667
## 1706     August/2017 Aug 2017 2017-08-01             8    2.729537
## 1707     August/2017 Aug 2017 2017-08-01             8    2.738971
## 1708     August/2017 Aug 2017 2017-08-01             8    2.173516
## 1709     August/2017 Aug 2017 2017-08-01             8    2.854545
## 1710     August/2017 Aug 2017 2017-08-01             8    2.732938
## 1711     August/2017 Aug 2017 2017-08-01             8    1.903346
## 1712     August/2017 Aug 2017 2017-08-01             8    2.957295
## 1713     August/2017 Aug 2017 2017-08-01             8    2.704762
## 1714     August/2017 Aug 2017 2017-08-01             8    2.777027
## 1715     August/2017 Aug 2017 2017-08-01             8    2.733333
## 1716     August/2017 Aug 2017 2017-08-01             8    2.690544
## 1717     August/2017 Aug 2017 2017-08-01             8    2.778502
## 1718     August/2017 Aug 2017 2017-08-01             8    1.966667
## 1719     August/2017 Aug 2017 2017-08-01             8    2.126712
## 1720     August/2017 Aug 2017 2017-08-01             8    2.886792
## 1721     August/2017 Aug 2017 2017-08-01             8    2.815331
## 1722     August/2017 Aug 2017 2017-08-01             8    2.015873
## 1723     August/2017 Aug 2017 2017-08-01             8    2.612676
## 1724     August/2017 Aug 2017 2017-08-01             8    2.824926
## 1725     August/2017 Aug 2017 2017-08-01             8    2.118577
## 1726     August/2017 Aug 2017 2017-08-01             8    2.850174
## 1727     August/2017 Aug 2017 2017-08-01             8    2.775510
## 1728     August/2017 Aug 2017 2017-08-01             8    2.720497
## 1729     August/2017 Aug 2017 2017-08-01             8    1.761905
## 1730     August/2017 Aug 2017 2017-08-01             8    1.649123
## 1731     August/2017 Aug 2017 2017-08-01             8    2.883212
## 1732     August/2017 Aug 2017 2017-08-01             8    2.764479
## 1733     August/2017 Aug 2017 2017-08-01             8    2.559871
## 1734     August/2017 Aug 2017 2017-08-01             8    2.209125
## 1735     August/2017 Aug 2017 2017-08-01             8    1.820225
## 1736     August/2017 Aug 2017 2017-08-01             8    1.824427
## 1737     August/2017 Aug 2017 2017-08-01             8    2.317647
## 1738     August/2017 Aug 2017 2017-08-01             8    1.792157
## 1739     August/2017 Aug 2017 2017-08-01             8    1.811715
## 1740     August/2017 Aug 2017 2017-08-01             8    1.832685
## 1741     August/2017 Aug 2017 2017-08-01             8    2.708197
## 1742     August/2017 Aug 2017 2017-08-01             8    1.680556
## 1743  September/2018 Sep 2018 2018-09-01             9    2.779783
## 1744  September/2018 Sep 2018 2018-09-01             9    2.916955
## 1745  September/2018 Sep 2018 2018-09-01             9    2.907285
## 1746  September/2018 Sep 2018 2018-09-01             9    2.664935
## 1747  September/2018 Sep 2018 2018-09-01             9    2.666667
## 1748  September/2018 Sep 2018 2018-09-01             9    2.770677
## 1749  September/2018 Sep 2018 2018-09-01             9    2.859873
## 1750  September/2018 Sep 2018 2018-09-01             9    2.760606
## 1751  September/2018 Sep 2018 2018-09-01             9    2.747059
## 1752  September/2018 Sep 2018 2018-09-01             9    2.849315
## 1753  September/2018 Sep 2018 2018-09-01             9    2.735385
## 1754  September/2018 Sep 2018 2018-09-01             9    2.740845
## 1755  September/2018 Sep 2018 2018-09-01             9    2.857143
## 1756  September/2018 Sep 2018 2018-09-01             9    2.813754
## 1757  September/2018 Sep 2018 2018-09-01             9    2.894410
## 1758  September/2018 Sep 2018 2018-09-01             9    2.691429
## 1759  September/2018 Sep 2018 2018-09-01             9    1.728571
## 1760  September/2018 Sep 2018 2018-09-01             9    2.874150
## 1761  September/2018 Sep 2018 2018-09-01             9    2.828947
## 1762  September/2018 Sep 2018 2018-09-01             9    2.911864
## 1763  September/2018 Sep 2018 2018-09-01             9    2.758503
## 1764  September/2018 Sep 2018 2018-09-01             9    2.622150
## 1765  September/2018 Sep 2018 2018-09-01             9    2.650307
## 1766  September/2018 Sep 2018 2018-09-01             9    2.881533
## 1767  September/2018 Sep 2018 2018-09-01             9    2.668588
## 1768  September/2018 Sep 2018 2018-09-01             9    2.717868
## 1769  September/2018 Sep 2018 2018-09-01             9    2.892593
## 1770  September/2018 Sep 2018 2018-09-01             9    2.855219
## 1771  September/2018 Sep 2018 2018-09-01             9    2.723183
## 1772  September/2018 Sep 2018 2018-09-01             9    2.594595
## 1773  September/2018 Sep 2018 2018-09-01             9    2.846386
## 1774  September/2018 Sep 2018 2018-09-01             9    2.630058
## 1775  September/2018 Sep 2018 2018-09-01             9    2.596257
## 1776  September/2018 Sep 2018 2018-09-01             9    2.989247
## 1777  September/2018 Sep 2018 2018-09-01             9    2.694444
## 1778  September/2018 Sep 2018 2018-09-01             9    2.841424
## 1779  September/2018 Sep 2018 2018-09-01             9    2.790769
## 1780  September/2018 Sep 2018 2018-09-01             9    2.822581
## 1781  September/2018 Sep 2018 2018-09-01             9    2.677054
## 1782  September/2018 Sep 2018 2018-09-01             9    2.785978
## 1783  September/2018 Sep 2018 2018-09-01             9    2.743590
## 1784  September/2018 Sep 2018 2018-09-01             9    2.725543
## 1785  September/2018 Sep 2018 2018-09-01             9    2.766129
## 1786  September/2018 Sep 2018 2018-09-01             9    2.905797
## 1787  September/2018 Sep 2018 2018-09-01             9    2.741611
## 1788  September/2018 Sep 2018 2018-09-01             9    2.778098
## 1789  September/2018 Sep 2018 2018-09-01             9    2.849462
## 1790  September/2018 Sep 2018 2018-09-01             9    2.698305
## 1791  September/2018 Sep 2018 2018-09-01             9    2.767442
## 1792  September/2018 Sep 2018 2018-09-01             9    2.797059
## 1793  September/2018 Sep 2018 2018-09-01             9    2.921136
## 1794  September/2018 Sep 2018 2018-09-01             9    2.928144
## 1795  September/2018 Sep 2018 2018-09-01             9    2.825083
## 1796  September/2018 Sep 2018 2018-09-01             9    2.761194
## 1797  September/2018 Sep 2018 2018-09-01             9    2.678063
## 1798  September/2018 Sep 2018 2018-09-01             9    1.760456
## 1799  September/2018 Sep 2018 2018-09-01             9    2.649390
## 1800  September/2018 Sep 2018 2018-09-01             9    2.679412
## 1801  September/2018 Sep 2018 2018-09-01             9    2.782918
## 1802  September/2018 Sep 2018 2018-09-01             9    2.910299
## 1803  September/2018 Sep 2018 2018-09-01             9    1.719844
## 1804  September/2018 Sep 2018 2018-09-01             9    2.739726
## 1805  September/2018 Sep 2018 2018-09-01             9    2.593220
## 1806  September/2018 Sep 2018 2018-09-01             9    2.867797
## 1807  September/2018 Sep 2018 2018-09-01             9    2.796774
## 1808  September/2018 Sep 2018 2018-09-01             9    2.655172
## 1809  September/2018 Sep 2018 2018-09-01             9    2.822695
## 1810  September/2018 Sep 2018 2018-09-01             9    2.598007
## 1811  September/2018 Sep 2018 2018-09-01             9    1.747573
## 1812  September/2018 Sep 2018 2018-09-01             9    1.921642
## 1813  September/2018 Sep 2018 2018-09-01             9    2.041176
## 1814  September/2018 Sep 2018 2018-09-01             9    2.102167
## 1815  September/2018 Sep 2018 2018-09-01             9    2.576316
## 1816  September/2018 Sep 2018 2018-09-01             9    1.747036
## 1817  September/2018 Sep 2018 2018-09-01             9    1.773810
## 1818  September/2018 Sep 2018 2018-09-01             9    2.754448
## 1819  September/2018 Sep 2018 2018-09-01             9    1.672662
## 1820  September/2018 Sep 2018 2018-09-01             9    1.589286
## 1821  September/2018 Sep 2018 2018-09-01             9    2.717857
## 1822  September/2018 Sep 2018 2018-09-01             9    1.875969
## 1823  September/2018 Sep 2018 2018-09-01             9    2.715100
## 1824  September/2018 Sep 2018 2018-09-01             9    2.065476
## 1825  September/2018 Sep 2018 2018-09-01             9    2.449367
## 1826  September/2018 Sep 2018 2018-09-01             9    2.730159
## 1827  September/2018 Sep 2018 2018-09-01             9    2.785016
## 1828  September/2018 Sep 2018 2018-09-01             9    1.644269
## 1829  September/2018 Sep 2018 2018-09-01             9    1.783439
## 1830  September/2018 Sep 2018 2018-09-01             9    2.601719
## 1831  September/2018 Sep 2018 2018-09-01             9    1.863158
## 1832  September/2018 Sep 2018 2018-09-01             9    2.711111
## 1833  September/2018 Sep 2018 2018-09-01             9    2.677019
## 1834  September/2018 Sep 2018 2018-09-01             9    1.661654
## 1835  September/2018 Sep 2018 2018-09-01             9    1.753799
## 1836  September/2018 Sep 2018 2018-09-01             9    2.007380
## 1837  September/2018 Sep 2018 2018-09-01             9    2.816901
## 1838  September/2018 Sep 2018 2018-09-01             9    1.690554
## 1839  September/2018 Sep 2018 2018-09-01             9    2.732852
## 1840  September/2018 Sep 2018 2018-09-01             9    2.520408
## 1841  September/2018 Sep 2018 2018-09-01             9    2.493197
## 1842  September/2018 Sep 2018 2018-09-01             9    1.682848
## 1843  September/2018 Sep 2018 2018-09-01             9    1.722846
## 1844  September/2018 Sep 2018 2018-09-01             9    1.900901
## 1845  September/2018 Sep 2018 2018-09-01             9    1.710801
## 1846  September/2018 Sep 2018 2018-09-01             9    1.686508
## 1847  September/2018 Sep 2018 2018-09-01             9    2.661972
## 1848  September/2018 Sep 2018 2018-09-01             9    1.649254
## 1849  September/2018 Sep 2018 2018-09-01             9    2.641566
## 1850  September/2018 Sep 2018 2018-09-01             9    2.650794
## 1851  September/2018 Sep 2018 2018-09-01             9    2.543956
## 1852  September/2018 Sep 2018 2018-09-01             9    1.915663
## 1853  September/2018 Sep 2018 2018-09-01             9    2.758730
## 1854  September/2018 Sep 2018 2018-09-01             9    2.750000
## 1855  September/2018 Sep 2018 2018-09-01             9    2.735202
## 1856  September/2018 Sep 2018 2018-09-01             9    2.850610
## 1857  September/2018 Sep 2018 2018-09-01             9    1.585106
## 1858  September/2018 Sep 2018 2018-09-01             9    1.985294
## 1859  September/2018 Sep 2018 2018-09-01             9    2.567901
## 1860  September/2018 Sep 2018 2018-09-01             9    2.152263
## 1861  September/2018 Sep 2018 2018-09-01             9    1.755776
## 1862  September/2018 Sep 2018 2018-09-01             9    2.828897
## 1863  September/2018 Sep 2018 2018-09-01             9    2.675362
## 1864  September/2018 Sep 2018 2018-09-01             9    1.859873
## 1865  September/2018 Sep 2018 2018-09-01             9    2.968652
## 1866  September/2018 Sep 2018 2018-09-01             9    1.879479
## 1867  September/2018 Sep 2018 2018-09-01             9    2.858182
## 1868  September/2018 Sep 2018 2018-09-01             9    1.841060
## 1869  September/2018 Sep 2018 2018-09-01             9    2.633028
## 1870  September/2018 Sep 2018 2018-09-01             9    1.886364
## 1871  September/2018 Sep 2018 2018-09-01             9    2.903780
## 1872  September/2018 Sep 2018 2018-09-01             9    1.859107
## 1873  September/2018 Sep 2018 2018-09-01             9    1.850394
## 1874  September/2018 Sep 2018 2018-09-01             9    1.746939
## 1875  September/2018 Sep 2018 2018-09-01             9    2.778116
## 1876  September/2018 Sep 2018 2018-09-01             9    2.696486
## 1877  September/2018 Sep 2018 2018-09-01             9    2.684058
## 1878  September/2018 Sep 2018 2018-09-01             9    2.698361
## 1879  September/2018 Sep 2018 2018-09-01             9    2.884758
## 1880  September/2018 Sep 2018 2018-09-01             9    2.874598
## 1881  September/2018 Sep 2018 2018-09-01             9    2.907348
## 1882  September/2018 Sep 2018 2018-09-01             9    1.890295
## 1883  September/2018 Sep 2018 2018-09-01             9    2.705502
## 1884  September/2018 Sep 2018 2018-09-01             9    2.693333
## 1885  September/2018 Sep 2018 2018-09-01             9    3.016026
## 1886  September/2018 Sep 2018 2018-09-01             9    2.985380
## 1887  September/2018 Sep 2018 2018-09-01             9    2.779935
## 1888  September/2018 Sep 2018 2018-09-01             9    2.720548
## 1889  September/2018 Sep 2018 2018-09-01             9    2.795918
## 1890  September/2018 Sep 2018 2018-09-01             9    2.861963
## 1891  September/2018 Sep 2018 2018-09-01             9    2.677914
## 1892  September/2018 Sep 2018 2018-09-01             9    2.827362
## 1893  September/2018 Sep 2018 2018-09-01             9    2.766484
## 1894  September/2018 Sep 2018 2018-09-01             9    2.846369
## 1895  September/2018 Sep 2018 2018-09-01             9    2.733333
## 1896  September/2018 Sep 2018 2018-09-01             9    2.852830
## 1897  September/2018 Sep 2018 2018-09-01             9    2.661538
## 1898  September/2018 Sep 2018 2018-09-01             9    2.642857
## 1899  September/2018 Sep 2018 2018-09-01             9    2.758741
## 1900  September/2018 Sep 2018 2018-09-01             9    1.818462
## 1901  September/2018 Sep 2018 2018-09-01             9    2.856631
## 1902  September/2018 Sep 2018 2018-09-01             9    2.774603
## 1903  September/2018 Sep 2018 2018-09-01             9    1.914062
## 1904  September/2018 Sep 2018 2018-09-01             9    2.704787
## 1905  September/2018 Sep 2018 2018-09-01             9    2.769231
## 1906  September/2018 Sep 2018 2018-09-01             9    2.662857
## 1907  September/2018 Sep 2018 2018-09-01             9    2.834320
## 1908  September/2018 Sep 2018 2018-09-01             9    2.691667
## 1909  September/2018 Sep 2018 2018-09-01             9    2.771014
## 1910  September/2018 Sep 2018 2018-09-01             9    2.854489
## 1911  September/2018 Sep 2018 2018-09-01             9    2.696721
## 1912  September/2018 Sep 2018 2018-09-01             9    2.709677
## 1913  September/2018 Sep 2018 2018-09-01             9    2.638298
## 1914  September/2018 Sep 2018 2018-09-01             9    2.763636
## 1915  September/2018 Sep 2018 2018-09-01             9    2.724832
## 1916        May/2019 May 2019 2019-05-01             5    2.651163
## 1917        May/2019 May 2019 2019-05-01             5    2.776536
## 1918        May/2019 May 2019 2019-05-01             5    2.855513
## 1919        May/2019 May 2019 2019-05-01             5    2.715818
## 1920        May/2019 May 2019 2019-05-01             5    2.667674
## 1921        May/2019 May 2019 2019-05-01             5    1.815436
## 1922        May/2019 May 2019 2019-05-01             5    2.648000
## 1923        May/2019 May 2019 2019-05-01             5    2.600733
## 1924        May/2019 May 2019 2019-05-01             5    2.835664
## 1925        May/2019 May 2019 2019-05-01             5    2.448101
## 1926        May/2019 May 2019 2019-05-01             5    2.486111
## 1927        May/2019 May 2019 2019-05-01             5    2.750000
## 1928        May/2019 May 2019 2019-05-01             5    2.619597
## 1929        May/2019 May 2019 2019-05-01             5    2.553371
## 1930        May/2019 May 2019 2019-05-01             5    2.822535
## 1931        May/2019 May 2019 2019-05-01             5    2.493606
## 1932        May/2019 May 2019 2019-05-01             5    2.629944
## 1933        May/2019 May 2019 2019-05-01             5    2.685976
## 1934        May/2019 May 2019 2019-05-01             5    2.584856
## 1935        May/2019 May 2019 2019-05-01             5    1.845361
## 1936        May/2019 May 2019 2019-05-01             5    2.604730
## 1937        May/2019 May 2019 2019-05-01             5    2.997101
## 1938        May/2019 May 2019 2019-05-01             5    2.657895
## 1939        May/2019 May 2019 2019-05-01             5    2.464198
## 1940        May/2019 May 2019 2019-05-01             5    3.057047
## 1941        May/2019 May 2019 2019-05-01             5    2.906137
## 1942        May/2019 May 2019 2019-05-01             5    2.917582
## 1943        May/2019 May 2019 2019-05-01             5    2.486553
## 1944        May/2019 May 2019 2019-05-01             5    2.647230
## 1945        May/2019 May 2019 2019-05-01             5    2.901818
## 1946        May/2019 May 2019 2019-05-01             5    2.794788
## 1947        May/2019 May 2019 2019-05-01             5    2.752412
## 1948        May/2019 May 2019 2019-05-01             5    2.820652
## 1949        May/2019 May 2019 2019-05-01             5    2.730871
## 1950        May/2019 May 2019 2019-05-01             5    2.448276
## 1951        May/2019 May 2019 2019-05-01             5    2.723183
## 1952        May/2019 May 2019 2019-05-01             5    2.790378
## 1953        May/2019 May 2019 2019-05-01             5    2.735294
## 1954        May/2019 May 2019 2019-05-01             5    2.842444
## 1955        May/2019 May 2019 2019-05-01             5    2.645902
## 1956        May/2019 May 2019 2019-05-01             5    2.604592
## 1957        May/2019 May 2019 2019-05-01             5    2.622356
## 1958        May/2019 May 2019 2019-05-01             5    2.835866
## 1959        May/2019 May 2019 2019-05-01             5    2.671470
## 1960        May/2019 May 2019 2019-05-01             5    2.533923
## 1961        May/2019 May 2019 2019-05-01             5    2.844595
## 1962        May/2019 May 2019 2019-05-01             5    3.067449
## 1963        May/2019 May 2019 2019-05-01             5    2.792507
## 1964        May/2019 May 2019 2019-05-01             5    2.540625
## 1965        May/2019 May 2019 2019-05-01             5    1.652720
## 1966        May/2019 May 2019 2019-05-01             5    2.652459
## 1967        May/2019 May 2019 2019-05-01             5    1.830040
## 1968        May/2019 May 2019 2019-05-01             5    2.468750
## 1969        May/2019 May 2019 2019-05-01             5    2.720149
## 1970        May/2019 May 2019 2019-05-01             5    2.775920
## 1971        May/2019 May 2019 2019-05-01             5    1.655870
## 1972        May/2019 May 2019 2019-05-01             5    1.907336
## 1973        May/2019 May 2019 2019-05-01             5    2.022222
## 1974        May/2019 May 2019 2019-05-01             5    2.031008
## 1975        May/2019 May 2019 2019-05-01             5    1.539855
## 1976        May/2019 May 2019 2019-05-01             5    1.745833
## 1977        May/2019 May 2019 2019-05-01             5    2.562500
## 1978        May/2019 May 2019 2019-05-01             5    1.739669
## 1979        May/2019 May 2019 2019-05-01             5    1.658730
## 1980        May/2019 May 2019 2019-05-01             5    2.694158
## 1981        May/2019 May 2019 2019-05-01             5    2.215152
## 1982        May/2019 May 2019 2019-05-01             5    1.619377
## 1983        May/2019 May 2019 2019-05-01             5    1.746094
## 1984        May/2019 May 2019 2019-05-01             5    2.084942
## 1985        May/2019 May 2019 2019-05-01             5    1.837302
## 1986        May/2019 May 2019 2019-05-01             5    2.416357
## 1987        May/2019 May 2019 2019-05-01             5    2.556757
## 1988        May/2019 May 2019 2019-05-01             5    2.714777
## 1989        May/2019 May 2019 2019-05-01             5    2.670330
## 1990        May/2019 May 2019 2019-05-01             5    1.764516
## 1991        May/2019 May 2019 2019-05-01             5    1.993691
## 1992        May/2019 May 2019 2019-05-01             5    2.227119
## 1993        May/2019 May 2019 2019-05-01             5    1.652582
## 1994        May/2019 May 2019 2019-05-01             5    1.768061
## 1995        May/2019 May 2019 2019-05-01             5    1.947692
## 1996        May/2019 May 2019 2019-05-01             5    2.569182
## 1997        May/2019 May 2019 2019-05-01             5    1.842105
## 1998        May/2019 May 2019 2019-05-01             5    1.766187
## 1999        May/2019 May 2019 2019-05-01             5    1.767361
## 2000        May/2019 May 2019 2019-05-01             5    2.696697
## 2001        May/2019 May 2019 2019-05-01             5    2.734694
## 2002        May/2019 May 2019 2019-05-01             5    2.510714
## 2003        May/2019 May 2019 2019-05-01             5    2.616487
## 2004        May/2019 May 2019 2019-05-01             5    1.770751
## 2005        May/2019 May 2019 2019-05-01             5    2.589342
## 2006        May/2019 May 2019 2019-05-01             5    2.817276
## 2007        May/2019 May 2019 2019-05-01             5    1.817544
## 2008        May/2019 May 2019 2019-05-01             5    2.625352
## 2009        May/2019 May 2019 2019-05-01             5    1.575251
## 2010        May/2019 May 2019 2019-05-01             5    1.775100
## 2011        May/2019 May 2019 2019-05-01             5    2.123404
## 2012        May/2019 May 2019 2019-05-01             5    2.258865
## 2013        May/2019 May 2019 2019-05-01             5    2.733564
## 2014        May/2019 May 2019 2019-05-01             5    1.729452
## 2015        May/2019 May 2019 2019-05-01             5    2.664577
## 2016        May/2019 May 2019 2019-05-01             5    1.719368
## 2017        May/2019 May 2019 2019-05-01             5    1.897233
## 2018        May/2019 May 2019 2019-05-01             5    1.836134
## 2019        May/2019 May 2019 2019-05-01             5    2.539216
## 2020        May/2019 May 2019 2019-05-01             5    1.704918
## 2021        May/2019 May 2019 2019-05-01             5    1.786164
## 2022        May/2019 May 2019 2019-05-01             5    1.743056
## 2023        May/2019 May 2019 2019-05-01             5    1.734694
## 2024        May/2019 May 2019 2019-05-01             5    2.700348
## 2025        May/2019 May 2019 2019-05-01             5    1.843284
## 2026        May/2019 May 2019 2019-05-01             5    1.691729
## 2027        May/2019 May 2019 2019-05-01             5    1.908088
## 2028        May/2019 May 2019 2019-05-01             5    1.959839
## 2029        May/2019 May 2019 2019-05-01             5    2.346570
## 2030        May/2019 May 2019 2019-05-01             5    2.617647
## 2031        May/2019 May 2019 2019-05-01             5    2.721014
## 2032        May/2019 May 2019 2019-05-01             5    1.539062
## 2033        May/2019 May 2019 2019-05-01             5    1.657588
## 2034        May/2019 May 2019 2019-05-01             5    2.725753
## 2035        May/2019 May 2019 2019-05-01             5    1.800699
## 2036        May/2019 May 2019 2019-05-01             5    2.695238
## 2037        May/2019 May 2019 2019-05-01             5    2.003831
## 2038        May/2019 May 2019 2019-05-01             5    2.534722
## 2039        May/2019 May 2019 2019-05-01             5    1.702786
## 2040        May/2019 May 2019 2019-05-01             5    1.717842
## 2041        May/2019 May 2019 2019-05-01             5    1.825658
## 2042        May/2019 May 2019 2019-05-01             5    2.661342
## 2043        May/2019 May 2019 2019-05-01             5    1.602076
## 2044        May/2019 May 2019 2019-05-01             5    2.080000
## 2045        May/2019 May 2019 2019-05-01             5    1.861224
## 2046        May/2019 May 2019 2019-05-01             5    1.776000
## 2047        May/2019 May 2019 2019-05-01             5    1.602151
## 2048        May/2019 May 2019 2019-05-01             5    1.952569
## 2049        May/2019 May 2019 2019-05-01             5    1.690083
## 2050        May/2019 May 2019 2019-05-01             5    2.688000
## 2051        May/2019 May 2019 2019-05-01             5    1.800738
## 2052        May/2019 May 2019 2019-05-01             5    1.723549
## 2053        May/2019 May 2019 2019-05-01             5    2.762987
## 2054        May/2019 May 2019 2019-05-01             5    1.674074
## 2055        May/2019 May 2019 2019-05-01             5    1.728571
## 2056        May/2019 May 2019 2019-05-01             5    2.684411
## 2057        May/2019 May 2019 2019-05-01             5    1.852941
## 2058        May/2019 May 2019 2019-05-01             5    2.029091
## 2059        May/2019 May 2019 2019-05-01             5    2.619048
## 2060        May/2019 May 2019 2019-05-01             5    2.799308
## 2061        May/2019 May 2019 2019-05-01             5    2.571429
## 2062        May/2019 May 2019 2019-05-01             5    3.061889
## 2063        May/2019 May 2019 2019-05-01             5    2.714286
## 2064        May/2019 May 2019 2019-05-01             5    2.833333
## 2065        May/2019 May 2019 2019-05-01             5    2.656168
## 2066        May/2019 May 2019 2019-05-01             5    2.799331
## 2067        May/2019 May 2019 2019-05-01             5    1.897436
## 2068        May/2019 May 2019 2019-05-01             5    2.376623
## 2069        May/2019 May 2019 2019-05-01             5    1.976190
## 2070        May/2019 May 2019 2019-05-01             5    2.592593
## 2071        May/2019 May 2019 2019-05-01             5    2.791086
## 2072        May/2019 May 2019 2019-05-01             5    2.908046
## 2073        May/2019 May 2019 2019-05-01             5    2.927393
## 2074        May/2019 May 2019 2019-05-01             5    2.545455
## 2075        May/2019 May 2019 2019-05-01             5    2.944853
## 2076        May/2019 May 2019 2019-05-01             5    1.835206
## 2077        May/2019 May 2019 2019-05-01             5    2.533333
## 2078        May/2019 May 2019 2019-05-01             5    1.719697
## 2079        May/2019 May 2019 2019-05-01             5    2.664537
## 2080        May/2019 May 2019 2019-05-01             5    2.755556
## 2081        May/2019 May 2019 2019-05-01             5    2.643454
## 2082        May/2019 May 2019 2019-05-01             5    2.781609
## 2083        May/2019 May 2019 2019-05-01             5    2.900344
## 2084        May/2019 May 2019 2019-05-01             5    2.674772
## 2085        May/2019 May 2019 2019-05-01             5    2.905488
## 2086        May/2019 May 2019 2019-05-01             5    2.278873
## 2087        May/2019 May 2019 2019-05-01             5    2.715625
## 2088        May/2019 May 2019 2019-05-01             5    2.248815
## 2089        May/2019 May 2019 2019-05-01             5    2.785507
## 2090        May/2019 May 2019 2019-05-01             5    1.987437
## 2091        May/2019 May 2019 2019-05-01             5    2.808081
## 2092        May/2019 May 2019 2019-05-01             5    3.023166
## 2093        May/2019 May 2019 2019-05-01             5    2.386792
## 2094        May/2019 May 2019 2019-05-01             5    2.503704
## 2095        May/2019 May 2019 2019-05-01             5    2.725857
## 2096        May/2019 May 2019 2019-05-01             5    2.223022
## 2097        May/2019 May 2019 2019-05-01             5    2.910112
## 2098        May/2019 May 2019 2019-05-01             5    2.667702
## 2099        May/2019 May 2019 2019-05-01             5    2.669841
## 2100        May/2019 May 2019 2019-05-01             5    2.733333
## 2101        May/2019 May 2019 2019-05-01             5    2.583562
## 2102        May/2019 May 2019 2019-05-01             5    2.717391
## 2103        May/2019 May 2019 2019-05-01             5    1.977273
## 2104        May/2019 May 2019 2019-05-01             5    2.701863
## 2105        May/2019 May 2019 2019-05-01             5    2.862974
## 2106        May/2019 May 2019 2019-05-01             5    1.875000
## 2107        May/2019 May 2019 2019-05-01             5    2.804487
## 2108        May/2019 May 2019 2019-05-01             5    1.749117
## 2109        May/2019 May 2019 2019-05-01             5    2.770227
## 2110        May/2019 May 2019 2019-05-01             5    2.650704
## 2111        May/2019 May 2019 2019-05-01             5    2.725000
## 2112        May/2019 May 2019 2019-05-01             5    2.619048
## 2113        May/2019 May 2019 2019-05-01             5    2.578073
## 2114        May/2019 May 2019 2019-05-01             5    3.015385
## 2115        May/2019 May 2019 2019-05-01             5    2.693291
## 2116        May/2019 May 2019 2019-05-01             5    2.781250
## 2117        May/2019 May 2019 2019-05-01             5    2.544872
## 2118        May/2019 May 2019 2019-05-01             5    2.750000
## 2119        May/2019 May 2019 2019-05-01             5    2.568862
## 2120        May/2019 May 2019 2019-05-01             5    2.623418
## 2121        May/2019 May 2019 2019-05-01             5    2.560224
## 2122        May/2019 May 2019 2019-05-01             5    2.763158
## 2123        May/2019 May 2019 2019-05-01             5    2.762963
## 2124        May/2019 May 2019 2019-05-01             5    2.692308
## 2125        May/2019 May 2019 2019-05-01             5    1.972973
## 2126        May/2019 May 2019 2019-05-01             5    2.726727
## 2127        May/2019 May 2019 2019-05-01             5    2.024390
## 2128        May/2019 May 2019 2019-05-01             5    2.621359
## 2129        May/2019 May 2019 2019-05-01             5    2.830084
## 2130        May/2019 May 2019 2019-05-01             5    2.709459
## 2131        May/2019 May 2019 2019-05-01             5    1.749104
## 2132        May/2019 May 2019 2019-05-01             5    2.859779
## 2133        May/2019 May 2019 2019-05-01             5    2.693548
## 2134        May/2019 May 2019 2019-05-01             5    2.812261
## 2135        May/2019 May 2019 2019-05-01             5    2.683636
## 2136        May/2019 May 2019 2019-05-01             5    1.850000
## 2137        May/2019 May 2019 2019-05-01             5    2.809365
## 2138        May/2019 May 2019 2019-05-01             5    2.688645
## 2139        May/2019 May 2019 2019-05-01             5    2.680782
## 2140        May/2019 May 2019 2019-05-01             5    2.667683
## 2141        May/2019 May 2019 2019-05-01             5    2.685065
## 2142        May/2019 May 2019 2019-05-01             5    1.682493
## 2143        May/2019 May 2019 2019-05-01             5    2.760383
## 2144        May/2019 May 2019 2019-05-01             5    1.617530
## 2145        May/2019 May 2019 2019-05-01             5    1.652997
## 2146        May/2019 May 2019 2019-05-01             5    2.683673
## 2147        May/2019 May 2019 2019-05-01             5    1.797619
## 2148        May/2019 May 2019 2019-05-01             5    2.525568
## 2149        May/2019 May 2019 2019-05-01             5    1.940520
## 2150        May/2019 May 2019 2019-05-01             5    2.604096
## 2151        May/2019 May 2019 2019-05-01             5    1.676190
## 2152        May/2019 May 2019 2019-05-01             5    1.631970
## 2153        May/2019 May 2019 2019-05-01             5    2.660131
## 2154        May/2019 May 2019 2019-05-01             5    2.772727
## 2155        May/2019 May 2019 2019-05-01             5    2.709343
## 2156        May/2019 May 2019 2019-05-01             5    2.651163
## 2157        May/2019 May 2019 2019-05-01             5    2.659701
## 2158        May/2019 May 2019 2019-05-01             5    2.667722
## 2159        May/2019 May 2019 2019-05-01             5    2.649518
## 2160        May/2019 May 2019 2019-05-01             5    1.599349
## 2161        May/2019 May 2019 2019-05-01             5    2.657738
## 2162        May/2019 May 2019 2019-05-01             5    2.720149
## 2163        May/2019 May 2019 2019-05-01             5    1.507937
## 2164        May/2019 May 2019 2019-05-01             5    1.642105
## 2165        May/2019 May 2019 2019-05-01             5    2.482650
## 2166        May/2019 May 2019 2019-05-01             5    2.671975
## 2167        May/2019 May 2019 2019-05-01             5    2.539773
## 2168        May/2019 May 2019 2019-05-01             5    2.757143
## 2169        May/2019 May 2019 2019-05-01             5    1.723735
## 2170        May/2019 May 2019 2019-05-01             5    2.692308
## 2171        May/2019 May 2019 2019-05-01             5    2.796935
## 2172        May/2019 May 2019 2019-05-01             5    1.743119
## 2173        May/2019 May 2019 2019-05-01             5    2.891386
## 2174        May/2019 May 2019 2019-05-01             5    1.800000
## 2175        May/2019 May 2019 2019-05-01             5    2.603675
## 2176        May/2019 May 2019 2019-05-01             5    2.703833
## 2177        May/2019 May 2019 2019-05-01             5    2.573883
## 2178        May/2019 May 2019 2019-05-01             5    1.720280
## 2179        May/2019 May 2019 2019-05-01             5    1.673913
## 2180        May/2019 May 2019 2019-05-01             5    1.918605
## 2181        May/2019 May 2019 2019-05-01             5    2.068841
## 2182        May/2019 May 2019 2019-05-01             5    1.646048
## 2183        May/2019 May 2019 2019-05-01             5    1.692884
## 2184        May/2019 May 2019 2019-05-01             5    2.536517
## 2185        May/2019 May 2019 2019-05-01             5    2.663082
## 2186        May/2019 May 2019 2019-05-01             5    2.060510
## 2187        May/2019 May 2019 2019-05-01             5    2.691358
## 2188        May/2019 May 2019 2019-05-01             5    2.639037
## 2189        May/2019 May 2019 2019-05-01             5    2.652406
## 2190        May/2019 May 2019 2019-05-01             5    2.496753
## 2191        May/2019 May 2019 2019-05-01             5    1.736364
## 2192        May/2019 May 2019 2019-05-01             5    2.668874
## 2193        May/2019 May 2019 2019-05-01             5    1.678030
## 2194        May/2019 May 2019 2019-05-01             5    1.658824
## 2195        May/2019 May 2019 2019-05-01             5    2.816547
## 2196        May/2019 May 2019 2019-05-01             5    2.616000
## 2197        May/2019 May 2019 2019-05-01             5    1.695489
## 2198        May/2019 May 2019 2019-05-01             5    2.637584
## 2199        May/2019 May 2019 2019-05-01             5    2.727273
## 2200        May/2019 May 2019 2019-05-01             5    1.776515
## 2201        May/2019 May 2019 2019-05-01             5    2.769231
## 2202        May/2019 May 2019 2019-05-01             5    1.554054
## 2203        May/2019 May 2019 2019-05-01             5    2.760656
## 2204        May/2019 May 2019 2019-05-01             5    1.776119
## 2205        May/2019 May 2019 2019-05-01             5    1.720000
## 2206        May/2019 May 2019 2019-05-01             5    2.766187
## 2207        May/2019 May 2019 2019-05-01             5    2.787072
## 2208        May/2019 May 2019 2019-05-01             5    2.728814
## 2209        May/2019 May 2019 2019-05-01             5    1.686869
## 2210        May/2019 May 2019 2019-05-01             5    1.826087
## 2211        May/2019 May 2019 2019-05-01             5    2.391489
## 2212        May/2019 May 2019 2019-05-01             5    1.627907
## 2213        May/2019 May 2019 2019-05-01             5    1.774590
## 2214        May/2019 May 2019 2019-05-01             5    2.784553
## 2215        May/2019 May 2019 2019-05-01             5    1.712644
## 2216        May/2019 May 2019 2019-05-01             5    1.676113
## 2217        May/2019 May 2019 2019-05-01             5    2.069231
## 2218        May/2019 May 2019 2019-05-01             5    1.809339
## 2219        May/2019 May 2019 2019-05-01             5    2.693380
## 2220        May/2019 May 2019 2019-05-01             5    1.652015
## 2221        May/2019 May 2019 2019-05-01             5    1.720930
## 2222        May/2019 May 2019 2019-05-01             5    1.480392
## 2223        May/2019 May 2019 2019-05-01             5    2.639665
## 2224        May/2019 May 2019 2019-05-01             5    2.670175
## 2225        May/2019 May 2019 2019-05-01             5    1.741279
## 2226        May/2019 May 2019 2019-05-01             5    2.661972
## 2227        May/2019 May 2019 2019-05-01             5    1.709677
## 2228        May/2019 May 2019 2019-05-01             5    1.719472
## 2229        May/2019 May 2019 2019-05-01             5    1.676282
## 2230        May/2019 May 2019 2019-05-01             5    1.822581
## 2231        May/2019 May 2019 2019-05-01             5    1.719424
## 2232        May/2019 May 2019 2019-05-01             5    1.864111
## 2233        May/2019 May 2019 2019-05-01             5    2.601744
## 2234        May/2019 May 2019 2019-05-01             5    2.156934
## 2235        May/2019 May 2019 2019-05-01             5    1.771331
## 2236        May/2019 May 2019 2019-05-01             5    2.652047
## 2237        May/2019 May 2019 2019-05-01             5    2.562092
## 2238        May/2019 May 2019 2019-05-01             5    1.970464
## 2239        May/2019 May 2019 2019-05-01             5    2.671795
## 2240        May/2019 May 2019 2019-05-01             5    2.716012
## 2241        May/2019 May 2019 2019-05-01             5    1.524917
## 2242        May/2019 May 2019 2019-05-01             5    1.916409
## 2243        May/2019 May 2019 2019-05-01             5    2.573099
## 2244        May/2019 May 2019 2019-05-01             5    2.709571
## 2245        May/2019 May 2019 2019-05-01             5    2.654434
## 2246        May/2019 May 2019 2019-05-01             5    2.549598
## 2247        May/2019 May 2019 2019-05-01             5    2.764075
## 2248        May/2019 May 2019 2019-05-01             5    1.703822
## 2249        May/2019 May 2019 2019-05-01             5    2.607717
## 2250        May/2019 May 2019 2019-05-01             5    1.802817
## 2251        May/2019 May 2019 2019-05-01             5    2.524540
## 2252        May/2019 May 2019 2019-05-01             5    1.921384
## 2253        May/2019 May 2019 2019-05-01             5    1.847909
## 2254        May/2019 May 2019 2019-05-01             5    2.342183
## 2255        May/2019 May 2019 2019-05-01             5    1.719231
## 2256        May/2019 May 2019 2019-05-01             5    1.690909
## 2257        May/2019 May 2019 2019-05-01             5    1.556338
## 2258        May/2019 May 2019 2019-05-01             5    1.621908
## 2259        May/2019 May 2019 2019-05-01             5    1.736111
## 2260        May/2019 May 2019 2019-05-01             5    1.926357
## 2261        May/2019 May 2019 2019-05-01             5    1.897010
## 2262        May/2019 May 2019 2019-05-01             5    1.717857
## 2263        May/2019 May 2019 2019-05-01             5    2.636066
## 2264        May/2019 May 2019 2019-05-01             5    2.684385
## 2265        May/2019 May 2019 2019-05-01             5    2.548571
## 2266        May/2019 May 2019 2019-05-01             5    2.443590
## 2267        May/2019 May 2019 2019-05-01             5    1.741573
## 2268        May/2019 May 2019 2019-05-01             5    2.623656
## 2269        May/2019 May 2019 2019-05-01             5    2.587131
## 2270        May/2019 May 2019 2019-05-01             5    2.501377
## 2271        May/2019 May 2019 2019-05-01             5    2.841379
## 2272        May/2019 May 2019 2019-05-01             5    2.833333
## 2273        May/2019 May 2019 2019-05-01             5    1.817121
## 2274        May/2019 May 2019 2019-05-01             5    2.608187
## 2275        May/2019 May 2019 2019-05-01             5    1.716312
## 2276        May/2019 May 2019 2019-05-01             5    1.673203
## 2277        May/2019 May 2019 2019-05-01             5    2.648649
## 2278        May/2019 May 2019 2019-05-01             5    1.674497
## 2279        May/2019 May 2019 2019-05-01             5    2.754098
## 2280        May/2019 May 2019 2019-05-01             5    1.744604
## 2281        May/2019 May 2019 2019-05-01             5    2.743590
## 2282        May/2019 May 2019 2019-05-01             5    1.830189
## 2283        May/2019 May 2019 2019-05-01             5    1.825581
## 2284        May/2019 May 2019 2019-05-01             5    1.858209
## 2285        May/2019 May 2019 2019-05-01             5    2.666667
## 2286        May/2019 May 2019 2019-05-01             5    2.688889
## 2287        May/2019 May 2019 2019-05-01             5    1.728395
## 2288        May/2019 May 2019 2019-05-01             5    2.719178
## 2289        May/2019 May 2019 2019-05-01             5    1.617241
## 2290        May/2019 May 2019 2019-05-01             5    2.671010
## 2291        May/2019 May 2019 2019-05-01             5    2.567901
## 2292        May/2019 May 2019 2019-05-01             5    2.569892
## 2293        May/2019 May 2019 2019-05-01             5    2.549724
## 2294        May/2019 May 2019 2019-05-01             5    2.509383
## 2295        May/2019 May 2019 2019-05-01             5    1.686508
## 2296        May/2019 May 2019 2019-05-01             5    1.529940
## 2297        May/2019 May 2019 2019-05-01             5    2.715625
## 2298        May/2019 May 2019 2019-05-01             5    1.738806
## 2299        May/2019 May 2019 2019-05-01             5    1.682836
## 2300        May/2019 May 2019 2019-05-01             5    1.687307
## 2301        May/2019 May 2019 2019-05-01             5    1.765343
## 2302        May/2019 May 2019 2019-05-01             5    2.538874
## 2303        May/2019 May 2019 2019-05-01             5    1.900709
## 2304        May/2019 May 2019 2019-05-01             5    2.509589
## 2305        May/2019 May 2019 2019-05-01             5    1.821293
## 2306        May/2019 May 2019 2019-05-01             5    1.623239
## 2307        May/2019 May 2019 2019-05-01             5    1.854406
## 2308        May/2019 May 2019 2019-05-01             5    2.838488
## 2309        May/2019 May 2019 2019-05-01             5    1.669456
## 2310        May/2019 May 2019 2019-05-01             5    2.896552
## 2311        May/2019 May 2019 2019-05-01             5    2.722034
## 2312        May/2019 May 2019 2019-05-01             5    2.545775
## 2313        May/2019 May 2019 2019-05-01             5    2.641096
## 2314        May/2019 May 2019 2019-05-01             5    1.988806
## 2315        May/2019 May 2019 2019-05-01             5    1.572881
## 2316        May/2019 May 2019 2019-05-01             5    2.612676
## 2317        May/2019 May 2019 2019-05-01             5    1.690566
## 2318        May/2019 May 2019 2019-05-01             5    1.893204
## 2319        May/2019 May 2019 2019-05-01             5    2.055556
## 2320        May/2019 May 2019 2019-05-01             5    1.841699
## 2321        May/2019 May 2019 2019-05-01             5    2.690625
## 2322        May/2019 May 2019 2019-05-01             5    1.673152
## 2323        May/2019 May 2019 2019-05-01             5    1.669091
## 2324        May/2019 May 2019 2019-05-01             5    1.619772
## 2325        May/2019 May 2019 2019-05-01             5    1.665272
## 2326        May/2019 May 2019 2019-05-01             5    1.745536
## 2327        May/2019 May 2019 2019-05-01             5    1.729614
## 2328        May/2019 May 2019 2019-05-01             5    2.705479
## 2329        May/2019 May 2019 2019-05-01             5    1.727273
## 2330        May/2019 May 2019 2019-05-01             5    1.790441
## 2331        May/2019 May 2019 2019-05-01             5    1.560606
## 2332        May/2019 May 2019 2019-05-01             5    1.602996
## 2333        May/2019 May 2019 2019-05-01             5    2.666667
## 2334        May/2019 May 2019 2019-05-01             5    2.440860
## 2335        May/2019 May 2019 2019-05-01             5    2.607629
## 2336        May/2019 May 2019 2019-05-01             5    2.485342
## 2337        May/2019 May 2019 2019-05-01             5    2.832335
## 2338        May/2019 May 2019 2019-05-01             5    1.897436
## 2339        May/2019 May 2019 2019-05-01             5    2.697161
## 2340        May/2019 May 2019 2019-05-01             5    2.666667
## 2341        May/2019 May 2019 2019-05-01             5    2.647230
## 2342        May/2019 May 2019 2019-05-01             5    2.781768
## 2343        May/2019 May 2019 2019-05-01             5    2.651652
## 2344        May/2019 May 2019 2019-05-01             5    2.772242
## 2345        May/2019 May 2019 2019-05-01             5    2.640110
## 2346        May/2019 May 2019 2019-05-01             5    2.715686
## 2347        May/2019 May 2019 2019-05-01             5    2.630189
## 2348        May/2019 May 2019 2019-05-01             5    2.600619
## 2349        May/2019 May 2019 2019-05-01             5    2.674576
## 2350        May/2019 May 2019 2019-05-01             5    2.778169
## 2351        May/2019 May 2019 2019-05-01             5    2.620419
## 2352        May/2019 May 2019 2019-05-01             5    3.040404
## 2353        May/2019 May 2019 2019-05-01             5    2.638418
## 2354        May/2019 May 2019 2019-05-01             5    2.649351
## 2355        May/2019 May 2019 2019-05-01             5    1.616858
## 2356        May/2019 May 2019 2019-05-01             5    2.654501
## 2357        May/2019 May 2019 2019-05-01             5    2.590759
## 2358        May/2019 May 2019 2019-05-01             5    2.546053
## 2359        May/2019 May 2019 2019-05-01             5    2.705674
## 2360        May/2019 May 2019 2019-05-01             5    1.920455
## 2361        May/2019 May 2019 2019-05-01             5    2.582456
## 2362        May/2019 May 2019 2019-05-01             5    2.610119
## 2363        May/2019 May 2019 2019-05-01             5    2.614035
## 2364        May/2019 May 2019 2019-05-01             5    2.679083
## 2365        May/2019 May 2019 2019-05-01             5    1.747634
## 2366        May/2019 May 2019 2019-05-01             5    2.637462
## 2367        May/2019 May 2019 2019-05-01             5    2.150538
## 2368        May/2019 May 2019 2019-05-01             5    1.593168
## 2369        May/2019 May 2019 2019-05-01             5    1.622711
## 2370        May/2019 May 2019 2019-05-01             5    2.740310
## 2371        May/2019 May 2019 2019-05-01             5    1.533040
## 2372        May/2019 May 2019 2019-05-01             5    2.708075
## 2373        May/2019 May 2019 2019-05-01             5    2.536508
## 2374        May/2019 May 2019 2019-05-01             5    2.579946
## 2375        May/2019 May 2019 2019-05-01             5    1.824841
## 2376        May/2019 May 2019 2019-05-01             5    1.655870
## 2377        May/2019 May 2019 2019-05-01             5    1.783217
## 2378        May/2019 May 2019 2019-05-01             5    1.688581
## 2379        May/2019 May 2019 2019-05-01             5    1.817844
## 2380        May/2019 May 2019 2019-05-01             5    2.780405
## 2381        May/2019 May 2019 2019-05-01             5    1.599190
## 2382        May/2019 May 2019 2019-05-01             5    1.811245
## 2383        May/2019 May 2019 2019-05-01             5    1.604167
## 2384        May/2019 May 2019 2019-05-01             5    1.642623
## 2385        May/2019 May 2019 2019-05-01             5    1.603279
## 2386        May/2019 May 2019 2019-05-01             5    1.837004
## 2387        May/2019 May 2019 2019-05-01             5    1.642570
## 2388        May/2019 May 2019 2019-05-01             5    2.683824
## 2389        May/2019 May 2019 2019-05-01             5    1.855513
## 2390        May/2019 May 2019 2019-05-01             5    2.668919
## 2391        May/2019 May 2019 2019-05-01             5    2.624573
## 2392        May/2019 May 2019 2019-05-01             5    1.799320
## 2393        May/2019 May 2019 2019-05-01             5    1.543726
## 2394        May/2019 May 2019 2019-05-01             5    2.524430
## 2395        May/2019 May 2019 2019-05-01             5    2.654354
## 2396        May/2019 May 2019 2019-05-01             5    1.674157
## 2397        May/2019 May 2019 2019-05-01             5    1.578182
## 2398        May/2019 May 2019 2019-05-01             5    1.539007
## 2399        May/2019 May 2019 2019-05-01             5    1.654545
## 2400        May/2019 May 2019 2019-05-01             5    2.666667
## 2401        May/2019 May 2019 2019-05-01             5    1.770492
## 2402        May/2019 May 2019 2019-05-01             5    1.733591
## 2403    October/2019 Oct 2019 2019-10-01            10    2.673184
## 2404    October/2019 Oct 2019 2019-10-01            10    2.657738
## 2405    October/2019 Oct 2019 2019-10-01            10    2.606250
## 2406    October/2019 Oct 2019 2019-10-01            10    2.735376
## 2407    October/2019 Oct 2019 2019-10-01            10    2.897436
## 2408    October/2019 Oct 2019 2019-10-01            10    2.580292
## 2409    October/2019 Oct 2019 2019-10-01            10    2.795455
## 2410    October/2019 Oct 2019 2019-10-01            10    2.551515
## 2411    October/2019 Oct 2019 2019-10-01            10    2.682390
## 2412    October/2019 Oct 2019 2019-10-01            10    2.692308
## 2413    October/2019 Oct 2019 2019-10-01            10    2.778462
## 2414    October/2019 Oct 2019 2019-10-01            10    2.724518
## 2415    October/2019 Oct 2019 2019-10-01            10    1.582524
## 2416    October/2019 Oct 2019 2019-10-01            10    1.811847
## 2417    October/2019 Oct 2019 2019-10-01            10    2.771513
## 2418    October/2019 Oct 2019 2019-10-01            10    2.712610
## 2419    October/2019 Oct 2019 2019-10-01            10    2.673716
## 2420    October/2019 Oct 2019 2019-10-01            10    2.741333
## 2421    October/2019 Oct 2019 2019-10-01            10    2.657321
## 2422    October/2019 Oct 2019 2019-10-01            10    2.730408
## 2423    October/2019 Oct 2019 2019-10-01            10    2.689474
## 2424    October/2019 Oct 2019 2019-10-01            10    2.806452
## 2425    October/2019 Oct 2019 2019-10-01            10    2.570025
## 2426    October/2019 Oct 2019 2019-10-01            10    2.933993
## 2427    October/2019 Oct 2019 2019-10-01            10    2.774603
## 2428    October/2019 Oct 2019 2019-10-01            10    2.682451
## 2429    October/2019 Oct 2019 2019-10-01            10    2.769231
## 2430    October/2019 Oct 2019 2019-10-01            10    2.672087
## 2431    October/2019 Oct 2019 2019-10-01            10    2.486631
## 2432    October/2019 Oct 2019 2019-10-01            10    2.724796
## 2433    October/2019 Oct 2019 2019-10-01            10    2.795082
## 2434    October/2019 Oct 2019 2019-10-01            10    1.824427
## 2435    October/2019 Oct 2019 2019-10-01            10    2.740000
## 2436    October/2019 Oct 2019 2019-10-01            10    2.730159
## 2437    October/2019 Oct 2019 2019-10-01            10    2.885449
## 2438    October/2019 Oct 2019 2019-10-01            10    2.718033
## 2439    October/2019 Oct 2019 2019-10-01            10    2.774603
## 2440    October/2019 Oct 2019 2019-10-01            10    2.740132
## 2441    October/2019 Oct 2019 2019-10-01            10    2.643963
## 2442    October/2019 Oct 2019 2019-10-01            10    2.803681
## 2443    October/2019 Oct 2019 2019-10-01            10    2.674772
## 2444    October/2019 Oct 2019 2019-10-01            10    2.827586
## 2445    October/2019 Oct 2019 2019-10-01            10    2.654867
## 2446    October/2019 Oct 2019 2019-10-01            10    2.668990
## 2447    October/2019 Oct 2019 2019-10-01            10    2.747405
## 2448    October/2019 Oct 2019 2019-10-01            10    2.729904
## 2449    October/2019 Oct 2019 2019-10-01            10    2.552430
## 2450    October/2019 Oct 2019 2019-10-01            10    2.722892
## 2451    October/2019 Oct 2019 2019-10-01            10    2.674051
## 2452    October/2019 Oct 2019 2019-10-01            10    2.719653
## 2453    October/2019 Oct 2019 2019-10-01            10    2.860465
## 2454    October/2019 Oct 2019 2019-10-01            10    2.632075
## 2455    October/2019 Oct 2019 2019-10-01            10    2.563953
## 2456    October/2019 Oct 2019 2019-10-01            10    1.663043
## 2457    October/2019 Oct 2019 2019-10-01            10    2.489305
## 2458    October/2019 Oct 2019 2019-10-01            10    2.563518
## 2459    October/2019 Oct 2019 2019-10-01            10    2.569014
## 2460    October/2019 Oct 2019 2019-10-01            10    2.870871
## 2461    October/2019 Oct 2019 2019-10-01            10    2.572700
## 2462    October/2019 Oct 2019 2019-10-01            10    2.559459
## 2463    October/2019 Oct 2019 2019-10-01            10    3.008439
## 2464    October/2019 Oct 2019 2019-10-01            10    2.664336
## 2465    October/2019 Oct 2019 2019-10-01            10    2.557841
## 2466    October/2019 Oct 2019 2019-10-01            10    2.425656
## 2467    October/2019 Oct 2019 2019-10-01            10    2.551084
## 2468    October/2019 Oct 2019 2019-10-01            10    2.581538
## 2469    October/2019 Oct 2019 2019-10-01            10    2.517028
## 2470    October/2019 Oct 2019 2019-10-01            10    2.718354
## 2471    October/2019 Oct 2019 2019-10-01            10    2.603226
## 2472    October/2019 Oct 2019 2019-10-01            10    2.688889
## 2473    October/2019 Oct 2019 2019-10-01            10    2.774834
## 2474    October/2019 Oct 2019 2019-10-01            10    2.595016
## 2475    October/2019 Oct 2019 2019-10-01            10    2.771978
## 2476    October/2019 Oct 2019 2019-10-01            10    2.706553
## 2477    October/2019 Oct 2019 2019-10-01            10    2.588384
## 2478    October/2019 Oct 2019 2019-10-01            10    2.574534
## 2479    October/2019 Oct 2019 2019-10-01            10    2.750685
## 2480    October/2019 Oct 2019 2019-10-01            10    2.584570
## 2481    October/2019 Oct 2019 2019-10-01            10    2.619195
## 2482    October/2019 Oct 2019 2019-10-01            10    2.678063
## 2483    October/2019 Oct 2019 2019-10-01            10    2.769663
## 2484    October/2019 Oct 2019 2019-10-01            10    2.671733
## 2485    October/2019 Oct 2019 2019-10-01            10    2.772414
## 2486    October/2019 Oct 2019 2019-10-01            10    2.680519
## 2487    October/2019 Oct 2019 2019-10-01            10    2.627119
## 2488    October/2019 Oct 2019 2019-10-01            10    2.849850
## 2489    October/2019 Oct 2019 2019-10-01            10    2.802676
## 2490    October/2019 Oct 2019 2019-10-01            10    2.551813
## 2491    October/2019 Oct 2019 2019-10-01            10    2.758410
## 2492    October/2019 Oct 2019 2019-10-01            10    2.661184
## 2493    October/2019 Oct 2019 2019-10-01            10    2.737805
## 2494    October/2019 Oct 2019 2019-10-01            10    2.659443
## 2495    October/2019 Oct 2019 2019-10-01            10    2.694969
## 2496    October/2019 Oct 2019 2019-10-01            10    2.645251
## 2497    October/2019 Oct 2019 2019-10-01            10    2.777429
## 2498    October/2019 Oct 2019 2019-10-01            10    2.753463
## 2499    October/2019 Oct 2019 2019-10-01            10    2.761745
## 2500    October/2019 Oct 2019 2019-10-01            10    2.615591
## 2501    October/2019 Oct 2019 2019-10-01            10    2.752294
## 2502    October/2019 Oct 2019 2019-10-01            10    2.664671
## 2503    October/2019 Oct 2019 2019-10-01            10    2.521994
## 2504    October/2019 Oct 2019 2019-10-01            10    2.672365
## 2505    October/2019 Oct 2019 2019-10-01            10    2.780980
## 2506    October/2019 Oct 2019 2019-10-01            10    2.789668
## 2507    October/2019 Oct 2019 2019-10-01            10    2.744526
## 2508    October/2019 Oct 2019 2019-10-01            10    2.587662
## 2509    October/2019 Oct 2019 2019-10-01            10    2.590214
## 2510    October/2019 Oct 2019 2019-10-01            10    2.798077
## 2511    October/2019 Oct 2019 2019-10-01            10    2.635179
## 2512    October/2019 Oct 2019 2019-10-01            10    2.638978
## 2513    October/2019 Oct 2019 2019-10-01            10    2.785507
## 2514    October/2019 Oct 2019 2019-10-01            10    2.802292
## 2515    October/2019 Oct 2019 2019-10-01            10    2.679045
## 2516    October/2019 Oct 2019 2019-10-01            10    2.625000
## 2517    October/2019 Oct 2019 2019-10-01            10    2.694370
## 2518    October/2019 Oct 2019 2019-10-01            10    2.717391
## 2519    October/2019 Oct 2019 2019-10-01            10    2.816216
## 2520    October/2019 Oct 2019 2019-10-01            10    2.838983
## 2521    October/2019 Oct 2019 2019-10-01            10    2.689320
## 2522    October/2019 Oct 2019 2019-10-01            10    2.094697
## 2523    October/2019 Oct 2019 2019-10-01            10    2.654088
## 2524    October/2019 Oct 2019 2019-10-01            10    2.643590
## 2525    October/2019 Oct 2019 2019-10-01            10    2.793750
## 2526    October/2019 Oct 2019 2019-10-01            10    2.714674
## 2527    October/2019 Oct 2019 2019-10-01            10    2.852507
## 2528    October/2019 Oct 2019 2019-10-01            10    2.979094
## 2529    October/2019 Oct 2019 2019-10-01            10    2.694631
## 2530    October/2019 Oct 2019 2019-10-01            10    2.591331
## 2531    October/2019 Oct 2019 2019-10-01            10    2.722513
## 2532    October/2019 Oct 2019 2019-10-01            10    1.844371
## 2533    October/2019 Oct 2019 2019-10-01            10    2.702265
## 2534    October/2019 Oct 2019 2019-10-01            10    2.627507
## 2535    October/2019 Oct 2019 2019-10-01            10    2.500000
## 2536    October/2019 Oct 2019 2019-10-01            10    2.482558
## 2537    October/2019 Oct 2019 2019-10-01            10    2.824798
## 2538    October/2019 Oct 2019 2019-10-01            10    2.690027
## 2539    October/2019 Oct 2019 2019-10-01            10    2.697406
## 2540    October/2019 Oct 2019 2019-10-01            10    2.617414
## 2541    October/2019 Oct 2019 2019-10-01            10    1.721569
## 2542    October/2019 Oct 2019 2019-10-01            10    2.650000
## 2543    October/2019 Oct 2019 2019-10-01            10    2.160142
## 2544    October/2019 Oct 2019 2019-10-01            10    2.627692
## 2545    October/2019 Oct 2019 2019-10-01            10    2.764706
## 2546    October/2019 Oct 2019 2019-10-01            10    2.431973
## 2547    October/2019 Oct 2019 2019-10-01            10    2.653846
## 2548    October/2019 Oct 2019 2019-10-01            10    2.816054
## 2549    October/2019 Oct 2019 2019-10-01            10    2.688963
## 2550    October/2019 Oct 2019 2019-10-01            10    2.676364
## 2551    October/2019 Oct 2019 2019-10-01            10    2.609290
## 2552    October/2019 Oct 2019 2019-10-01            10    2.245353
## 2553    October/2019 Oct 2019 2019-10-01            10    2.695122
## 2554    October/2019 Oct 2019 2019-10-01            10    2.859599
## 2555    October/2019 Oct 2019 2019-10-01            10    2.698630
## 2556    October/2019 Oct 2019 2019-10-01            10    2.775641
## 2557    October/2019 Oct 2019 2019-10-01            10    2.709945
## 2558    October/2019 Oct 2019 2019-10-01            10    2.700767
## 2559    October/2019 Oct 2019 2019-10-01            10    2.672087
## 2560    October/2019 Oct 2019 2019-10-01            10    2.559028
## 2561    October/2019 Oct 2019 2019-10-01            10    2.566154
## 2562    October/2019 Oct 2019 2019-10-01            10    2.596491
## 2563    October/2019 Oct 2019 2019-10-01            10    2.639456
## 2564    October/2019 Oct 2019 2019-10-01            10    2.681698
## 2565    October/2019 Oct 2019 2019-10-01            10    2.620991
## 2566    October/2019 Oct 2019 2019-10-01            10    2.739414
## 2567    October/2019 Oct 2019 2019-10-01            10    2.641026
## 2568    October/2019 Oct 2019 2019-10-01            10    1.852201
## 2569    October/2019 Oct 2019 2019-10-01            10    2.834532
## 2570    October/2019 Oct 2019 2019-10-01            10    2.761246
## 2571    October/2019 Oct 2019 2019-10-01            10    2.637540
## 2572    October/2019 Oct 2019 2019-10-01            10    2.882943
## 2573    October/2019 Oct 2019 2019-10-01            10    2.687500
## 2574    October/2019 Oct 2019 2019-10-01            10    2.707746
## 2575    October/2019 Oct 2019 2019-10-01            10    1.963899
## 2576    October/2019 Oct 2019 2019-10-01            10    2.627451
## 2577    October/2019 Oct 2019 2019-10-01            10    2.461957
## 2578    October/2019 Oct 2019 2019-10-01            10    1.754864
## 2579    October/2019 Oct 2019 2019-10-01            10    1.884477
## 2580    October/2019 Oct 2019 2019-10-01            10    2.713816
## 2581    October/2019 Oct 2019 2019-10-01            10    2.691558
## 2582    October/2019 Oct 2019 2019-10-01            10    1.752443
## 2583    October/2019 Oct 2019 2019-10-01            10    2.864469
## 2584    October/2019 Oct 2019 2019-10-01            10    2.736667
## 2585    October/2019 Oct 2019 2019-10-01            10    1.915033
## 2586    October/2019 Oct 2019 2019-10-01            10    2.678261
## 2587    October/2019 Oct 2019 2019-10-01            10    2.343537
## 2588    October/2019 Oct 2019 2019-10-01            10    2.540925
## 2589    October/2019 Oct 2019 2019-10-01            10    2.560000
## 2590    October/2019 Oct 2019 2019-10-01            10    2.569733
## 2591    October/2019 Oct 2019 2019-10-01            10    1.642553
## 2592    October/2019 Oct 2019 2019-10-01            10    2.590164
## 2593    October/2019 Oct 2019 2019-10-01            10    2.481894
## 2594    October/2019 Oct 2019 2019-10-01            10    2.688356
## 2595    October/2019 Oct 2019 2019-10-01            10    2.776632
## 2596    October/2019 Oct 2019 2019-10-01            10    2.645570
## 2597    October/2019 Oct 2019 2019-10-01            10    2.433584
## 2598    October/2019 Oct 2019 2019-10-01            10    2.663934
## 2599    October/2019 Oct 2019 2019-10-01            10    2.528190
## 2600    October/2019 Oct 2019 2019-10-01            10    2.704023
## 2601    October/2019 Oct 2019 2019-10-01            10    2.638177
## 2602    October/2019 Oct 2019 2019-10-01            10    1.690299
## 2603    October/2019 Oct 2019 2019-10-01            10    2.700272
## 2604    October/2019 Oct 2019 2019-10-01            10    2.494286
## 2605    October/2019 Oct 2019 2019-10-01            10    1.913846
## 2606    October/2019 Oct 2019 2019-10-01            10    2.696532
## 2607    October/2019 Oct 2019 2019-10-01            10    2.522667
## 2608    October/2019 Oct 2019 2019-10-01            10    2.522727
## 2609    October/2019 Oct 2019 2019-10-01            10    2.674194
## 2610    October/2019 Oct 2019 2019-10-01            10    2.564885
## 2611    October/2019 Oct 2019 2019-10-01            10    2.715356
## 2612    October/2019 Oct 2019 2019-10-01            10    2.582043
## 2613    October/2019 Oct 2019 2019-10-01            10    2.690323
## 2614    October/2019 Oct 2019 2019-10-01            10    2.459119
## 2615    October/2019 Oct 2019 2019-10-01            10    2.762058
## 2616    October/2019 Oct 2019 2019-10-01            10    2.608150
## 2617    October/2019 Oct 2019 2019-10-01            10    2.691803
## 2618    October/2019 Oct 2019 2019-10-01            10    2.681818
## 2619    October/2019 Oct 2019 2019-10-01            10    2.667732
## 2620    October/2019 Oct 2019 2019-10-01            10    2.518797
## 2621    October/2019 Oct 2019 2019-10-01            10    2.671827
## 2622    October/2019 Oct 2019 2019-10-01            10    2.695767
## 2623    October/2019 Oct 2019 2019-10-01            10    2.641337
## 2624    October/2019 Oct 2019 2019-10-01            10    2.718750
## 2625    October/2019 Oct 2019 2019-10-01            10    2.592593
## 2626    October/2019 Oct 2019 2019-10-01            10    2.696049
## 2627    October/2019 Oct 2019 2019-10-01            10    2.478916
## 2628    October/2019 Oct 2019 2019-10-01            10    2.429429
## 2629    October/2019 Oct 2019 2019-10-01            10    2.633218
## 2630    October/2019 Oct 2019 2019-10-01            10    2.589674
## 2631    October/2019 Oct 2019 2019-10-01            10    2.543860
## 2632    October/2019 Oct 2019 2019-10-01            10    2.602606
## 2633    October/2019 Oct 2019 2019-10-01            10    2.972318
## 2634    October/2019 Oct 2019 2019-10-01            10    1.908759
## 2635    October/2019 Oct 2019 2019-10-01            10    1.694340
## 2636    October/2019 Oct 2019 2019-10-01            10    2.755932
## 2637    October/2019 Oct 2019 2019-10-01            10    1.825000
## 2638    October/2019 Oct 2019 2019-10-01            10    2.643258
## 2639    October/2019 Oct 2019 2019-10-01            10    2.674699
## 2640    October/2019 Oct 2019 2019-10-01            10    1.618110
## 2641    October/2019 Oct 2019 2019-10-01            10    2.039683
## 2642    October/2019 Oct 2019 2019-10-01            10    1.719697
## 2643    October/2019 Oct 2019 2019-10-01            10    2.084084
## 2644    October/2019 Oct 2019 2019-10-01            10    1.974110
## 2645    October/2019 Oct 2019 2019-10-01            10    2.506812
## 2646    October/2019 Oct 2019 2019-10-01            10    2.569322
## 2647    October/2019 Oct 2019 2019-10-01            10    2.565657
## 2648    October/2019 Oct 2019 2019-10-01            10    2.651163
## 2649    October/2019 Oct 2019 2019-10-01            10    1.681992
## 2650    October/2019 Oct 2019 2019-10-01            10    1.766393
## 2651    October/2019 Oct 2019 2019-10-01            10    1.886364
## 2652    October/2019 Oct 2019 2019-10-01            10    2.643059
## 2653    October/2019 Oct 2019 2019-10-01            10    2.524096
## 2654    October/2019 Oct 2019 2019-10-01            10    2.740741
## 2655    October/2019 Oct 2019 2019-10-01            10    1.661479
## 2656    October/2019 Oct 2019 2019-10-01            10    2.525773
## 2657    October/2019 Oct 2019 2019-10-01            10    2.680135
## 2658   February/2020 Feb 2020 2020-02-01             2    2.648810
## 2659   February/2020 Feb 2020 2020-02-01             2    2.582822
## 2660   February/2020 Feb 2020 2020-02-01             2    2.698361
## 2661   February/2020 Feb 2020 2020-02-01             2    2.737705
## 2662   February/2020 Feb 2020 2020-02-01             2    2.654839
## 2663   February/2020 Feb 2020 2020-02-01             2    2.489489
## 2664   February/2020 Feb 2020 2020-02-01             2    2.254839
## 2665   February/2020 Feb 2020 2020-02-01             2    2.670695
## 2666   February/2020 Feb 2020 2020-02-01             2    2.658863
## 2667   February/2020 Feb 2020 2020-02-01             2    2.739286
## 2668   February/2020 Feb 2020 2020-02-01             2    2.782609
## 2669   February/2020 Feb 2020 2020-02-01             2    2.797980
## 2670   February/2020 Feb 2020 2020-02-01             2    2.423469
## 2671   February/2020 Feb 2020 2020-02-01             2    2.504823
## 2672   February/2020 Feb 2020 2020-02-01             2    2.642857
## 2673   February/2020 Feb 2020 2020-02-01             2    2.564356
## 2674   February/2020 Feb 2020 2020-02-01             2    2.619883
## 2675   February/2020 Feb 2020 2020-02-01             2    2.724432
## 2676   February/2020 Feb 2020 2020-02-01             2    2.392405
## 2677   February/2020 Feb 2020 2020-02-01             2    2.375000
## 2678   February/2020 Feb 2020 2020-02-01             2    2.685430
## 2679   February/2020 Feb 2020 2020-02-01             2    2.276056
## 2680   February/2020 Feb 2020 2020-02-01             2    2.772414
## 2681   February/2020 Feb 2020 2020-02-01             2    2.410876
## 2682   February/2020 Feb 2020 2020-02-01             2    2.506369
## 2683   February/2020 Feb 2020 2020-02-01             2    2.510703
## 2684   February/2020 Feb 2020 2020-02-01             2    2.628975
## 2685   February/2020 Feb 2020 2020-02-01             2    2.309904
## 2686   February/2020 Feb 2020 2020-02-01             2    2.292899
## 2687   February/2020 Feb 2020 2020-02-01             2    2.500000
## 2688   February/2020 Feb 2020 2020-02-01             2    2.380240
## 2689   February/2020 Feb 2020 2020-02-01             2    2.471751
## 2690   February/2020 Feb 2020 2020-02-01             2    2.662791
## 2691   February/2020 Feb 2020 2020-02-01             2    2.690554
## 2692   February/2020 Feb 2020 2020-02-01             2    2.626582
## 2693   February/2020 Feb 2020 2020-02-01             2    2.688312
## 2694   February/2020 Feb 2020 2020-02-01             2    2.640845
## 2695   February/2020 Feb 2020 2020-02-01             2    2.528796
## 2696   February/2020 Feb 2020 2020-02-01             2    2.671388
## 2697   February/2020 Feb 2020 2020-02-01             2    2.647458
## 2698   February/2020 Feb 2020 2020-02-01             2    2.689349
## 2699   February/2020 Feb 2020 2020-02-01             2    2.792727
## 2700   February/2020 Feb 2020 2020-02-01             2    2.776471
## 2701   February/2020 Feb 2020 2020-02-01             2    2.641176
## 2702   February/2020 Feb 2020 2020-02-01             2    2.507418
## 2703   February/2020 Feb 2020 2020-02-01             2    2.527273
## 2704   February/2020 Feb 2020 2020-02-01             2    2.329193
## 2705   February/2020 Feb 2020 2020-02-01             2    2.576208
## 2706   February/2020 Feb 2020 2020-02-01             2    2.906615
## 2707   February/2020 Feb 2020 2020-02-01             2    2.511450
## 2708   February/2020 Feb 2020 2020-02-01             2    2.513846
## 2709   February/2020 Feb 2020 2020-02-01             2    2.596825
## 2710   February/2020 Feb 2020 2020-02-01             2    2.789137
## 2711   February/2020 Feb 2020 2020-02-01             2    2.756863
## 2712   February/2020 Feb 2020 2020-02-01             2    2.632727
## 2713   February/2020 Feb 2020 2020-02-01             2    2.612698
## 2714   February/2020 Feb 2020 2020-02-01             2    2.825000
## 2715   February/2020 Feb 2020 2020-02-01             2    2.765957
## 2716   February/2020 Feb 2020 2020-02-01             2    2.667763
## 2717   February/2020 Feb 2020 2020-02-01             2    2.482759
## 2718   February/2020 Feb 2020 2020-02-01             2    2.776978
## 2719   February/2020 Feb 2020 2020-02-01             2    2.724528
## 2720   February/2020 Feb 2020 2020-02-01             2    2.656716
## 2721   February/2020 Feb 2020 2020-02-01             2    2.506024
## 2722   February/2020 Feb 2020 2020-02-01             2    1.734426
## 2723   February/2020 Feb 2020 2020-02-01             2    1.657718
## 2724   February/2020 Feb 2020 2020-02-01             2    1.895307
## 2725   February/2020 Feb 2020 2020-02-01             2    2.567474
## 2726   February/2020 Feb 2020 2020-02-01             2    2.652308
## 2727   February/2020 Feb 2020 2020-02-01             2    2.280769
## 2728   February/2020 Feb 2020 2020-02-01             2    1.817490
## 2729   February/2020 Feb 2020 2020-02-01             2    1.804781
## 2730   February/2020 Feb 2020 2020-02-01             2    1.681063
## 2731   February/2020 Feb 2020 2020-02-01             2    2.784314
## 2732   February/2020 Feb 2020 2020-02-01             2    2.718310
## 2733   February/2020 Feb 2020 2020-02-01             2    2.726974
## 2734   February/2020 Feb 2020 2020-02-01             2    2.705167
## 2735   February/2020 Feb 2020 2020-02-01             2    2.697749
## 2736   February/2020 Feb 2020 2020-02-01             2    2.671975
## 2737   February/2020 Feb 2020 2020-02-01             2    2.608808
## 2738   February/2020 Feb 2020 2020-02-01             2    2.493225
## 2739   February/2020 Feb 2020 2020-02-01             2    2.893382
## 2740   February/2020 Feb 2020 2020-02-01             2    2.623377
## 2741   February/2020 Feb 2020 2020-02-01             2    2.636637
## 2742   February/2020 Feb 2020 2020-02-01             2    2.653465
## 2743   February/2020 Feb 2020 2020-02-01             2    2.626263
## 2744   February/2020 Feb 2020 2020-02-01             2    2.469208
## 2745   February/2020 Feb 2020 2020-02-01             2    2.704735
## 2746   February/2020 Feb 2020 2020-02-01             2    2.531507
## 2747   February/2020 Feb 2020 2020-02-01             2    2.605505
## 2748   February/2020 Feb 2020 2020-02-01             2    2.870432
## 2749   February/2020 Feb 2020 2020-02-01             2    2.608150
## 2750   February/2020 Feb 2020 2020-02-01             2    2.516517
## 2751   February/2020 Feb 2020 2020-02-01             2    2.833887
## 2752   February/2020 Feb 2020 2020-02-01             2    2.613208
## 2753   February/2020 Feb 2020 2020-02-01             2    2.709459
## 2754   February/2020 Feb 2020 2020-02-01             2    2.723214
## 2755   February/2020 Feb 2020 2020-02-01             2    2.800664
## 2756   February/2020 Feb 2020 2020-02-01             2    2.537975
## 2757   February/2020 Feb 2020 2020-02-01             2    2.507003
## 2758   February/2020 Feb 2020 2020-02-01             2    2.711974
## 2759   February/2020 Feb 2020 2020-02-01             2    2.685619
## 2760   February/2020 Feb 2020 2020-02-01             2    2.593668
## 2761   February/2020 Feb 2020 2020-02-01             2    2.861842
## 2762   February/2020 Feb 2020 2020-02-01             2    2.598726
## 2763   February/2020 Feb 2020 2020-02-01             2    2.656766
## 2764   February/2020 Feb 2020 2020-02-01             2    2.745098
## 2765   February/2020 Feb 2020 2020-02-01             2    2.715232
## 2766   February/2020 Feb 2020 2020-02-01             2    2.878963
## 2767   February/2020 Feb 2020 2020-02-01             2    2.600649
## 2768   February/2020 Feb 2020 2020-02-01             2    2.688679
## 2769   February/2020 Feb 2020 2020-02-01             2    2.719033
## 2770   February/2020 Feb 2020 2020-02-01             2    2.554896
## 2771   February/2020 Feb 2020 2020-02-01             2    2.562300
## 2772   February/2020 Feb 2020 2020-02-01             2    2.588050
## 2773   February/2020 Feb 2020 2020-02-01             2    2.624615
## 2774   February/2020 Feb 2020 2020-02-01             2    2.626866
## 2775   February/2020 Feb 2020 2020-02-01             2    2.665635
## 2776   February/2020 Feb 2020 2020-02-01             2    2.692308
## 2777   February/2020 Feb 2020 2020-02-01             2    2.467857
## 2778   February/2020 Feb 2020 2020-02-01             2    2.726236
## 2779   February/2020 Feb 2020 2020-02-01             2    2.682927
## 2780   February/2020 Feb 2020 2020-02-01             2    1.722222
## 2781   February/2020 Feb 2020 2020-02-01             2    1.794118
## 2782   February/2020 Feb 2020 2020-02-01             2    2.068702
## 2783   February/2020 Feb 2020 2020-02-01             2    1.698842
## 2784   February/2020 Feb 2020 2020-02-01             2    2.102473
## 2785   February/2020 Feb 2020 2020-02-01             2    1.698842
## 2786   February/2020 Feb 2020 2020-02-01             2    1.649635
## 2787   February/2020 Feb 2020 2020-02-01             2    1.487805
## 2788   February/2020 Feb 2020 2020-02-01             2    1.486068
## 2789   February/2020 Feb 2020 2020-02-01             2    1.690000
## 2790   February/2020 Feb 2020 2020-02-01             2    1.660194
## 2791   February/2020 Feb 2020 2020-02-01             2    1.687943
## 2792   February/2020 Feb 2020 2020-02-01             2    1.784387
## 2793   February/2020 Feb 2020 2020-02-01             2    1.794521
## 2794   February/2020 Feb 2020 2020-02-01             2    1.663194
## 2795   February/2020 Feb 2020 2020-02-01             2    1.884000
## 2796   February/2020 Feb 2020 2020-02-01             2    1.632143
## 2797   February/2020 Feb 2020 2020-02-01             2    1.582031
## 2798   February/2020 Feb 2020 2020-02-01             2    1.695833
## 2799   February/2020 Feb 2020 2020-02-01             2    1.659574
## 2800   February/2020 Feb 2020 2020-02-01             2    1.906977
## 2801   February/2020 Feb 2020 2020-02-01             2    1.718750
## 2802   February/2020 Feb 2020 2020-02-01             2    1.658228
## 2803   February/2020 Feb 2020 2020-02-01             2    2.607345
## 2804   February/2020 Feb 2020 2020-02-01             2    1.726688
## 2805   February/2020 Feb 2020 2020-02-01             2    1.724528
## 2806   February/2020 Feb 2020 2020-02-01             2    1.764085
## 2807   February/2020 Feb 2020 2020-02-01             2    1.673993
## 2808   February/2020 Feb 2020 2020-02-01             2    2.558333
## 2809   February/2020 Feb 2020 2020-02-01             2    1.650847
## 2810   February/2020 Feb 2020 2020-02-01             2    1.856164
## 2811   February/2020 Feb 2020 2020-02-01             2    2.534591
## 2812   February/2020 Feb 2020 2020-02-01             2    2.743333
## 2813   February/2020 Feb 2020 2020-02-01             2    2.633423
## 2814   February/2020 Feb 2020 2020-02-01             2    2.786982
## 2815   February/2020 Feb 2020 2020-02-01             2    2.802013
## 2816   February/2020 Feb 2020 2020-02-01             2    2.625000
## 2817   February/2020 Feb 2020 2020-02-01             2    3.009375
## 2818   February/2020 Feb 2020 2020-02-01             2    2.886850
## 2819   February/2020 Feb 2020 2020-02-01             2    2.630058
## 2820   February/2020 Feb 2020 2020-02-01             2    2.568702
## 2821   February/2020 Feb 2020 2020-02-01             2    2.708824
## 2822   February/2020 Feb 2020 2020-02-01             2    2.950820
## 2823   February/2020 Feb 2020 2020-02-01             2    2.876972
## 2824   February/2020 Feb 2020 2020-02-01             2    2.883721
## 2825   February/2020 Feb 2020 2020-02-01             2    2.775920
## 2826   February/2020 Feb 2020 2020-02-01             2    2.713873
## 2827   February/2020 Feb 2020 2020-02-01             2    2.540070
## 2828   February/2020 Feb 2020 2020-02-01             2    2.508929
## 2829   February/2020 Feb 2020 2020-02-01             2    2.840580
## 2830   February/2020 Feb 2020 2020-02-01             2    2.900000
## 2831   February/2020 Feb 2020 2020-02-01             2    2.746479
## 2832   February/2020 Feb 2020 2020-02-01             2    2.654987
## 2833   February/2020 Feb 2020 2020-02-01             2    2.659722
## 2834   February/2020 Feb 2020 2020-02-01             2    2.721831
## 2835   February/2020 Feb 2020 2020-02-01             2    2.827893
## 2836   February/2020 Feb 2020 2020-02-01             2    2.557103
## 2837   February/2020 Feb 2020 2020-02-01             2    2.672297
## 2838   February/2020 Feb 2020 2020-02-01             2    2.642442
## 2839   February/2020 Feb 2020 2020-02-01             2    2.642857
## 2840   February/2020 Feb 2020 2020-02-01             2    2.520000
## 2841   February/2020 Feb 2020 2020-02-01             2    2.589831
## 2842   February/2020 Feb 2020 2020-02-01             2    2.786667
## 2843   February/2020 Feb 2020 2020-02-01             2    2.506711
## 2844   February/2020 Feb 2020 2020-02-01             2    2.773885
## 2845   February/2020 Feb 2020 2020-02-01             2    2.706485
## 2846   February/2020 Feb 2020 2020-02-01             2    2.708571
## 2847   February/2020 Feb 2020 2020-02-01             2    2.677193
## 2848   February/2020 Feb 2020 2020-02-01             2    2.657609
## 2849   February/2020 Feb 2020 2020-02-01             2    2.801471
## 2850   February/2020 Feb 2020 2020-02-01             2    2.859649
## 2851   February/2020 Feb 2020 2020-02-01             2    2.410256
## 2852   February/2020 Feb 2020 2020-02-01             2    2.707447
## 2853   February/2020 Feb 2020 2020-02-01             2    2.777409
## 2854   February/2020 Feb 2020 2020-02-01             2    2.612426
## 2855   February/2020 Feb 2020 2020-02-01             2    2.694631
## 2856   February/2020 Feb 2020 2020-02-01             2    2.608939
## 2857   February/2020 Feb 2020 2020-02-01             2    2.831034
## 2858   February/2020 Feb 2020 2020-02-01             2    2.696697
## 2859   February/2020 Feb 2020 2020-02-01             2    2.631098
## 2860   February/2020 Feb 2020 2020-02-01             2    2.648968
## 2861   February/2020 Feb 2020 2020-02-01             2    2.782477
## 2862   February/2020 Feb 2020 2020-02-01             2    2.615917
## 2863   February/2020 Feb 2020 2020-02-01             2    2.854478
## 2864   February/2020 Feb 2020 2020-02-01             2    2.730556
## 2865   February/2020 Feb 2020 2020-02-01             2    2.934307
## 2866   February/2020 Feb 2020 2020-02-01             2    2.635452
## 2867   February/2020 Feb 2020 2020-02-01             2    2.649852
## 2868   February/2020 Feb 2020 2020-02-01             2    2.648725
## 2869   February/2020 Feb 2020 2020-02-01             2    2.735905
## 2870   February/2020 Feb 2020 2020-02-01             2    2.649682
## 2871   February/2020 Feb 2020 2020-02-01             2    2.628289
## 2872   February/2020 Feb 2020 2020-02-01             2    2.496914
## 2873   February/2020 Feb 2020 2020-02-01             2    2.571429
## 2874   February/2020 Feb 2020 2020-02-01             2    2.595016
## 2875   February/2020 Feb 2020 2020-02-01             2    2.792388
## 2876   February/2020 Feb 2020 2020-02-01             2    2.537190
## 2877   February/2020 Feb 2020 2020-02-01             2    2.786207
## 2878   February/2020 Feb 2020 2020-02-01             2    2.677326
## 2879   February/2020 Feb 2020 2020-02-01             2    2.835125
## 2880   February/2020 Feb 2020 2020-02-01             2    2.586957
## 2881   February/2020 Feb 2020 2020-02-01             2    2.750000
## 2882   February/2020 Feb 2020 2020-02-01             2    2.660000
## 2883   February/2020 Feb 2020 2020-02-01             2    2.797753
## 2884   February/2020 Feb 2020 2020-02-01             2    2.849398
## 2885   February/2020 Feb 2020 2020-02-01             2    2.783537
## 2886   February/2020 Feb 2020 2020-02-01             2    2.665738
## 2887   February/2020 Feb 2020 2020-02-01             2    2.670175
## 2888   February/2020 Feb 2020 2020-02-01             2    1.726236
## 2889   February/2020 Feb 2020 2020-02-01             2    2.715170
## 2890   February/2020 Feb 2020 2020-02-01             2    2.631068
## 2891   February/2020 Feb 2020 2020-02-01             2    2.832787
## 2892   February/2020 Feb 2020 2020-02-01             2    2.577061
## 2893   February/2020 Feb 2020 2020-02-01             2    2.717262
## 2894   February/2020 Feb 2020 2020-02-01             2    2.750799
## 2895   February/2020 Feb 2020 2020-02-01             2    2.564972
## 2896   February/2020 Feb 2020 2020-02-01             2    2.791946
## 2897   February/2020 Feb 2020 2020-02-01             2    2.571429
## 2898   February/2020 Feb 2020 2020-02-01             2    2.861111
## 2899   February/2020 Feb 2020 2020-02-01             2    2.636111
## 2900   February/2020 Feb 2020 2020-02-01             2    3.033582
## 2901   February/2020 Feb 2020 2020-02-01             2    2.388060
## 2902   February/2020 Feb 2020 2020-02-01             2    2.575931
## 2903   February/2020 Feb 2020 2020-02-01             2    2.703947
## 2904   February/2020 Feb 2020 2020-02-01             2    2.751748
## 2905   February/2020 Feb 2020 2020-02-01             2    2.513605
## 2906   February/2020 Feb 2020 2020-02-01             2    2.521084
## 2907   February/2020 Feb 2020 2020-02-01             2    2.839858
## 2908   February/2020 Feb 2020 2020-02-01             2    2.848993
## 2909   February/2020 Feb 2020 2020-02-01             2    2.615385
## 2910   February/2020 Feb 2020 2020-02-01             2    2.551370
## 2911   February/2020 Feb 2020 2020-02-01             2    2.401639
## 2912   February/2020 Feb 2020 2020-02-01             2    2.707071
## 2913   February/2020 Feb 2020 2020-02-01             2    2.588406
## 2914   February/2020 Feb 2020 2020-02-01             2    2.667702
## 2915   February/2020 Feb 2020 2020-02-01             2    2.551471
## 2916   February/2020 Feb 2020 2020-02-01             2    2.770968
## 2917   February/2020 Feb 2020 2020-02-01             2    2.671429
## 2918   February/2020 Feb 2020 2020-02-01             2    2.819728
## 2919   February/2020 Feb 2020 2020-02-01             2    1.857664
## 2920   February/2020 Feb 2020 2020-02-01             2    2.656667
## 2921   February/2020 Feb 2020 2020-02-01             2    2.518405
## 2922   February/2020 Feb 2020 2020-02-01             2    2.682432
## 2923   February/2020 Feb 2020 2020-02-01             2    2.683386
## 2924   February/2020 Feb 2020 2020-02-01             2    2.664653
## 2925   February/2020 Feb 2020 2020-02-01             2    2.820069
## 2926   February/2020 Feb 2020 2020-02-01             2    2.795987
## 2927   February/2020 Feb 2020 2020-02-01             2    2.745665
## 2928   February/2020 Feb 2020 2020-02-01             2    2.642651
## 2929   February/2020 Feb 2020 2020-02-01             2    2.564516
## 2930   February/2020 Feb 2020 2020-02-01             2    2.424332
## 2931   February/2020 Feb 2020 2020-02-01             2    1.732639
## 2932   February/2020 Feb 2020 2020-02-01             2    2.659016
## 2933   February/2020 Feb 2020 2020-02-01             2    2.466216
## 2934   February/2020 Feb 2020 2020-02-01             2    2.648276
## 2935   February/2020 Feb 2020 2020-02-01             2    2.823129
## 2936   February/2020 Feb 2020 2020-02-01             2    2.579125
## 2937   February/2020 Feb 2020 2020-02-01             2    2.592593
## 2938   February/2020 Feb 2020 2020-02-01             2    2.654971
## 2939   February/2020 Feb 2020 2020-02-01             2    2.627907
## 2940   February/2020 Feb 2020 2020-02-01             2    2.456338
## 2941   February/2020 Feb 2020 2020-02-01             2    2.610345
## 2942   February/2020 Feb 2020 2020-02-01             2    2.543624
## 2943   February/2020 Feb 2020 2020-02-01             2    2.509202
## 2944   February/2020 Feb 2020 2020-02-01             2    2.547692
## 2945   February/2020 Feb 2020 2020-02-01             2    2.635593
## 2946   February/2020 Feb 2020 2020-02-01             2    2.482249
## 2947   February/2020 Feb 2020 2020-02-01             2    2.640000
## 2948   February/2020 Feb 2020 2020-02-01             2    2.525084
## 2949   February/2020 Feb 2020 2020-02-01             2    2.645161
## 2950   February/2020 Feb 2020 2020-02-01             2    2.560261
## 2951   February/2020 Feb 2020 2020-02-01             2    2.645390
## 2952   February/2020 Feb 2020 2020-02-01             2    2.603217
## 2953   February/2020 Feb 2020 2020-02-01             2    2.578313
## 2954   February/2020 Feb 2020 2020-02-01             2    2.654605
## 2955   February/2020 Feb 2020 2020-02-01             2    2.462644
## 2956   February/2020 Feb 2020 2020-02-01             2    2.531646
## 2957   February/2020 Feb 2020 2020-02-01             2    2.612795
## 2958   February/2020 Feb 2020 2020-02-01             2    2.606498
## 2959   February/2020 Feb 2020 2020-02-01             2    2.652308
## 2960   February/2020 Feb 2020 2020-02-01             2    2.352349
## 2961   February/2020 Feb 2020 2020-02-01             2    2.484950
## 2962   February/2020 Feb 2020 2020-02-01             2    2.666667
## 2963   February/2020 Feb 2020 2020-02-01             2    2.618012
## 2964   February/2020 Feb 2020 2020-02-01             2    2.658730
## 2965   February/2020 Feb 2020 2020-02-01             2    2.732877
## 2966   February/2020 Feb 2020 2020-02-01             2    2.552561
## 2967   February/2020 Feb 2020 2020-02-01             2    2.775510
## 2968   February/2020 Feb 2020 2020-02-01             2    2.744505
## 2969   February/2020 Feb 2020 2020-02-01             2    2.516216
## 2970   February/2020 Feb 2020 2020-02-01             2    2.721713
## 2971   February/2020 Feb 2020 2020-02-01             2    2.584337
## 2972   February/2020 Feb 2020 2020-02-01             2    2.596825
## 2973   February/2020 Feb 2020 2020-02-01             2    2.580442
## 2974   February/2020 Feb 2020 2020-02-01             2    2.664384
## 2975   February/2020 Feb 2020 2020-02-01             2    2.609164
## 2976   February/2020 Feb 2020 2020-02-01             2    2.566225
## 2977   February/2020 Feb 2020 2020-02-01             2    2.528986
## 2978   February/2020 Feb 2020 2020-02-01             2    2.607774
## 2979   February/2020 Feb 2020 2020-02-01             2    2.786207
## 2980   February/2020 Feb 2020 2020-02-01             2    2.797468
## 2981   February/2020 Feb 2020 2020-02-01             2    2.666667
## 2982   February/2020 Feb 2020 2020-02-01             2    2.518072
## 2983   February/2020 Feb 2020 2020-02-01             2    2.633245
## 2984   February/2020 Feb 2020 2020-02-01             2    2.565445
## 2985   February/2020 Feb 2020 2020-02-01             2    2.549020
## 2986   February/2020 Feb 2020 2020-02-01             2    2.896104
## 2987   February/2020 Feb 2020 2020-02-01             2    2.604096
## 2988   February/2020 Feb 2020 2020-02-01             2    2.552553
## 2989   February/2020 Feb 2020 2020-02-01             2    2.644654
## 2990   February/2020 Feb 2020 2020-02-01             2    2.692529
## 2991   February/2020 Feb 2020 2020-02-01             2    2.710884
## 2992   February/2020 Feb 2020 2020-02-01             2    2.709343
## 2993   February/2020 Feb 2020 2020-02-01             2    2.717532
## 2994   February/2020 Feb 2020 2020-02-01             2    2.625000
## 2995   February/2020 Feb 2020 2020-02-01             2    2.612299
## 2996   February/2020 Feb 2020 2020-02-01             2    2.781350
## 2997   February/2020 Feb 2020 2020-02-01             2    3.068966
## 2998   February/2020 Feb 2020 2020-02-01             2    2.493188
## 2999   February/2020 Feb 2020 2020-02-01             2    2.375451
## 3000   February/2020 Feb 2020 2020-02-01             2    2.695035
## 3001   February/2020 Feb 2020 2020-02-01             2    2.615625
## 3002   February/2020 Feb 2020 2020-02-01             2    2.710526
## 3003   February/2020 Feb 2020 2020-02-01             2    2.488571
## 3004   February/2020 Feb 2020 2020-02-01             2    2.561873
## 3005   February/2020 Feb 2020 2020-02-01             2    2.542955
## 3006   February/2020 Feb 2020 2020-02-01             2    2.690852
## 3007   February/2020 Feb 2020 2020-02-01             2    2.655949
## 3008   February/2020 Feb 2020 2020-02-01             2    2.666667
## 3009   February/2020 Feb 2020 2020-02-01             2    2.603960
## 3010   February/2020 Feb 2020 2020-02-01             2    2.514745
## 3011   February/2020 Feb 2020 2020-02-01             2    2.517341
## 3012   February/2020 Feb 2020 2020-02-01             2    2.692053
## 3013   February/2020 Feb 2020 2020-02-01             2    2.643750
## 3014   February/2020 Feb 2020 2020-02-01             2    2.541916
## 3015   February/2020 Feb 2020 2020-02-01             2    2.542500
## 3016   February/2020 Feb 2020 2020-02-01             2    2.554098
## 3017   February/2020 Feb 2020 2020-02-01             2    2.600567
## 3018   February/2020 Feb 2020 2020-02-01             2    2.621538
## 3019   February/2020 Feb 2020 2020-02-01             2    2.671429
## 3020   February/2020 Feb 2020 2020-02-01             2    2.774306
## 3021   February/2020 Feb 2020 2020-02-01             2    2.630662
## 3022   February/2020 Feb 2020 2020-02-01             2    2.491228
## 3023   February/2020 Feb 2020 2020-02-01             2    2.681416
## 3024   February/2020 Feb 2020 2020-02-01             2    2.551495
## 3025   February/2020 Feb 2020 2020-02-01             2    2.581662
## 3026   February/2020 Feb 2020 2020-02-01             2    2.227273
## 3027   February/2020 Feb 2020 2020-02-01             2    2.486239
## 3028   February/2020 Feb 2020 2020-02-01             2    2.742574
## 3029   February/2020 Feb 2020 2020-02-01             2    1.986755
## 3030   February/2020 Feb 2020 2020-02-01             2    2.664557
## 3031   February/2020 Feb 2020 2020-02-01             2    2.839041
## 3032   February/2020 Feb 2020 2020-02-01             2    2.627517
## 3033   February/2020 Feb 2020 2020-02-01             2    2.617940
## 3034   February/2020 Feb 2020 2020-02-01             2    2.585455
## 3035   February/2020 Feb 2020 2020-02-01             2    2.706422
## 3036   February/2020 Feb 2020 2020-02-01             2    2.474265
## 3037   February/2020 Feb 2020 2020-02-01             2    2.472789
## 3038   February/2020 Feb 2020 2020-02-01             2    2.579710
## 3039   February/2020 Feb 2020 2020-02-01             2    2.590580
## 3040   February/2020 Feb 2020 2020-02-01             2    2.433735
## 3041   February/2020 Feb 2020 2020-02-01             2    2.715909
## 3042   February/2020 Feb 2020 2020-02-01             2    2.637195
## 3043   February/2020 Feb 2020 2020-02-01             2    2.560403
## 3044   February/2020 Feb 2020 2020-02-01             2    2.635379
## 3045   February/2020 Feb 2020 2020-02-01             2    2.530675
## 3046   February/2020 Feb 2020 2020-02-01             2    2.761290
## 3047   February/2020 Feb 2020 2020-02-01             2    2.783333
## 3048   February/2020 Feb 2020 2020-02-01             2    2.670213
## 3049   February/2020 Feb 2020 2020-02-01             2    2.756014
## 3050   February/2020 Feb 2020 2020-02-01             2    2.613636
## 3051   February/2020 Feb 2020 2020-02-01             2    2.401961
## 3052   February/2020 Feb 2020 2020-02-01             2    2.507553
## 3053   February/2020 Feb 2020 2020-02-01             2    2.643123
## 3054   February/2020 Feb 2020 2020-02-01             2    2.734426
## 3055   February/2020 Feb 2020 2020-02-01             2    2.601375
## 3056   February/2020 Feb 2020 2020-02-01             2    2.626230
## 3057   February/2020 Feb 2020 2020-02-01             2    2.633094
## 3058   February/2020 Feb 2020 2020-02-01             2    2.435644
## 3059   February/2020 Feb 2020 2020-02-01             2    2.559871
## 3060   February/2020 Feb 2020 2020-02-01             2    2.695652
## 3061   February/2020 Feb 2020 2020-02-01             2    2.658784
## 3062   February/2020 Feb 2020 2020-02-01             2    2.644951
## 3063   February/2020 Feb 2020 2020-02-01             2    2.652174
## 3064   February/2020 Feb 2020 2020-02-01             2    2.603960
## 3065   February/2020 Feb 2020 2020-02-01             2    2.665672
## 3066   February/2020 Feb 2020 2020-02-01             2    2.706371
## 3067   February/2020 Feb 2020 2020-02-01             2    2.776978
## 3068   February/2020 Feb 2020 2020-02-01             2    2.661677
## 3069   February/2020 Feb 2020 2020-02-01             2    2.745704
## 3070   February/2020 Feb 2020 2020-02-01             2    2.518519
## 3071   February/2020 Feb 2020 2020-02-01             2    2.682759
## 3072   February/2020 Feb 2020 2020-02-01             2    2.610169
## 3073   February/2020 Feb 2020 2020-02-01             2    2.773973
## 3074   February/2020 Feb 2020 2020-02-01             2    2.426513
## 3075   February/2020 Feb 2020 2020-02-01             2    2.500000
## 3076   February/2020 Feb 2020 2020-02-01             2    2.077739
## 3077   February/2020 Feb 2020 2020-02-01             2    2.695652
## 3078   February/2020 Feb 2020 2020-02-01             2    2.096154
## 3079   February/2020 Feb 2020 2020-02-01             2    2.708609
## 3080   February/2020 Feb 2020 2020-02-01             2    1.898496
## 3081   February/2020 Feb 2020 2020-02-01             2    1.655172
## 3082   February/2020 Feb 2020 2020-02-01             2    1.625387
## 3083   February/2020 Feb 2020 2020-02-01             2    2.021818
## 3084   February/2020 Feb 2020 2020-02-01             2    2.506849
## 3085   February/2020 Feb 2020 2020-02-01             2    1.485816
## 3086   February/2020 Feb 2020 2020-02-01             2    1.591837
## 3087   February/2020 Feb 2020 2020-02-01             2    1.753906
## 3088   February/2020 Feb 2020 2020-02-01             2    1.808140
## 3089   February/2020 Feb 2020 2020-02-01             2    1.587629
## 3090   February/2020 Feb 2020 2020-02-01             2    1.638393
## 3091   February/2020 Feb 2020 2020-02-01             2    2.562937
## 3092   February/2020 Feb 2020 2020-02-01             2    2.491620
## 3093   February/2020 Feb 2020 2020-02-01             2    2.516667
## 3094   February/2020 Feb 2020 2020-02-01             2    2.556667
## 3095   February/2020 Feb 2020 2020-02-01             2    2.821561
## 3096   February/2020 Feb 2020 2020-02-01             2    1.663121
## 3097   February/2020 Feb 2020 2020-02-01             2    1.618729
## 3098   February/2020 Feb 2020 2020-02-01             2    1.834677
## 3099   February/2020 Feb 2020 2020-02-01             2    1.686792
## 3100   February/2020 Feb 2020 2020-02-01             2    2.550409
## 3101   February/2020 Feb 2020 2020-02-01             2    2.296407
## 3102   February/2020 Feb 2020 2020-02-01             2    2.515723
## 3103   February/2020 Feb 2020 2020-02-01             2    2.609756
## 3104   February/2020 Feb 2020 2020-02-01             2    1.696370
## 3105   February/2020 Feb 2020 2020-02-01             2    1.709677
## 3106   February/2020 Feb 2020 2020-02-01             2    1.635739
## 3107   February/2020 Feb 2020 2020-02-01             2    1.527273
## 3108   February/2020 Feb 2020 2020-02-01             2    1.846473
## 3109   February/2020 Feb 2020 2020-02-01             2    1.905263
## 3110   February/2020 Feb 2020 2020-02-01             2    1.586331
## 3111   February/2020 Feb 2020 2020-02-01             2    1.738971
## 3112   February/2020 Feb 2020 2020-02-01             2    1.695652
## 3113   February/2020 Feb 2020 2020-02-01             2    1.520492
## 3114   February/2020 Feb 2020 2020-02-01             2    1.507812
## 3115   February/2020 Feb 2020 2020-02-01             2    1.562264
## 3116   February/2020 Feb 2020 2020-02-01             2    1.751037
## 3117   February/2020 Feb 2020 2020-02-01             2    1.531381
## 3118   February/2020 Feb 2020 2020-02-01             2    1.569767
## 3119   February/2020 Feb 2020 2020-02-01             2    1.673981
## 3120   February/2020 Feb 2020 2020-02-01             2    2.098765
## 3121   February/2020 Feb 2020 2020-02-01             2    1.653137
## 3122   February/2020 Feb 2020 2020-02-01             2    1.596491
## 3123   February/2020 Feb 2020 2020-02-01             2    1.704050
## 3124   February/2020 Feb 2020 2020-02-01             2    1.521429
## 3125   February/2020 Feb 2020 2020-02-01             2    1.813187
## 3126   February/2020 Feb 2020 2020-02-01             2    1.751938
## 3127   February/2020 Feb 2020 2020-02-01             2    1.666667
## 3128   February/2020 Feb 2020 2020-02-01             2    1.745875
## 3129   February/2020 Feb 2020 2020-02-01             2    1.576052
## 3130   February/2020 Feb 2020 2020-02-01             2    1.626866
## 3131   February/2020 Feb 2020 2020-02-01             2    2.589189
## 3132   February/2020 Feb 2020 2020-02-01             2    1.675573
## 3133   February/2020 Feb 2020 2020-02-01             2    1.669492
## 3134   February/2020 Feb 2020 2020-02-01             2    1.549801
## 3135   February/2020 Feb 2020 2020-02-01             2    1.607914
## 3136   February/2020 Feb 2020 2020-02-01             2    2.510638
## 3137   February/2020 Feb 2020 2020-02-01             2    1.836177
## 3138   February/2020 Feb 2020 2020-02-01             2    1.667752
## 3139   February/2020 Feb 2020 2020-02-01             2    1.761566
## 3140   February/2020 Feb 2020 2020-02-01             2    1.553459
## 3141   February/2020 Feb 2020 2020-02-01             2    1.714286
## 3142   February/2020 Feb 2020 2020-02-01             2    1.584775
## 3143   February/2020 Feb 2020 2020-02-01             2    2.649231
## 3144   February/2020 Feb 2020 2020-02-01             2    1.712644
## 3145   February/2020 Feb 2020 2020-02-01             2    1.597270
## 3146   February/2020 Feb 2020 2020-02-01             2    2.612500
## 3147   February/2020 Feb 2020 2020-02-01             2    1.588435
## 3148   February/2020 Feb 2020 2020-02-01             2    2.724138
## 3149   February/2020 Feb 2020 2020-02-01             2    1.875000
## 3150   February/2020 Feb 2020 2020-02-01             2    2.692308
## 3151   February/2020 Feb 2020 2020-02-01             2    2.620779
## 3152   February/2020 Feb 2020 2020-02-01             2    2.445230
## 3153   February/2020 Feb 2020 2020-02-01             2    2.471751
## 3154   February/2020 Feb 2020 2020-02-01             2    2.576803
## 3155   February/2020 Feb 2020 2020-02-01             2    2.638365
## 3156   February/2020 Feb 2020 2020-02-01             2    2.525641
## 3157   February/2020 Feb 2020 2020-02-01             2    2.523810
## 3158   February/2020 Feb 2020 2020-02-01             2    2.649832
## 3159   February/2020 Feb 2020 2020-02-01             2    2.509036
## 3160   February/2020 Feb 2020 2020-02-01             2    2.641447
## 3161   February/2020 Feb 2020 2020-02-01             2    2.554945
## 3162   February/2020 Feb 2020 2020-02-01             2    2.649718
## 3163   February/2020 Feb 2020 2020-02-01             2    2.672566
## 3164   February/2020 Feb 2020 2020-02-01             2    2.609756
## 3165   February/2020 Feb 2020 2020-02-01             2    2.508152
## 3166   February/2020 Feb 2020 2020-02-01             2    2.704180
## 3167   February/2020 Feb 2020 2020-02-01             2    2.549575
## 3168   February/2020 Feb 2020 2020-02-01             2    2.562500
## 3169   February/2020 Feb 2020 2020-02-01             2    2.616822
## 3170   February/2020 Feb 2020 2020-02-01             2    2.579114
## 3171   February/2020 Feb 2020 2020-02-01             2    2.610224
## 3172   February/2020 Feb 2020 2020-02-01             2    2.607362
## 3173   February/2020 Feb 2020 2020-02-01             2    2.587744
## 3174   February/2020 Feb 2020 2020-02-01             2    2.666667
## 3175   February/2020 Feb 2020 2020-02-01             2    2.665574
## 3176   February/2020 Feb 2020 2020-02-01             2    2.667732
## 3177   February/2020 Feb 2020 2020-02-01             2    2.550898
## 3178   February/2020 Feb 2020 2020-02-01             2    2.833333
## 3179   February/2020 Feb 2020 2020-02-01             2    2.861486
## 3180   February/2020 Feb 2020 2020-02-01             2    2.627660
## 3181   February/2020 Feb 2020 2020-02-01             2    2.797203
## 3182   February/2020 Feb 2020 2020-02-01             2    2.648649
## 3183   February/2020 Feb 2020 2020-02-01             2    2.713043
## 3184   February/2020 Feb 2020 2020-02-01             2    2.777778
## 3185   February/2020 Feb 2020 2020-02-01             2    2.662500
## 3186   February/2020 Feb 2020 2020-02-01             2    2.752542
## 3187   February/2020 Feb 2020 2020-02-01             2    2.712025
## 3188   February/2020 Feb 2020 2020-02-01             2    2.597222
## 3189   February/2020 Feb 2020 2020-02-01             2    2.679412
## 3190   February/2020 Feb 2020 2020-02-01             2    2.651877
## 3191   February/2020 Feb 2020 2020-02-01             2    2.721088
## 3192   February/2020 Feb 2020 2020-02-01             2    2.725632
## 3193   February/2020 Feb 2020 2020-02-01             2    2.652568
## 3194   February/2020 Feb 2020 2020-02-01             2    2.676976
## 3195   February/2020 Feb 2020 2020-02-01             2    2.733333
## 3196   February/2020 Feb 2020 2020-02-01             2    2.591900
## 3197   February/2020 Feb 2020 2020-02-01             2    2.672026
## 3198   February/2020 Feb 2020 2020-02-01             2    2.791086
## 3199   February/2020 Feb 2020 2020-02-01             2    2.569697
## 3200   February/2020 Feb 2020 2020-02-01             2    2.943925
## 3201   February/2020 Feb 2020 2020-02-01             2    2.824627
## 3202   February/2020 Feb 2020 2020-02-01             2    2.793103
## 3203   February/2020 Feb 2020 2020-02-01             2    2.705696
## 3204   February/2020 Feb 2020 2020-02-01             2    2.716981
## 3205   February/2020 Feb 2020 2020-02-01             2    2.474916
## 3206   February/2020 Feb 2020 2020-02-01             2    1.740310
## 3207   February/2020 Feb 2020 2020-02-01             2    1.629482
## 3208   February/2020 Feb 2020 2020-02-01             2    1.691781
## 3209   February/2020 Feb 2020 2020-02-01             2    1.650190
## 3210   February/2020 Feb 2020 2020-02-01             2    1.479876
## 3211   February/2020 Feb 2020 2020-02-01             2    2.711712
## 3212   February/2020 Feb 2020 2020-02-01             2    2.375000
## 3213   February/2020 Feb 2020 2020-02-01             2    1.676692
## 3214   February/2020 Feb 2020 2020-02-01             2    1.571930
## 3215   February/2020 Feb 2020 2020-02-01             2    1.654709
## 3216   February/2020 Feb 2020 2020-02-01             2    2.843636
## 3217   February/2020 Feb 2020 2020-02-01             2    1.692810
## 3218   February/2020 Feb 2020 2020-02-01             2    1.540193
## 3219   February/2020 Feb 2020 2020-02-01             2    1.475758
## 3220   February/2020 Feb 2020 2020-02-01             2    1.671642
## 3221   February/2020 Feb 2020 2020-02-01             2    1.596000
## 3222   February/2020 Feb 2020 2020-02-01             2    1.801724
## 3223   February/2020 Feb 2020 2020-02-01             2    2.613990
## 3224   February/2020 Feb 2020 2020-02-01             2    2.523810
## 3225   February/2020 Feb 2020 2020-02-01             2    2.523196
## 3226    October/2019 Oct 2019 2019-10-01            10    2.642623
## 3227    October/2019 Oct 2019 2019-10-01            10    2.531447
## 3228    October/2019 Oct 2019 2019-10-01            10    2.461126
## 3229    October/2019 Oct 2019 2019-10-01            10    2.546547
## 3230    October/2019 Oct 2019 2019-10-01            10    2.609231
## 3231    October/2019 Oct 2019 2019-10-01            10    2.592262
## 3232    October/2019 Oct 2019 2019-10-01            10    2.581281
## 3233    October/2019 Oct 2019 2019-10-01            10    2.664360
## 3234    October/2019 Oct 2019 2019-10-01            10    1.624242
## 3235    October/2019 Oct 2019 2019-10-01            10    2.652778
## 3236    October/2019 Oct 2019 2019-10-01            10    2.663333
## 3237    October/2019 Oct 2019 2019-10-01            10    2.631399
## 3238    October/2019 Oct 2019 2019-10-01            10    2.731959
## 3239    October/2019 Oct 2019 2019-10-01            10    2.677316
## 3240    October/2019 Oct 2019 2019-10-01            10    1.859107
## 3241    October/2019 Oct 2019 2019-10-01            10    1.715789
## 3242    October/2019 Oct 2019 2019-10-01            10    2.557003
## 3243    October/2019 Oct 2019 2019-10-01            10    2.493188
## 3244    October/2019 Oct 2019 2019-10-01            10    1.751678
## 3245    October/2019 Oct 2019 2019-10-01            10    2.560773
## 3246    October/2019 Oct 2019 2019-10-01            10    2.893103
## 3247    October/2019 Oct 2019 2019-10-01            10    2.733788
## 3248    October/2019 Oct 2019 2019-10-01            10    2.682119
## 3249    October/2019 Oct 2019 2019-10-01            10    2.729345
## 3250    October/2019 Oct 2019 2019-10-01            10    2.713415
## 3251    October/2019 Oct 2019 2019-10-01            10    2.658462
## 3252    October/2019 Oct 2019 2019-10-01            10    2.616129
## 3253    October/2019 Oct 2019 2019-10-01            10    2.612466
## 3254    October/2019 Oct 2019 2019-10-01            10    2.815436
## 3255    October/2019 Oct 2019 2019-10-01            10    2.665746
## 3256    October/2019 Oct 2019 2019-10-01            10    2.681690
## 3257    October/2019 Oct 2019 2019-10-01            10    2.833333
## 3258    October/2019 Oct 2019 2019-10-01            10    2.603261
## 3259    October/2019 Oct 2019 2019-10-01            10    2.567123
## 3260    October/2019 Oct 2019 2019-10-01            10    1.733788
## 3261    October/2019 Oct 2019 2019-10-01            10    2.577181
## 3262    October/2019 Oct 2019 2019-10-01            10    2.767956
## 3263    October/2019 Oct 2019 2019-10-01            10    2.672727
## 3264    October/2019 Oct 2019 2019-10-01            10    2.654255
## 3265    October/2019 Oct 2019 2019-10-01            10    2.675439
## 3266    October/2019 Oct 2019 2019-10-01            10    2.679790
## 3267    October/2019 Oct 2019 2019-10-01            10    2.737952
## 3268    October/2019 Oct 2019 2019-10-01            10    2.796657
## 3269    October/2019 Oct 2019 2019-10-01            10    2.697885
## 3270    October/2019 Oct 2019 2019-10-01            10    2.608696
## 3271    October/2019 Oct 2019 2019-10-01            10    2.673854
## 3272    October/2019 Oct 2019 2019-10-01            10    2.614493
## 3273    October/2019 Oct 2019 2019-10-01            10    2.735294
## 3274    October/2019 Oct 2019 2019-10-01            10    2.552707
## 3275    October/2019 Oct 2019 2019-10-01            10    1.904255
## 3276    October/2019 Oct 2019 2019-10-01            10    2.734899
## 3277    October/2019 Oct 2019 2019-10-01            10    2.445652
## 3278    October/2019 Oct 2019 2019-10-01            10    2.668966
## 3279    October/2019 Oct 2019 2019-10-01            10    2.547945
## 3280    October/2019 Oct 2019 2019-10-01            10    2.625455
## 3281    October/2019 Oct 2019 2019-10-01            10    2.609756
## 3282    October/2019 Oct 2019 2019-10-01            10    2.683673
## 3283    October/2019 Oct 2019 2019-10-01            10    2.516304
## 3284    October/2019 Oct 2019 2019-10-01            10    2.658307
## 3285    October/2019 Oct 2019 2019-10-01            10    2.597633
## 3286    October/2019 Oct 2019 2019-10-01            10    2.654952
## 3287    October/2019 Oct 2019 2019-10-01            10    2.557377
## 3288    October/2019 Oct 2019 2019-10-01            10    2.677143
## 3289    October/2019 Oct 2019 2019-10-01            10    2.806950
## 3290    October/2019 Oct 2019 2019-10-01            10    2.626289
## 3291    October/2019 Oct 2019 2019-10-01            10    2.617241
## 3292    October/2019 Oct 2019 2019-10-01            10    2.868339
## 3293    October/2019 Oct 2019 2019-10-01            10    2.845070
## 3294    October/2019 Oct 2019 2019-10-01            10    2.698507
## 3295    October/2019 Oct 2019 2019-10-01            10    2.680912
## 3296    October/2019 Oct 2019 2019-10-01            10    1.907631
## 3297    October/2019 Oct 2019 2019-10-01            10    2.513678
## 3298    October/2019 Oct 2019 2019-10-01            10    2.566085
## 3299    October/2019 Oct 2019 2019-10-01            10    2.821086
## 3300    October/2019 Oct 2019 2019-10-01            10    2.713864
## 3301    October/2019 Oct 2019 2019-10-01            10    2.765568
## 3302    October/2019 Oct 2019 2019-10-01            10    2.627451
## 3303    October/2019 Oct 2019 2019-10-01            10    2.691824
## 3304    October/2019 Oct 2019 2019-10-01            10    2.754601
## 3305    October/2019 Oct 2019 2019-10-01            10    2.758427
## 3306    October/2019 Oct 2019 2019-10-01            10    2.848185
## 3307    October/2019 Oct 2019 2019-10-01            10    2.587940
## 3308    October/2019 Oct 2019 2019-10-01            10    2.751678
## 3309    October/2019 Oct 2019 2019-10-01            10    2.700000
## 3310    October/2019 Oct 2019 2019-10-01            10    2.622356
## 3311    October/2019 Oct 2019 2019-10-01            10    2.569322
## 3312    October/2019 Oct 2019 2019-10-01            10    2.693603
## 3313    October/2019 Oct 2019 2019-10-01            10    2.575563
## 3314   December/2016 Dec 2016 2016-12-01            12    2.663185
## 3315   December/2016 Dec 2016 2016-12-01            12    1.627907
## 3316   December/2016 Dec 2016 2016-12-01            12    1.912536
## 3317   December/2016 Dec 2016 2016-12-01            12    1.714286
## 3318    October/2019 Oct 2019 2019-10-01            10    2.669540
## 3319    October/2019 Oct 2019 2019-10-01            10    2.738739
## 3320    October/2019 Oct 2019 2019-10-01            10    2.601770
## 3321    October/2019 Oct 2019 2019-10-01            10    2.811688
## 3322    October/2019 Oct 2019 2019-10-01            10    2.621053
## 3323    October/2019 Oct 2019 2019-10-01            10    2.616519
## 3324    October/2019 Oct 2019 2019-10-01            10    2.645646
## 3325    October/2019 Oct 2019 2019-10-01            10    2.735016
## 3326    October/2019 Oct 2019 2019-10-01            10    2.580475
## 3327    October/2019 Oct 2019 2019-10-01            10    2.567976
## 3328    October/2019 Oct 2019 2019-10-01            10    1.647940
## 3329    October/2019 Oct 2019 2019-10-01            10    2.681818
## 3330    October/2019 Oct 2019 2019-10-01            10    1.730435
## 3331    October/2019 Oct 2019 2019-10-01            10    2.623794
## 3332    October/2019 Oct 2019 2019-10-01            10    2.845506
## 3333    October/2019 Oct 2019 2019-10-01            10    2.783088
## 3334    October/2019 Oct 2019 2019-10-01            10    2.438356
## 3335    October/2019 Oct 2019 2019-10-01            10    2.554913
## 3336    October/2019 Oct 2019 2019-10-01            10    2.627760
## 3337    October/2019 Oct 2019 2019-10-01            10    2.663073
## 3338    October/2019 Oct 2019 2019-10-01            10    2.695341
## 3339    October/2019 Oct 2019 2019-10-01            10    2.570571
## 3340        May/2019 May 2019 2019-05-01             5    2.498592
## 3341        May/2019 May 2019 2019-05-01             5    1.587459
## 3342        May/2019 May 2019 2019-05-01             5    2.790123
## 3343        May/2019 May 2019 2019-05-01             5    2.841499
## 3344        May/2019 May 2019 2019-05-01             5    2.629213
## 3345        May/2019 May 2019 2019-05-01             5    2.706897
## 3346        May/2019 May 2019 2019-05-01             5    2.706840
## 3347        May/2019 May 2019 2019-05-01             5    2.712281
## 3348        May/2019 May 2019 2019-05-01             5    2.503521
## 3349        May/2019 May 2019 2019-05-01             5    2.579937
## 3350        May/2019 May 2019 2019-05-01             5    2.824561
## 3351        May/2019 May 2019 2019-05-01             5    2.731250
## 3352        May/2019 May 2019 2019-05-01             5    2.900662
## 3353        May/2019 May 2019 2019-05-01             5    2.284884
## 3354        May/2019 May 2019 2019-05-01             5    2.666667
## 3355        May/2019 May 2019 2019-05-01             5    2.766154
## 3356        May/2019 May 2019 2019-05-01             5    2.677165
## 3357        May/2019 May 2019 2019-05-01             5    2.854545
## 3358        May/2019 May 2019 2019-05-01             5    2.591503
## 3359        May/2019 May 2019 2019-05-01             5    2.325228
## 3360        May/2019 May 2019 2019-05-01             5    2.715596
## 3361        May/2019 May 2019 2019-05-01             5    2.523962
## 3362        May/2019 May 2019 2019-05-01             5    2.748344
## 3363        May/2019 May 2019 2019-05-01             5    3.248227
## 3364        May/2019 May 2019 2019-05-01             5    2.802985
## 3365        May/2019 May 2019 2019-05-01             5    2.889213
## 3366        May/2019 May 2019 2019-05-01             5    2.597911
## 3367        May/2019 May 2019 2019-05-01             5    2.439898
## 3368        May/2019 May 2019 2019-05-01             5    2.759791
## 3369        May/2019 May 2019 2019-05-01             5    2.934426
## 3370        May/2019 May 2019 2019-05-01             5    2.718579
## 3371        May/2019 May 2019 2019-05-01             5    2.692771
## 3372        May/2019 May 2019 2019-05-01             5    2.615873
## 3373        May/2019 May 2019 2019-05-01             5    3.033784
## 3374        May/2019 May 2019 2019-05-01             5    2.812698
## 3375        May/2019 May 2019 2019-05-01             5    2.730650
## 3376        May/2019 May 2019 2019-05-01             5    2.390909
## 3377        May/2019 May 2019 2019-05-01             5    2.729642
## 3378        May/2019 May 2019 2019-05-01             5    2.806878
## 3379        May/2019 May 2019 2019-05-01             5    2.325581
## 3380        May/2019 May 2019 2019-05-01             5    2.646875
## 3381        May/2019 May 2019 2019-05-01             5    2.740053
## 3382        May/2019 May 2019 2019-05-01             5    2.208000
## 3383        May/2019 May 2019 2019-05-01             5    2.219917
## 3384        May/2019 May 2019 2019-05-01             5    3.026012
## 3385        May/2019 May 2019 2019-05-01             5    2.792793
## 3386        May/2019 May 2019 2019-05-01             5    2.544000
## 3387        May/2019 May 2019 2019-05-01             5    2.697128
## 3388        May/2019 May 2019 2019-05-01             5    2.617021
## 3389        May/2019 May 2019 2019-05-01             5    2.567164
## 3390        May/2019 May 2019 2019-05-01             5    2.525316
## 3391        May/2019 May 2019 2019-05-01             5    2.812689
## 3392        May/2019 May 2019 2019-05-01             5    3.041045
## 3393        May/2019 May 2019 2019-05-01             5    2.948387
## 3394        May/2019 May 2019 2019-05-01             5    2.887755
## 3395        May/2019 May 2019 2019-05-01             5    2.571816
## 3396        May/2019 May 2019 2019-05-01             5    2.402367
## 3397        May/2019 May 2019 2019-05-01             5    2.720745
## 3398        May/2019 May 2019 2019-05-01             5    2.620000
## 3399        May/2019 May 2019 2019-05-01             5    2.951140
## 3400        May/2019 May 2019 2019-05-01             5    2.974522
## 3401        May/2019 May 2019 2019-05-01             5    2.856061
## 3402        May/2019 May 2019 2019-05-01             5    2.233645
## 3403        May/2019 May 2019 2019-05-01             5    2.809816
## 3404        May/2019 May 2019 2019-05-01             5    2.506083
## 3405        May/2019 May 2019 2019-05-01             5    2.759076
## 3406        May/2019 May 2019 2019-05-01             5    2.625330
## 3407        May/2019 May 2019 2019-05-01             5    2.780576
## 3408        May/2019 May 2019 2019-05-01             5    2.584000
## 3409        May/2019 May 2019 2019-05-01             5    2.731788
## 3410        May/2019 May 2019 2019-05-01             5    2.671010
## 3411        May/2019 May 2019 2019-05-01             5    2.567647
## 3412        May/2019 May 2019 2019-05-01             5    2.891374
## 3413        May/2019 May 2019 2019-05-01             5    2.912621
## 3414        May/2019 May 2019 2019-05-01             5    2.812298
## 3415        May/2019 May 2019 2019-05-01             5    2.216667
## 3416        May/2019 May 2019 2019-05-01             5    2.972892
## 3417        May/2019 May 2019 2019-05-01             5    2.502890
## 3418        May/2019 May 2019 2019-05-01             5    2.889273
## 3419        May/2019 May 2019 2019-05-01             5    2.715084
## 3420        May/2019 May 2019 2019-05-01             5    2.598662
## 3421        May/2019 May 2019 2019-05-01             5    2.309783
## 3422        May/2019 May 2019 2019-05-01             5    2.404624
## 3423        May/2019 May 2019 2019-05-01             5    2.803636
## 3424        May/2019 May 2019 2019-05-01             5    2.541547
## 3425        May/2019 May 2019 2019-05-01             5    2.386010
## 3426        May/2019 May 2019 2019-05-01             5    2.504505
## 3427        May/2019 May 2019 2019-05-01             5    2.431877
## 3428        May/2019 May 2019 2019-05-01             5    2.483283
## 3429        May/2019 May 2019 2019-05-01             5    2.294737
## 3430        May/2019 May 2019 2019-05-01             5    2.706522
## 3431        May/2019 May 2019 2019-05-01             5    1.746094
## 3432        May/2019 May 2019 2019-05-01             5    2.322767
## 3433        May/2019 May 2019 2019-05-01             5    2.802395
## 3434        May/2019 May 2019 2019-05-01             5    2.714744
## 3435        May/2019 May 2019 2019-05-01             5    2.848943
## 3436        May/2019 May 2019 2019-05-01             5    2.312155
## 3437        May/2019 May 2019 2019-05-01             5    2.754601
## 3438        May/2019 May 2019 2019-05-01             5    2.798780
## 3439        May/2019 May 2019 2019-05-01             5    2.433526
## 3440        May/2019 May 2019 2019-05-01             5    2.523810
## 3441        May/2019 May 2019 2019-05-01             5    2.450151
## 3442        May/2019 May 2019 2019-05-01             5    2.500000
## 3443        May/2019 May 2019 2019-05-01             5    2.448718
## 3444        May/2019 May 2019 2019-05-01             5    2.264935
## 3445        May/2019 May 2019 2019-05-01             5    2.314149
## 3446        May/2019 May 2019 2019-05-01             5    2.173469
## 3447        May/2019 May 2019 2019-05-01             5    2.354930
## 3448        May/2019 May 2019 2019-05-01             5    2.858156
## 3449        May/2019 May 2019 2019-05-01             5    2.717087
## 3450        May/2019 May 2019 2019-05-01             5    2.594901
## 3451        May/2019 May 2019 2019-05-01             5    2.626543
## 3452        May/2019 May 2019 2019-05-01             5    2.544118
## 3453        May/2019 May 2019 2019-05-01             5    2.475177
## 3454        May/2019 May 2019 2019-05-01             5    2.643766
## 3455        May/2019 May 2019 2019-05-01             5    2.752266
## 3456        May/2019 May 2019 2019-05-01             5    2.539326
## 3457        May/2019 May 2019 2019-05-01             5    2.724490
## 3458        May/2019 May 2019 2019-05-01             5    2.524590
## 3459        May/2019 May 2019 2019-05-01             5    2.536388
## 3460        May/2019 May 2019 2019-05-01             5    2.768769
## 3461        May/2019 May 2019 2019-05-01             5    2.667785
## 3462        May/2019 May 2019 2019-05-01             5    2.465969
## 3463        May/2019 May 2019 2019-05-01             5    2.640957
## 3464        May/2019 May 2019 2019-05-01             5    2.591160
## 3465        May/2019 May 2019 2019-05-01             5    2.653165
## 3466        May/2019 May 2019 2019-05-01             5    2.548287
## 3467        May/2019 May 2019 2019-05-01             5    2.519231
## 3468        May/2019 May 2019 2019-05-01             5    2.540404
## 3469        May/2019 May 2019 2019-05-01             5    2.670360
## 3470        May/2019 May 2019 2019-05-01             5    2.734568
## 3471        May/2019 May 2019 2019-05-01             5    2.720548
## 3472        May/2019 May 2019 2019-05-01             5    2.464286
## 3473        May/2019 May 2019 2019-05-01             5    2.557864
## 3474        May/2019 May 2019 2019-05-01             5    2.428571
## 3475        May/2019 May 2019 2019-05-01             5    2.812689
## 3476        May/2019 May 2019 2019-05-01             5    2.775194
## 3477        May/2019 May 2019 2019-05-01             5    2.892308
## 3478        May/2019 May 2019 2019-05-01             5    2.866477
## 3479        May/2019 May 2019 2019-05-01             5    2.473684
## 3480        May/2019 May 2019 2019-05-01             5    2.552347
## 3481        May/2019 May 2019 2019-05-01             5    2.696721
## 3482        May/2019 May 2019 2019-05-01             5    2.634868
## 3483        May/2019 May 2019 2019-05-01             5    2.356209
## 3484        May/2019 May 2019 2019-05-01             5    2.264151
## 3485        May/2019 May 2019 2019-05-01             5    2.032051
##      wing_morph_binom     X.utm   Y.utm
## 1                   1 1010045.4 2956118
## 2                   1 1010045.4 2956118
## 3                   1 1010045.4 2956118
## 4                   1 1010045.4 2956118
## 5                   1 1010045.4 2956118
## 6                   1 1010045.4 2956118
## 7                   1 1010045.4 2956118
## 8                   1 1010045.4 2956118
## 9                   1 1010045.4 2956118
## 10                  1 1010045.4 2956118
## 11                  1 1010045.4 2956118
## 12                  1 1010045.4 2956118
## 13                  1 1010045.4 2956118
## 14                  1 1010045.4 2956118
## 15                  0 1010045.4 2956118
## 16                  1 1010045.4 2956118
## 17                  1 1010045.4 2956118
## 18                  1 1010045.4 2956118
## 19                  1 1010045.4 2956118
## 20                  1 1010045.4 2956118
## 21                  1 1010045.4 2956118
## 22                  1 1010045.4 2956118
## 23                  1 1010045.4 2956118
## 24                  1 1010045.4 2956118
## 25                  1 1010045.4 2956118
## 26                  1 1010045.4 2956118
## 27                  1 1010045.4 2956118
## 28                  1 1010045.4 2956118
## 29                  0 1010045.4 2956118
## 30                  0 1010045.4 2956118
## 31                  1 1010045.4 2956118
## 32                  1 1010045.4 2956118
## 33                  1 1010045.4 2956118
## 34                  1 1010045.4 2956118
## 35                  0 1010045.4 2956118
## 36                  1 1010045.4 2956118
## 37                  1 1010045.4 2956118
## 38                  1 1010045.4 2956118
## 39                  1 1010045.4 2956118
## 40                  1 1010045.4 2956118
## 41                  1 1010045.4 2956118
## 42                  1 1010045.4 2956118
## 43                  1 1010045.4 2956118
## 44                  0 1010045.4 2956118
## 45                  1 1010045.4 2956118
## 46                  1 1010045.4 2956118
## 47                  1 1010045.4 2956118
## 48                  0 1010045.4 2956118
## 49                  1 1010045.4 2956118
## 50                  1 1010045.4 2956118
## 51                  1 1010045.4 2956118
## 52                  1 1010045.4 2956118
## 53                  1 1010045.4 2956118
## 54                  1 1010045.4 2956118
## 55                  1 1010045.4 2956118
## 56                  1 1010045.4 2956118
## 57                  1 1010045.4 2956118
## 58                  1 1010045.4 2956118
## 59                  1 1010045.4 2956118
## 60                  1 1010045.4 2956118
## 61                  1 1010045.4 2956118
## 62                  1 1010045.4 2956118
## 63                  1 1010045.4 2956118
## 64                  1 1010045.4 2956118
## 65                  1 1010045.4 2956118
## 66                  1 1010045.4 2956118
## 67                  1 1010045.4 2956118
## 68                  1 1010045.4 2956118
## 69                  1 1010045.4 2956118
## 70                  1 1010045.4 2956118
## 71                  1 1010045.4 2956118
## 72                  1 1010045.4 2956118
## 73                  1 1010045.4 2956118
## 74                  1 1010045.4 2956118
## 75                  1 1010045.4 2956118
## 76                  0 1158272.9 2844458
## 77                  1 1158272.9 2844458
## 78                  1 1158272.9 2844458
## 79                  1 1158272.9 2844458
## 80                  0 1158272.9 2844458
## 81                  1 1158272.9 2844458
## 82                  0 1158272.9 2844458
## 83                  0 1158272.9 2844458
## 84                  1 1158272.9 2844458
## 85                  0 1158272.9 2844458
## 86                  0 1158272.9 2844458
## 87                  0 1158272.9 2844458
## 88                  0 1158272.9 2844458
## 89                  0 1158272.9 2844458
## 90                  0 1158272.9 2844458
## 91                  0 1158272.9 2844458
## 92                  0 1158272.9 2844458
## 93                  1 1158272.9 2844458
## 94                  1 1158272.9 2844458
## 95                  0 1158272.9 2844458
## 96                  1 1158272.9 2844458
## 97                  1 1158272.9 2844458
## 98                  1 1158272.9 2844458
## 99                  1 1158272.9 2844458
## 100                 0 1158272.9 2844458
## 101                 1 1158272.9 2844458
## 102                 1 1158272.9 2844458
## 103                 1 1158272.9 2844458
## 104                 1 1158272.9 2844458
## 105                 1 1158272.9 2844458
## 106                 1 1158272.9 2844458
## 107                 0 1158272.9 2844458
## 108                 1 1158272.9 2844458
## 109                 1 1158272.9 2844458
## 110                 1 1158272.9 2844458
## 111                 1 1158272.9 2844458
## 112                 0 1158272.9 2844458
## 113                 1 1158272.9 2844458
## 114                 1 1155605.3 2835437
## 115                 1 1155605.3 2835437
## 116                 1 1155605.3 2835437
## 117                 1 1155605.3 2835437
## 118                 1 1155605.3 2835437
## 119                 1 1155605.3 2835437
## 120                 1 1155605.3 2835437
## 121                 1 1155605.3 2835437
## 122                 1 1155605.3 2835437
## 123                 1 1155605.3 2835437
## 124                 1 1155605.3 2835437
## 125                 1 1155605.3 2835437
## 126                 1 1155605.3 2835437
## 127                 1 1155605.3 2835437
## 128                 1 1155605.3 2835437
## 129                 1 1155605.3 2835437
## 130                 1 1155605.3 2835437
## 131                 1 1155605.3 2835437
## 132                 1 1155605.3 2835437
## 133                 1 1155605.3 2835437
## 134                 1 1155605.3 2835437
## 135                 1 1155605.3 2835437
## 136                 1 1155605.3 2835437
## 137                 1 1155605.3 2835437
## 138                 1 1155605.3 2835437
## 139                 1 1155605.3 2835437
## 140                 1 1171365.6 2803203
## 141                 1 1171365.6 2803203
## 142                 1 1171365.6 2803203
## 143                 1 1171365.6 2803203
## 144                 0 1171365.6 2803203
## 145                 1 1171365.6 2803203
## 146                 1 1171365.6 2803203
## 147                 1 1171365.6 2803203
## 148                 1 1171365.6 2803203
## 149                 1 1171365.6 2803203
## 150                 0 1171365.6 2803203
## 151                 1 1171365.6 2803203
## 152                 1 1171365.6 2803203
## 153                 1 1171365.6 2803203
## 154                 1 1171365.6 2803203
## 155                 1 1171365.6 2803203
## 156                 1 1171365.6 2803203
## 157                 1 1171365.6 2803203
## 158                 1 1171365.6 2803203
## 159                 0 1171365.6 2803203
## 160                 1 1171365.6 2803203
## 161                 0 1171365.6 2803203
## 162                 1 1171365.6 2803203
## 163                 1 1171365.6 2803203
## 164                 1 1171365.6 2803203
## 165                 1 1171365.6 2803203
## 166                 1 1171365.6 2803203
## 167                 1 1171365.6 2803203
## 168                 1 1171365.6 2803203
## 169                 1 1171365.6 2803203
## 170                 1 1171365.6 2803203
## 171                 1 1171365.6 2803203
## 172                 1 1171365.6 2803203
## 173                 1 1171365.6 2803203
## 174                 1 1171365.6 2803203
## 175                 0 1171365.6 2803203
## 176                 1 1171365.6 2803203
## 177                 1 1171365.6 2803203
## 178                 1 1171365.6 2803203
## 179                 1 1171365.6 2803203
## 180                 1 1171365.6 2803203
## 181                 1 1171365.6 2803203
## 182                 0 1171365.6 2803203
## 183                 1 1171365.6 2803203
## 184                 0 1171365.6 2803203
## 185                 1 1171365.6 2803203
## 186                 1 1171365.6 2803203
## 187                 1 1171365.6 2803203
## 188                 1 1171365.6 2803203
## 189                 0 1171365.6 2803203
## 190                 0 1171365.6 2803203
## 191                 1 1171365.6 2803203
## 192                 1 1171365.6 2803203
## 193                 0 1171365.6 2803203
## 194                 0 1171365.6 2803203
## 195                 1 1171365.6 2803203
## 196                 1 1171365.6 2803203
## 197                 1 1171365.6 2803203
## 198                 1 1171365.6 2803203
## 199                 1 1171365.6 2803203
## 200                 1 1171365.6 2803203
## 201                 1 1034209.3 3102002
## 202                 1 1034209.3 3102002
## 203                 1 1034209.3 3102002
## 204                 1 1034209.3 3102002
## 205                 1 1034209.3 3102002
## 206                 1 1034209.3 3102002
## 207                 1 1034209.3 3102002
## 208                 1 1034209.3 3102002
## 209                 1 1034209.3 3102002
## 210                 1 1034209.3 3102002
## 211                 1 1034209.3 3102002
## 212                 1 1034209.3 3102002
## 213                 1 1034209.3 3102002
## 214                 0 1034209.3 3102002
## 215                 1 1034209.3 3102002
## 216                 0 1034209.3 3102002
## 217                 1 1034209.3 3102002
## 218                 0 1034209.3 3102002
## 219                 1 1034209.3 3102002
## 220                 1 1034209.3 3102002
## 221                 1 1034209.3 3102002
## 222                 1 1034209.3 3102002
## 223                 1 1034209.3 3102002
## 224                 1 1034209.3 3102002
## 225                 0 1034209.3 3102002
## 226                 1 1034209.3 3102002
## 227                 1 1034209.3 3102002
## 228                 1 1034209.3 3102002
## 229                 0 1034209.3 3102002
## 230                 1 1034209.3 3102002
## 231                 1 1034209.3 3102002
## 232                 1 1034209.3 3102002
## 233                 1 1034209.3 3102002
## 234                 1 1034209.3 3102002
## 235                 1 1034209.3 3102002
## 236                 1 1034209.3 3102002
## 237                 1 1034209.3 3102002
## 238                 1 1034209.3 3102002
## 239                 1 1034209.3 3102002
## 240                 1 1034209.3 3102002
## 241                 1 1034209.3 3102002
## 242                 0 1034209.3 3102002
## 243                 1 1034209.3 3102002
## 244                 1 1034209.3 3102002
## 245                 1 1034209.3 3102002
## 246                 1 1034209.3 3102002
## 247                 1 1034209.3 3102002
## 248                 1 1034209.3 3102002
## 249                 1 1034209.3 3102002
## 250                 1 1034209.3 3102002
## 251                 1 1034209.3 3102002
## 252                 1 1034209.3 3102002
## 253                 1 1034209.3 3102002
## 254                 1 1034209.3 3102002
## 255                 1 1034209.3 3102002
## 256                 1 1034209.3 3102002
## 257                 1 1034209.3 3102002
## 258                 0 1034209.3 3102002
## 259                 1 1034209.3 3102002
## 260                 1 1034209.3 3102002
## 261                 0 1000214.3 3196197
## 262                 0 1000214.3 3196197
## 263                 1 1000214.3 3196197
## 264                 0 1000214.3 3196197
## 265                 1 1000214.3 3196197
## 266                 0 1000214.3 3196197
## 267                 1 1000214.3 3196197
## 268                 1 1000214.3 3196197
## 269                 1 1000214.3 3196197
## 270                 1 1000214.3 3196197
## 271                 1 1000214.3 3196197
## 272                 1 1000214.3 3196197
## 273                 1 1000214.3 3196197
## 274                 0 1000214.3 3196197
## 275                 1 1000214.3 3196197
## 276                 1 1000214.3 3196197
## 277                 1 1000214.3 3196197
## 278                 1 1000214.3 3196197
## 279                 1 1000214.3 3196197
## 280                 1 1000214.3 3196197
## 281                 0 1000214.3 3196197
## 282                 1 1000214.3 3196197
## 283                 1 1000214.3 3196197
## 284                 0 1000214.3 3196197
## 285                 1 1000214.3 3196197
## 286                 1 1151165.2 2777107
## 287                 0 1151165.2 2777107
## 288                 1 1151165.2 2777107
## 289                 1 1151165.2 2777107
## 290                 1 1151165.2 2777107
## 291                 1 1151165.2 2777107
## 292                 1 1151165.2 2777107
## 293                 0 1151165.2 2777107
## 294                 1 1151165.2 2777107
## 295                 0 1151165.2 2777107
## 296                 0 1151165.2 2777107
## 297                 0 1151165.2 2777107
## 298                 1 1151165.2 2777107
## 299                 0 1151165.2 2777107
## 300                 1 1151165.2 2777107
## 301                 1 1151165.2 2777107
## 302                 1 1151165.2 2777107
## 303                 1 1151165.2 2777107
## 304                 0 1151165.2 2777107
## 305                 1 1151165.2 2777107
## 306                 1 1151165.2 2777107
## 307                 0 1151165.2 2777107
## 308                 0 1151165.2 2777107
## 309                 1 1151165.2 2777107
## 310                 0 1151165.2 2777107
## 311                 0 1151165.2 2777107
## 312                 0 1151165.2 2777107
## 313                 1 1151165.2 2777107
## 314                 1 1151165.2 2777107
## 315                 1 1151165.2 2777107
## 316                 1 1151165.2 2777107
## 317                 0 1151165.2 2777107
## 318                 0 1151165.2 2777107
## 319                 1 1151165.2 2777107
## 320                 0 1151165.2 2777107
## 321                 1 1151165.2 2777107
## 322                 1 1010045.4 2956118
## 323                 1 1010045.4 2956118
## 324                 1 1010045.4 2956118
## 325                 1 1010045.4 2956118
## 326                 1 1010045.4 2956118
## 327                 1 1010045.4 2956118
## 328                 1 1010045.4 2956118
## 329                 1 1010045.4 2956118
## 330                 1 1010045.4 2956118
## 331                 1 1010045.4 2956118
## 332                 1 1010045.4 2956118
## 333                 0 1010045.4 2956118
## 334                 1 1010045.4 2956118
## 335                 1 1010045.4 2956118
## 336                 1 1010045.4 2956118
## 337                 1 1010045.4 2956118
## 338                 1 1010045.4 2956118
## 339                 1 1010045.4 2956118
## 340                 1 1010045.4 2956118
## 341                 1 1010045.4 2956118
## 342                 1 1010045.4 2956118
## 343                 1 1010045.4 2956118
## 344                 1 1010045.4 2956118
## 345                 1 1010045.4 2956118
## 346                 1 1010045.4 2956118
## 347                 1 1010045.4 2956118
## 348                 1 1010045.4 2956118
## 349                 1 1010045.4 2956118
## 350                 1 1010045.4 2956118
## 351                 1 1010045.4 2956118
## 352                 1 1010045.4 2956118
## 353                 1 1010045.4 2956118
## 354                 1 1010045.4 2956118
## 355                 1 1010045.4 2956118
## 356                 1 1010045.4 2956118
## 357                 1 1010045.4 2956118
## 358                 1 1010045.4 2956118
## 359                 1 1010045.4 2956118
## 360                 1 1010045.4 2956118
## 361                 1 1010045.4 2956118
## 362                 1 1010045.4 2956118
## 363                 1 1010045.4 2956118
## 364                 1 1010045.4 2956118
## 365                 1 1010045.4 2956118
## 366                 1 1010045.4 2956118
## 367                 1 1010045.4 2956118
## 368                 1 1010045.4 2956118
## 369                 1 1010045.4 2956118
## 370                 1 1010045.4 2956118
## 371                 1 1010045.4 2956118
## 372                 1 1010045.4 2956118
## 373                 1 1010045.4 2956118
## 374                 1 1010045.4 2956118
## 375                 1 1010045.4 2956118
## 376                 1 1010045.4 2956118
## 377                 1 1010045.4 2956118
## 378                 1 1010045.4 2956118
## 379                 1 1010045.4 2956118
## 380                 1 1010045.4 2956118
## 381                 1 1010045.4 2956118
## 382                 1 1010045.4 2956118
## 383                 1 1010045.4 2956118
## 384                 1 1010045.4 2956118
## 385                 1 1010045.4 2956118
## 386                 1 1010045.4 2956118
## 387                 1 1010045.4 2956118
## 388                 1 1010045.4 2956118
## 389                 1 1010045.4 2956118
## 390                 1 1010045.4 2956118
## 391                 1 1010045.4 2956118
## 392                 1 1010045.4 2956118
## 393                 1 1010045.4 2956118
## 394                 1 1010045.4 2956118
## 395                 1 1010045.4 2956118
## 396                 1 1010045.4 2956118
## 397                 1  949182.1 3290538
## 398                 1  949182.1 3290538
## 399                 1  949182.1 3290538
## 400                 1  949182.1 3290538
## 401                 1  949182.1 3290538
## 402                 1  949182.1 3290538
## 403                 1  949182.1 3290538
## 404                 1  949182.1 3290538
## 405                 1  949182.1 3290538
## 406                 1  949182.1 3290538
## 407                 1  949182.1 3290538
## 408                 1  949182.1 3290538
## 409                 1  949182.1 3290538
## 410                 1  949182.1 3290538
## 411                 0 1158272.9 2844458
## 412                 0 1158272.9 2844458
## 413                 1 1158272.9 2844458
## 414                 1 1158272.9 2844458
## 415                 0 1158272.9 2844458
## 416                 0 1158272.9 2844458
## 417                 1 1158272.9 2844458
## 418                 1 1158272.9 2844458
## 419                 0 1158272.9 2844458
## 420                 1 1158272.9 2844458
## 421                 0 1158272.9 2844458
## 422                 1 1158272.9 2844458
## 423                 0 1158272.9 2844458
## 424                 0 1158272.9 2844458
## 425                 1 1158272.9 2844458
## 426                 1 1158272.9 2844458
## 427                 0 1158272.9 2844458
## 428                 0 1158272.9 2844458
## 429                 0 1158272.9 2844458
## 430                 1 1158272.9 2844458
## 431                 1 1158272.9 2844458
## 432                 1 1158272.9 2844458
## 433                 1 1158272.9 2844458
## 434                 1 1155605.3 2835437
## 435                 0 1155605.3 2835437
## 436                 1 1155605.3 2835437
## 437                 0 1155605.3 2835437
## 438                 0 1155605.3 2835437
## 439                 1 1155605.3 2835437
## 440                 1 1155605.3 2835437
## 441                 1 1155605.3 2835437
## 442                 1 1155605.3 2835437
## 443                 1 1155605.3 2835437
## 444                 0 1155605.3 2835437
## 445                 1 1155605.3 2835437
## 446                 1 1155605.3 2835437
## 447                 1 1155605.3 2835437
## 448                 0 1155605.3 2835437
## 449                 0 1155605.3 2835437
## 450                 1 1155605.3 2835437
## 451                 0 1155605.3 2835437
## 452                 0 1155605.3 2835437
## 453                 1 1155605.3 2835437
## 454                 1 1155605.3 2835437
## 455                 0 1155605.3 2835437
## 456                 1 1155605.3 2835437
## 457                 1 1155605.3 2835437
## 458                 0 1155605.3 2835437
## 459                 1 1155605.3 2835437
## 460                 1 1155605.3 2835437
## 461                 1 1155605.3 2835437
## 462                 1 1155605.3 2835437
## 463                 1 1164740.8 2794842
## 464                 1 1164740.8 2794842
## 465                 0 1164740.8 2794842
## 466                 1 1164740.8 2794842
## 467                 1 1164740.8 2794842
## 468                 1 1164740.8 2794842
## 469                 1 1164740.8 2794842
## 470                 0 1164740.8 2794842
## 471                 1 1164740.8 2794842
## 472                 0 1164740.8 2794842
## 473                 1 1164740.8 2794842
## 474                 1 1164740.8 2794842
## 475                 1 1164740.8 2794842
## 476                 1 1164740.8 2794842
## 477                 1 1164740.8 2794842
## 478                 0 1164740.8 2794842
## 479                 0 1164740.8 2794842
## 480                 1 1164740.8 2794842
## 481                 1 1164740.8 2794842
## 482                 1 1164740.8 2794842
## 483                 1 1164740.8 2794842
## 484                 1 1164740.8 2794842
## 485                 1 1164740.8 2794842
## 486                 1 1164740.8 2794842
## 487                 1 1164740.8 2794842
## 488                 1 1164740.8 2794842
## 489                 1 1164740.8 2794842
## 490                 1 1164740.8 2794842
## 491                 1 1164740.8 2794842
## 492                 1 1164740.8 2794842
## 493                 0 1164740.8 2794842
## 494                 1 1164740.8 2794842
## 495                 1 1032899.8 3098294
## 496                 1 1032899.8 3098294
## 497                 1 1032899.8 3098294
## 498                 1 1032899.8 3098294
## 499                 1 1032899.8 3098294
## 500                 1 1032899.8 3098294
## 501                 1 1032899.8 3098294
## 502                 1 1032899.8 3098294
## 503                 1 1032899.8 3098294
## 504                 1 1032899.8 3098294
## 505                 1 1032899.8 3098294
## 506                 1 1032899.8 3098294
## 507                 1 1032899.8 3098294
## 508                 1 1032899.8 3098294
## 509                 1 1032899.8 3098294
## 510                 1 1032899.8 3098294
## 511                 1 1032899.8 3098294
## 512                 1 1032899.8 3098294
## 513                 1 1032899.8 3098294
## 514                 1 1032899.8 3098294
## 515                 1 1032899.8 3098294
## 516                 1 1032899.8 3098294
## 517                 1 1032899.8 3098294
## 518                 1 1032899.8 3098294
## 519                 1 1032899.8 3098294
## 520                 1 1032899.8 3098294
## 521                 1 1032899.8 3098294
## 522                 1 1032899.8 3098294
## 523                 1 1032899.8 3098294
## 524                 1 1032899.8 3098294
## 525                 1 1032899.8 3098294
## 526                 1 1032899.8 3098294
## 527                 1 1032899.8 3098294
## 528                 1 1032899.8 3098294
## 529                 1 1032899.8 3098294
## 530                 1 1032899.8 3098294
## 531                 1 1032899.8 3098294
## 532                 1 1032899.8 3098294
## 533                 1 1032899.8 3098294
## 534                 1 1032899.8 3098294
## 535                 1 1032899.8 3098294
## 536                 1 1032899.8 3098294
## 537                 1 1032899.8 3098294
## 538                 1 1032899.8 3098294
## 539                 1 1032899.8 3098294
## 540                 1 1032899.8 3098294
## 541                 1 1032899.8 3098294
## 542                 1 1032899.8 3098294
## 543                 1 1032899.8 3098294
## 544                 1 1032899.8 3098294
## 545                 1 1032899.8 3098294
## 546                 1 1032899.8 3098294
## 547                 1 1032899.8 3098294
## 548                 1 1032899.8 3098294
## 549                 1 1032899.8 3098294
## 550                 1 1032899.8 3098294
## 551                 1 1032899.8 3098294
## 552                 1 1032899.8 3098294
## 553                 1 1032899.8 3098294
## 554                 1 1032899.8 3098294
## 555                 1 1032899.8 3098294
## 556                 1 1032899.8 3098294
## 557                 1 1032899.8 3098294
## 558                 1 1032899.8 3098294
## 559                 1 1032899.8 3098294
## 560                 1 1032899.8 3098294
## 561                 1 1032899.8 3098294
## 562                 1 1032899.8 3098294
## 563                 1 1032899.8 3098294
## 564                 1 1032899.8 3098294
## 565                 1 1032899.8 3098294
## 566                 1 1032899.8 3098294
## 567                 1 1032899.8 3098294
## 568                 1 1032899.8 3098294
## 569                 1 1032899.8 3098294
## 570                 1 1032899.8 3098294
## 571                 1 1032899.8 3098294
## 572                 1 1032899.8 3098294
## 573                 1 1032899.8 3098294
## 574                 1 1032899.8 3098294
## 575                 1 1032899.8 3098294
## 576                 1 1032899.8 3098294
## 577                 1 1032899.8 3098294
## 578                 1 1032899.8 3098294
## 579                 1 1000240.8 3196176
## 580                 1 1000240.8 3196176
## 581                 1 1000240.8 3196176
## 582                 1 1000240.8 3196176
## 583                 1 1000240.8 3196176
## 584                 1 1000240.8 3196176
## 585                 1 1000240.8 3196176
## 586                 1 1000240.8 3196176
## 587                 1 1000240.8 3196176
## 588                 1 1000240.8 3196176
## 589                 1 1000240.8 3196176
## 590                 1 1000240.8 3196176
## 591                 1 1000240.8 3196176
## 592                 1 1000240.8 3196176
## 593                 1 1000240.8 3196176
## 594                 1 1000240.8 3196176
## 595                 1 1000240.8 3196176
## 596                 1 1000240.8 3196176
## 597                 1 1000240.8 3196176
## 598                 1 1000240.8 3196176
## 599                 1 1000240.8 3196176
## 600                 1 1000240.8 3196176
## 601                 1 1000240.8 3196176
## 602                 1 1000240.8 3196176
## 603                 1 1000240.8 3196176
## 604                 1 1000240.8 3196176
## 605                 1 1000240.8 3196176
## 606                 1 1000240.8 3196176
## 607                 1 1000240.8 3196176
## 608                 1 1000240.8 3196176
## 609                 1 1000240.8 3196176
## 610                 1 1000240.8 3196176
## 611                 1 1000240.8 3196176
## 612                 1 1000240.8 3196176
## 613                 1 1000240.8 3196176
## 614                 1 1000240.8 3196176
## 615                 1 1000240.8 3196176
## 616                 1 1000240.8 3196176
## 617                 1 1000240.8 3196176
## 618                 1 1000240.8 3196176
## 619                 1 1000240.8 3196176
## 620                 1 1000240.8 3196176
## 621                 1 1000240.8 3196176
## 622                 1 1000240.8 3196176
## 623                 1 1000240.8 3196176
## 624                 1 1000240.8 3196176
## 625                 1 1000240.8 3196176
## 626                 1 1000240.8 3196176
## 627                 0 1000240.8 3196176
## 628                 1 1000240.8 3196176
## 629                 1 1000240.8 3196176
## 630                 1 1000240.8 3196176
## 631                 1 1000240.8 3196176
## 632                 1 1000240.8 3196176
## 633                 1 1000240.8 3196176
## 634                 1 1000240.8 3196176
## 635                 1 1000240.8 3196176
## 636                 1 1000240.8 3196176
## 637                 1 1000240.8 3196176
## 638                 1 1000240.8 3196176
## 639                 1 1000240.8 3196176
## 640                 1 1000240.8 3196176
## 641                 1 1000240.8 3196176
## 642                 1 1000240.8 3196176
## 643                 1 1000240.8 3196176
## 644                 1 1000240.8 3196176
## 645                 1 1000240.8 3196176
## 646                 1 1000240.8 3196176
## 647                 1 1000240.8 3196176
## 648                 1 1000240.8 3196176
## 649                 1 1000240.8 3196176
## 650                 1 1000240.8 3196176
## 651                 1 1000240.8 3196176
## 652                 1 1000240.8 3196176
## 653                 1 1000240.8 3196176
## 654                 1 1000240.8 3196176
## 655                 1 1000240.8 3196176
## 656                 1 1000240.8 3196176
## 657                 1 1000240.8 3196176
## 658                 1 1000240.8 3196176
## 659                 1 1000240.8 3196176
## 660                 1 1000240.8 3196176
## 661                 1 1000240.8 3196176
## 662                 1 1000240.8 3196176
## 663                 1 1000240.8 3196176
## 664                 1 1000240.8 3196176
## 665                 0 1000240.8 3196176
## 666                 1 1000240.8 3196176
## 667                 1 1000240.8 3196176
## 668                 1 1000240.8 3196176
## 669                 1 1000240.8 3196176
## 670                 1 1150184.3 2776463
## 671                 1 1150184.3 2776463
## 672                 1 1150184.3 2776463
## 673                 1 1150184.3 2776463
## 674                 1 1150184.3 2776463
## 675                 1 1150184.3 2776463
## 676                 1 1150184.3 2776463
## 677                 1 1150184.3 2776463
## 678                 1 1150184.3 2776463
## 679                 0 1150184.3 2776463
## 680                 1 1150184.3 2776463
## 681                 1 1150184.3 2776463
## 682                 1 1150184.3 2776463
## 683                 1 1150184.3 2776463
## 684                 1 1150184.3 2776463
## 685                 1 1150184.3 2776463
## 686                 1 1150184.3 2776463
## 687                 1 1150184.3 2776463
## 688                 1 1150184.3 2776463
## 689                 1 1150184.3 2776463
## 690                 1 1150184.3 2776463
## 691                 1 1150184.3 2776463
## 692                 1 1150184.3 2776463
## 693                 1 1150184.3 2776463
## 694                 1 1150184.3 2776463
## 695                 1 1150184.3 2776463
## 696                 0 1150184.3 2776463
## 697                 1 1150184.3 2776463
## 698                 1 1150184.3 2776463
## 699                 1 1150184.3 2776463
## 700                 1 1150184.3 2776463
## 701                 0 1150184.3 2776463
## 702                 1 1150184.3 2776463
## 703                 0 1150184.3 2776463
## 704                 1 1150184.3 2776463
## 705                 1  949182.1 3290538
## 706                 1  949182.1 3290538
## 707                 1  949182.1 3290538
## 708                 1  949182.1 3290538
## 709                 1  949182.1 3290538
## 710                 1  949182.1 3290538
## 711                 1  949182.1 3290538
## 712                 1  949182.1 3290538
## 713                 1  949182.1 3290538
## 714                 1  949182.1 3290538
## 715                 1  949182.1 3290538
## 716                 1  949182.1 3290538
## 717                 1  949182.1 3290538
## 718                 1  949182.1 3290538
## 719                 1  949182.1 3290538
## 720                 1  949182.1 3290538
## 721                 1  949182.1 3290538
## 722                 1  949182.1 3290538
## 723                 1  949182.1 3290538
## 724                 1  949182.1 3290538
## 725                 1  949182.1 3290538
## 726                 0  949182.1 3290538
## 727                 1  949182.1 3290538
## 728                 1  949182.1 3290538
## 729                 1  949182.1 3290538
## 730                 1  949182.1 3290538
## 731                 1  949182.1 3290538
## 732                 0  949182.1 3290538
## 733                 1  949182.1 3290538
## 734                 1  949182.1 3290538
## 735                 1  949182.1 3290538
## 736                 1  949182.1 3290538
## 737                 1  949182.1 3290538
## 738                 1  949182.1 3290538
## 739                 1  949182.1 3290538
## 740                 1  949182.1 3290538
## 741                 1  949182.1 3290538
## 742                 1  949182.1 3290538
## 743                 1  949182.1 3290538
## 744                 1  949182.1 3290538
## 745                 1  949182.1 3290538
## 746                 1  949182.1 3290538
## 747                 1  949182.1 3290538
## 748                 1  949182.1 3290538
## 749                 1  949182.1 3290538
## 750                 1  949182.1 3290538
## 751                 1  949182.1 3290538
## 752                 1  949182.1 3290538
## 753                 1 1158272.9 2844458
## 754                 1 1158272.9 2844458
## 755                 1 1158272.9 2844458
## 756                 1 1158272.9 2844458
## 757                 1 1158272.9 2844458
## 758                 0 1158272.9 2844458
## 759                 0 1158272.9 2844458
## 760                 0 1158272.9 2844458
## 761                 0 1158272.9 2844458
## 762                 0 1158272.9 2844458
## 763                 0 1158272.9 2844458
## 764                 0 1158272.9 2844458
## 765                 1 1158272.9 2844458
## 766                 1 1158272.9 2844458
## 767                 1 1158272.9 2844458
## 768                 1 1158272.9 2844458
## 769                 0 1158272.9 2844458
## 770                 0 1164740.8 2794842
## 771                 0 1164740.8 2794842
## 772                 0 1164740.8 2794842
## 773                 1 1164740.8 2794842
## 774                 0 1164740.8 2794842
## 775                 0 1164740.8 2794842
## 776                 1 1164740.8 2794842
## 777                 0 1164740.8 2794842
## 778                 1 1164740.8 2794842
## 779                 0 1164740.8 2794842
## 780                 0 1164740.8 2794842
## 781                 1 1164740.8 2794842
## 782                 0 1164740.8 2794842
## 783                 1 1164740.8 2794842
## 784                 1 1164740.8 2794842
## 785                 0 1164740.8 2794842
## 786                 0 1164740.8 2794842
## 787                 0 1164740.8 2794842
## 788                 1 1164740.8 2794842
## 789                 1 1164740.8 2794842
## 790                 0 1164740.8 2794842
## 791                 1 1164740.8 2794842
## 792                 1 1164740.8 2794842
## 793                 0 1164740.8 2794842
## 794                 0 1164740.8 2794842
## 795                 0 1164740.8 2794842
## 796                 1 1164740.8 2794842
## 797                 0 1164740.8 2794842
## 798                 1 1164740.8 2794842
## 799                 0 1164740.8 2794842
## 800                 0 1164740.8 2794842
## 801                 1 1164740.8 2794842
## 802                 0 1164740.8 2794842
## 803                 1 1164740.8 2794842
## 804                 1 1164740.8 2794842
## 805                 1 1164740.8 2794842
## 806                 0 1164740.8 2794842
## 807                 0 1164740.8 2794842
## 808                 1 1164740.8 2794842
## 809                 1 1164740.8 2794842
## 810                 0 1032899.8 3098294
## 811                 1 1032899.8 3098294
## 812                 1 1032899.8 3098294
## 813                 1 1032899.8 3098294
## 814                 1 1032899.8 3098294
## 815                 1 1032899.8 3098294
## 816                 1 1032899.8 3098294
## 817                 1 1032899.8 3098294
## 818                 1 1032899.8 3098294
## 819                 1 1032899.8 3098294
## 820                 1 1032899.8 3098294
## 821                 1 1032899.8 3098294
## 822                 1 1032899.8 3098294
## 823                 1 1032899.8 3098294
## 824                 1 1032899.8 3098294
## 825                 1 1032899.8 3098294
## 826                 1 1032899.8 3098294
## 827                 0 1032899.8 3098294
## 828                 1 1032899.8 3098294
## 829                 1 1032899.8 3098294
## 830                 1 1032899.8 3098294
## 831                 1 1032899.8 3098294
## 832                 0 1032899.8 3098294
## 833                 1 1032899.8 3098294
## 834                 1 1032899.8 3098294
## 835                 1 1032899.8 3098294
## 836                 1 1032899.8 3098294
## 837                 1 1032899.8 3098294
## 838                 1 1032899.8 3098294
## 839                 0 1032899.8 3098294
## 840                 1 1032899.8 3098294
## 841                 1 1032899.8 3098294
## 842                 1 1032899.8 3098294
## 843                 1 1032899.8 3098294
## 844                 1 1032899.8 3098294
## 845                 1 1032899.8 3098294
## 846                 1 1032899.8 3098294
## 847                 1 1032899.8 3098294
## 848                 0 1032899.8 3098294
## 849                 1 1032899.8 3098294
## 850                 1 1032899.8 3098294
## 851                 1 1032899.8 3098294
## 852                 1 1032899.8 3098294
## 853                 1 1032899.8 3098294
## 854                 1 1000240.8 3196176
## 855                 1 1000240.8 3196176
## 856                 1 1000240.8 3196176
## 857                 1 1000240.8 3196176
## 858                 1 1000240.8 3196176
## 859                 1 1000240.8 3196176
## 860                 1 1000240.8 3196176
## 861                 1 1000240.8 3196176
## 862                 1 1000240.8 3196176
## 863                 1 1000240.8 3196176
## 864                 1 1000240.8 3196176
## 865                 1 1000240.8 3196176
## 866                 1 1000240.8 3196176
## 867                 1 1000240.8 3196176
## 868                 1 1150184.3 2776463
## 869                 0 1150184.3 2776463
## 870                 1 1150184.3 2776463
## 871                 0 1150184.3 2776463
## 872                 0 1150184.3 2776463
## 873                 0 1150184.3 2776463
## 874                 1 1150184.3 2776463
## 875                 1 1150184.3 2776463
## 876                 0 1150184.3 2776463
## 877                 0 1150184.3 2776463
## 878                 1 1150184.3 2776463
## 879                 0 1150184.3 2776463
## 880                 1 1150184.3 2776463
## 881                 1 1150184.3 2776463
## 882                 0 1150184.3 2776463
## 883                 1 1150184.3 2776463
## 884                 1 1150184.3 2776463
## 885                 0 1150184.3 2776463
## 886                 1 1150184.3 2776463
## 887                 1 1150184.3 2776463
## 888                 0 1150184.3 2776463
## 889                 1 1150184.3 2776463
## 890                 1 1150184.3 2776463
## 891                 1 1150184.3 2776463
## 892                 1 1150184.3 2776463
## 893                 0 1150184.3 2776463
## 894                 1 1150184.3 2776463
## 895                 0 1150184.3 2776463
## 896                 1 1150184.3 2776463
## 897                 1 1150184.3 2776463
## 898                 0 1150184.3 2776463
## 899                 0 1150184.3 2776463
## 900                 0 1150184.3 2776463
## 901                 0 1150184.3 2776463
## 902                 0 1150184.3 2776463
## 903                 1 1150184.3 2776463
## 904                 1 1150184.3 2776463
## 905                 0 1150184.3 2776463
## 906                 1 1150184.3 2776463
## 907                 1 1150184.3 2776463
## 908                 1 1150184.3 2776463
## 909                 0 1150184.3 2776463
## 910                 1 1150184.3 2776463
## 911                 1 1150184.3 2776463
## 912                 0 1164740.8 2794842
## 913                 0 1164740.8 2794842
## 914                 0 1164740.8 2794842
## 915                 1 1164740.8 2794842
## 916                 0 1164740.8 2794842
## 917                 0 1164740.8 2794842
## 918                 1 1164740.8 2794842
## 919                 0 1164740.8 2794842
## 920                 0 1164740.8 2794842
## 921                 0 1164740.8 2794842
## 922                 0 1164740.8 2794842
## 923                 0 1164740.8 2794842
## 924                 0 1164740.8 2794842
## 925                 0 1164740.8 2794842
## 926                 1 1164740.8 2794842
## 927                 0 1164740.8 2794842
## 928                 0 1164740.8 2794842
## 929                 0 1164740.8 2794842
## 930                 1 1164740.8 2794842
## 931                 0 1164740.8 2794842
## 932                 0 1164740.8 2794842
## 933                 1 1164740.8 2794842
## 934                 0 1164740.8 2794842
## 935                 1 1164740.8 2794842
## 936                 1 1164740.8 2794842
## 937                 1 1164740.8 2794842
## 938                 0 1164740.8 2794842
## 939                 0 1164740.8 2794842
## 940                 0 1164740.8 2794842
## 941                 1 1164740.8 2794842
## 942                 0 1164740.8 2794842
## 943                 0 1164740.8 2794842
## 944                 0 1164740.8 2794842
## 945                 0 1164740.8 2794842
## 946                 0 1164740.8 2794842
## 947                 0 1164740.8 2794842
## 948                 0 1164740.8 2794842
## 949                 0 1164740.8 2794842
## 950                 0 1164740.8 2794842
## 951                 0 1164740.8 2794842
## 952                 1 1164740.8 2794842
## 953                 0 1164740.8 2794842
## 954                 0 1164740.8 2794842
## 955                 0 1164740.8 2794842
## 956                 0 1164740.8 2794842
## 957                 1 1164740.8 2794842
## 958                 0 1164740.8 2794842
## 959                 0 1164740.8 2794842
## 960                 0 1164740.8 2794842
## 961                 0 1164740.8 2794842
## 962                 0 1164740.8 2794842
## 963                 1 1032899.8 3098294
## 964                 1 1032899.8 3098294
## 965                 1 1032899.8 3098294
## 966                 1 1032899.8 3098294
## 967                 1 1032899.8 3098294
## 968                 1 1032899.8 3098294
## 969                 1 1032899.8 3098294
## 970                 1 1032899.8 3098294
## 971                 1 1032899.8 3098294
## 972                 1 1032899.8 3098294
## 973                 1 1032899.8 3098294
## 974                 1 1032899.8 3098294
## 975                 1 1032899.8 3098294
## 976                 1 1032899.8 3098294
## 977                 1 1032899.8 3098294
## 978                 1 1032899.8 3098294
## 979                 1 1032899.8 3098294
## 980                 1 1032899.8 3098294
## 981                 1 1032899.8 3098294
## 982                 1 1032899.8 3098294
## 983                 1 1032899.8 3098294
## 984                 1 1032899.8 3098294
## 985                 1 1032899.8 3098294
## 986                 1 1032899.8 3098294
## 987                 1 1032899.8 3098294
## 988                 1 1032899.8 3098294
## 989                 1 1032899.8 3098294
## 990                 1 1032899.8 3098294
## 991                 1 1032899.8 3098294
## 992                 1 1032899.8 3098294
## 993                 1 1032899.8 3098294
## 994                 1 1032899.8 3098294
## 995                 1 1032899.8 3098294
## 996                 1 1032899.8 3098294
## 997                 1 1032899.8 3098294
## 998                 1 1032899.8 3098294
## 999                 1 1032899.8 3098294
## 1000                1 1032899.8 3098294
## 1001                1 1032899.8 3098294
## 1002                1 1032899.8 3098294
## 1003                1 1032899.8 3098294
## 1004                1 1032899.8 3098294
## 1005                1 1032899.8 3098294
## 1006                1 1032899.8 3098294
## 1007                1 1032899.8 3098294
## 1008                1 1032899.8 3098294
## 1009                1 1032899.8 3098294
## 1010                1 1032899.8 3098294
## 1011                1 1032899.8 3098294
## 1012                1 1032899.8 3098294
## 1013                1 1032899.8 3098294
## 1014                1 1032899.8 3098294
## 1015                1 1032899.8 3098294
## 1016                1 1000240.8 3196176
## 1017                1 1000240.8 3196176
## 1018                1 1000240.8 3196176
## 1019                1 1000240.8 3196176
## 1020                1 1000240.8 3196176
## 1021                1 1000240.8 3196176
## 1022                1 1000240.8 3196176
## 1023                1 1000240.8 3196176
## 1024                1 1000240.8 3196176
## 1025                1 1000240.8 3196176
## 1026                0 1000240.8 3196176
## 1027                1 1000240.8 3196176
## 1028                1 1000240.8 3196176
## 1029                1 1000240.8 3196176
## 1030                1 1000240.8 3196176
## 1031                1 1000240.8 3196176
## 1032                1 1000240.8 3196176
## 1033                1 1000240.8 3196176
## 1034                1 1000240.8 3196176
## 1035                1 1000240.8 3196176
## 1036                1 1000240.8 3196176
## 1037                1 1000240.8 3196176
## 1038                1 1000240.8 3196176
## 1039                1 1000240.8 3196176
## 1040                1 1000240.8 3196176
## 1041                0 1000240.8 3196176
## 1042                1 1000240.8 3196176
## 1043                1 1000240.8 3196176
## 1044                1 1000240.8 3196176
## 1045                1 1000240.8 3196176
## 1046                1 1000240.8 3196176
## 1047                1 1000240.8 3196176
## 1048                0 1000240.8 3196176
## 1049                1 1000240.8 3196176
## 1050                1 1000240.8 3196176
## 1051                1 1000240.8 3196176
## 1052                0 1150184.3 2776463
## 1053                1 1150184.3 2776463
## 1054                0 1150184.3 2776463
## 1055                0 1150184.3 2776463
## 1056                1 1150184.3 2776463
## 1057                1 1150184.3 2776463
## 1058                1 1150184.3 2776463
## 1059                0 1150184.3 2776463
## 1060                1 1150184.3 2776463
## 1061                1 1150184.3 2776463
## 1062                0 1150184.3 2776463
## 1063                1 1150184.3 2776463
## 1064                1  949182.1 3290538
## 1065                1  949182.1 3290538
## 1066                1  949182.1 3290538
## 1067                1  949182.1 3290538
## 1068                1  949182.1 3290538
## 1069                1  949182.1 3290538
## 1070                1  949182.1 3290538
## 1071                1  949182.1 3290538
## 1072                1  949182.1 3290538
## 1073                1  949182.1 3290538
## 1074                1  949182.1 3290538
## 1075                1  949182.1 3290538
## 1076                1  949182.1 3290538
## 1077                1  949182.1 3290538
## 1078                1  949182.1 3290538
## 1079                1  949182.1 3290538
## 1080                1  949182.1 3290538
## 1081                1  949182.1 3290538
## 1082                1  949182.1 3290538
## 1083                1  949182.1 3290538
## 1084                1  949182.1 3290538
## 1085                1  949182.1 3290538
## 1086                1  949182.1 3290538
## 1087                1  949182.1 3290538
## 1088                1  949182.1 3290538
## 1089                1  949182.1 3290538
## 1090                1  949182.1 3290538
## 1091                1  949182.1 3290538
## 1092                1  949182.1 3290538
## 1093                1  949182.1 3290538
## 1094                1  949182.1 3290538
## 1095                1  949182.1 3290538
## 1096                1  949182.1 3290538
## 1097                1  949182.1 3290538
## 1098                0  949182.1 3290538
## 1099                1  949182.1 3290538
## 1100                1  949182.1 3290538
## 1101                1  949182.1 3290538
## 1102                1  949182.1 3290538
## 1103                1  949182.1 3290538
## 1104                1  949182.1 3290538
## 1105                1  949182.1 3290538
## 1106                1  949182.1 3290538
## 1107                0  949182.1 3290538
## 1108                1  949182.1 3290538
## 1109                1  949182.1 3290538
## 1110                0  949182.1 3290538
## 1111                1  949182.1 3290538
## 1112                1  949182.1 3290538
## 1113                1  949182.1 3290538
## 1114                0  949182.1 3290538
## 1115                1  949182.1 3290538
## 1116                1  949182.1 3290538
## 1117                1  949182.1 3290538
## 1118                1  949182.1 3290538
## 1119                1  949182.1 3290538
## 1120                1  949182.1 3290538
## 1121                1 1155594.4 2835483
## 1122                0 1155594.4 2835483
## 1123                0 1155594.4 2835483
## 1124                1 1155594.4 2835483
## 1125                1 1155594.4 2835483
## 1126                0 1155594.4 2835483
## 1127                1 1155594.4 2835483
## 1128                1 1155594.4 2835483
## 1129                0 1155594.4 2835483
## 1130                1 1155594.4 2835483
## 1131                1 1155594.4 2835483
## 1132                1 1155594.4 2835483
## 1133                1 1155594.4 2835483
## 1134                1 1171365.6 2803203
## 1135                1 1171365.6 2803203
## 1136                1 1171365.6 2803203
## 1137                0 1171365.6 2803203
## 1138                1 1171365.6 2803203
## 1139                0 1171365.6 2803203
## 1140                1 1171365.6 2803203
## 1141                1 1171365.6 2803203
## 1142                1 1171365.6 2803203
## 1143                1 1171365.6 2803203
## 1144                1 1171365.6 2803203
## 1145                0 1171365.6 2803203
## 1146                0 1171365.6 2803203
## 1147                1 1171365.6 2803203
## 1148                1 1171365.6 2803203
## 1149                1 1171365.6 2803203
## 1150                1 1171365.6 2803203
## 1151                1 1171365.6 2803203
## 1152                1 1171365.6 2803203
## 1153                1 1171365.6 2803203
## 1154                1 1171365.6 2803203
## 1155                0 1171365.6 2803203
## 1156                1 1171365.6 2803203
## 1157                0 1171365.6 2803203
## 1158                1 1171365.6 2803203
## 1159                0 1171365.6 2803203
## 1160                1 1171365.6 2803203
## 1161                1 1171365.6 2803203
## 1162                1 1171365.6 2803203
## 1163                1 1171365.6 2803203
## 1164                1 1171365.6 2803203
## 1165                1 1171365.6 2803203
## 1166                1 1171365.6 2803203
## 1167                1 1171365.6 2803203
## 1168                0 1171365.6 2803203
## 1169                1 1171365.6 2803203
## 1170                0 1171365.6 2803203
## 1171                0 1171365.6 2803203
## 1172                0 1171365.6 2803203
## 1173                1 1171365.6 2803203
## 1174                1 1171365.6 2803203
## 1175                0 1171365.6 2803203
## 1176                1 1171365.6 2803203
## 1177                1 1171365.6 2803203
## 1178                1 1171365.6 2803203
## 1179                0 1171365.6 2803203
## 1180                1 1171365.6 2803203
## 1181                0 1171365.6 2803203
## 1182                1 1171365.6 2803203
## 1183                1 1171365.6 2803203
## 1184                1 1171365.6 2803203
## 1185                1 1171365.6 2803203
## 1186                1 1171365.6 2803203
## 1187                1 1164740.8 2794842
## 1188                1 1164740.8 2794842
## 1189                1 1164740.8 2794842
## 1190                0 1164740.8 2794842
## 1191                1 1164740.8 2794842
## 1192                1 1164740.8 2794842
## 1193                0 1164740.8 2794842
## 1194                1 1164740.8 2794842
## 1195                0 1164740.8 2794842
## 1196                1 1164740.8 2794842
## 1197                1 1164740.8 2794842
## 1198                1 1034251.3 3101958
## 1199                1 1034251.3 3101958
## 1200                1 1034251.3 3101958
## 1201                1 1034251.3 3101958
## 1202                1 1034251.3 3101958
## 1203                1 1034251.3 3101958
## 1204                1 1034251.3 3101958
## 1205                0 1034251.3 3101958
## 1206                1 1034251.3 3101958
## 1207                1 1034251.3 3101958
## 1208                1 1034251.3 3101958
## 1209                1 1034251.3 3101958
## 1210                1 1034251.3 3101958
## 1211                1 1034251.3 3101958
## 1212                1 1034251.3 3101958
## 1213                1  999804.3 3197182
## 1214                1  999804.3 3197182
## 1215                1  999804.3 3197182
## 1216                1  999804.3 3197182
## 1217                1  999804.3 3197182
## 1218                1  999804.3 3197182
## 1219                1  999804.3 3197182
## 1220                1  999804.3 3197182
## 1221                1  999804.3 3197182
## 1222                1  999804.3 3197182
## 1223                1  999804.3 3197182
## 1224                1  999804.3 3197182
## 1225                1  999804.3 3197182
## 1226                1  999804.3 3197182
## 1227                1  999804.3 3197182
## 1228                1  999804.3 3197182
## 1229                1  999804.3 3197182
## 1230                1  999804.3 3197182
## 1231                1  999804.3 3197182
## 1232                1  999804.3 3197182
## 1233                1 1000240.8 3196176
## 1234                1 1000240.8 3196176
## 1235                1 1000240.8 3196176
## 1236                1 1000240.8 3196176
## 1237                1 1000240.8 3196176
## 1238                1 1000240.8 3196176
## 1239                1 1000240.8 3196176
## 1240                1 1000240.8 3196176
## 1241                1 1000240.8 3196176
## 1242                1 1000240.8 3196176
## 1243                1 1000240.8 3196176
## 1244                0 1000240.8 3196176
## 1245                1 1000240.8 3196176
## 1246                1 1000240.8 3196176
## 1247                1 1000240.8 3196176
## 1248                1 1000240.8 3196176
## 1249                1 1000240.8 3196176
## 1250                1 1000240.8 3196176
## 1251                1 1000240.8 3196176
## 1252                1 1000240.8 3196176
## 1253                1 1000240.8 3196176
## 1254                1 1000240.8 3196176
## 1255                1 1000240.8 3196176
## 1256                1 1000240.8 3196176
## 1257                1 1000240.8 3196176
## 1258                1 1000240.8 3196176
## 1259                1 1000240.8 3196176
## 1260                1 1000240.8 3196176
## 1261                1 1000240.8 3196176
## 1262                1 1000240.8 3196176
## 1263                1 1000240.8 3196176
## 1264                1 1000240.8 3196176
## 1265                1 1000240.8 3196176
## 1266                1 1000240.8 3196176
## 1267                1 1000240.8 3196176
## 1268                1 1000240.8 3196176
## 1269                1 1000240.8 3196176
## 1270                1 1000240.8 3196176
## 1271                1 1000240.8 3196176
## 1272                1 1000240.8 3196176
## 1273                1 1000240.8 3196176
## 1274                1 1000240.8 3196176
## 1275                1 1000240.8 3196176
## 1276                1 1000240.8 3196176
## 1277                1 1000240.8 3196176
## 1278                0 1152004.7 2778276
## 1279                1 1152004.7 2778276
## 1280                1 1152004.7 2778276
## 1281                0 1152004.7 2778276
## 1282                1 1152004.7 2778276
## 1283                1 1152004.7 2778276
## 1284                0 1152004.7 2778276
## 1285                1 1152004.7 2778276
## 1286                1 1152004.7 2778276
## 1287                0 1152004.7 2778276
## 1288                1 1152004.7 2778276
## 1289                0 1152004.7 2778276
## 1290                0 1152004.7 2778276
## 1291                0 1152004.7 2778276
## 1292                0 1152004.7 2778276
## 1293                1 1152004.7 2778276
## 1294                1 1152004.7 2778276
## 1295                1 1152004.7 2778276
## 1296                1 1152004.7 2778276
## 1297                1 1152004.7 2778276
## 1298                0 1152004.7 2778276
## 1299                0 1152004.7 2778276
## 1300                1 1152004.7 2778276
## 1301                0 1152004.7 2778276
## 1302                0 1152004.7 2778276
## 1303                1 1152004.7 2778276
## 1304                1 1152004.7 2778276
## 1305                0 1152004.7 2778276
## 1306                1 1152004.7 2778276
## 1307                1 1152004.7 2778276
## 1308                1 1152004.7 2778276
## 1309                1 1152004.7 2778276
## 1310                1 1152004.7 2778276
## 1311                1 1152004.7 2778276
## 1312                0 1152004.7 2778276
## 1313                0 1152004.7 2778276
## 1314                1 1152004.7 2778276
## 1315                1  949670.6 3290885
## 1316                1  949670.6 3290885
## 1317                1  949670.6 3290885
## 1318                0  949670.6 3290885
## 1319                1  949670.6 3290885
## 1320                1  949670.6 3290885
## 1321                0  949670.6 3290885
## 1322                1  949670.6 3290885
## 1323                1  949670.6 3290885
## 1324                1  949670.6 3290885
## 1325                1  949670.6 3290885
## 1326                1  949670.6 3290885
## 1327                1  949670.6 3290885
## 1328                1  949670.6 3290885
## 1329                1  949670.6 3290885
## 1330                1  949670.6 3290885
## 1331                0  949670.6 3290885
## 1332                1  949670.6 3290885
## 1333                1  949670.6 3290885
## 1334                1  949670.6 3290885
## 1335                1  949670.6 3290885
## 1336                1  949670.6 3290885
## 1337                1  949670.6 3290885
## 1338                1  949670.6 3290885
## 1339                1  949670.6 3290885
## 1340                0  949670.6 3290885
## 1341                1  949670.6 3290885
## 1342                1  949670.6 3290885
## 1343                1  949670.6 3290885
## 1344                1  949670.6 3290885
## 1345                1  949670.6 3290885
## 1346                1  949670.6 3290885
## 1347                1  949670.6 3290885
## 1348                1  949670.6 3290885
## 1349                1  949670.6 3290885
## 1350                1  949670.6 3290885
## 1351                1  949670.6 3290885
## 1352                1  949670.6 3290885
## 1353                1  949670.6 3290885
## 1354                1  949670.6 3290885
## 1355                1  949670.6 3290885
## 1356                1  949670.6 3290885
## 1357                1  949670.6 3290885
## 1358                0  949670.6 3290885
## 1359                1  949670.6 3290885
## 1360                1  949670.6 3290885
## 1361                1  949670.6 3290885
## 1362                1  949670.6 3290885
## 1363                1  949670.6 3290885
## 1364                1  949670.6 3290885
## 1365                1  949670.6 3290885
## 1366                1  949670.6 3290885
## 1367                1  949670.6 3290885
## 1368                1  949670.6 3290885
## 1369                1  949670.6 3290885
## 1370                1  949670.6 3290885
## 1371                1  949670.6 3290885
## 1372                1  949670.6 3290885
## 1373                1  949670.6 3290885
## 1374                0  949670.6 3290885
## 1375                1 1155612.8 2835467
## 1376                0 1155612.8 2835467
## 1377                1 1155612.8 2835467
## 1378                1 1155612.8 2835467
## 1379                0 1155612.8 2835467
## 1380                1 1155612.8 2835467
## 1381                1 1155612.8 2835467
## 1382                1 1155612.8 2835467
## 1383                1 1155612.8 2835467
## 1384                1 1155612.8 2835467
## 1385                1 1155612.8 2835467
## 1386                1 1155612.8 2835467
## 1387                1 1155612.8 2835467
## 1388                1 1155612.8 2835467
## 1389                1 1155612.8 2835467
## 1390                1 1155612.8 2835467
## 1391                1 1155612.8 2835467
## 1392                1 1155612.8 2835467
## 1393                0 1155612.8 2835467
## 1394                1 1155612.8 2835467
## 1395                1 1155612.8 2835467
## 1396                1 1155612.8 2835467
## 1397                1 1155612.8 2835467
## 1398                1 1155612.8 2835467
## 1399                1 1155612.8 2835467
## 1400                1 1155612.8 2835467
## 1401                1 1155612.8 2835467
## 1402                1 1155612.8 2835467
## 1403                0 1155612.8 2835467
## 1404                1 1155612.8 2835467
## 1405                1 1155612.8 2835467
## 1406                1 1155612.8 2835467
## 1407                1 1155612.8 2835467
## 1408                0 1155612.8 2835467
## 1409                1 1155612.8 2835467
## 1410                1 1155612.8 2835467
## 1411                1 1155612.8 2835467
## 1412                1 1155612.8 2835467
## 1413                1 1155612.8 2835467
## 1414                1 1155612.8 2835467
## 1415                1 1155612.8 2835467
## 1416                1 1155612.8 2835467
## 1417                1 1155612.8 2835467
## 1418                0 1155612.8 2835467
## 1419                1 1155612.8 2835467
## 1420                1 1155612.8 2835467
## 1421                1 1155612.8 2835467
## 1422                1 1155612.8 2835467
## 1423                1 1155612.8 2835467
## 1424                1 1155612.8 2835467
## 1425                1 1155612.8 2835467
## 1426                1 1155612.8 2835467
## 1427                1 1155612.8 2835467
## 1428                1 1155612.8 2835467
## 1429                1 1155612.8 2835467
## 1430                1 1155612.8 2835467
## 1431                1 1155612.8 2835467
## 1432                1 1155612.8 2835467
## 1433                1 1155612.8 2835467
## 1434                1 1155612.8 2835467
## 1435                1 1155612.8 2835467
## 1436                1 1155612.8 2835467
## 1437                1 1155612.8 2835467
## 1438                1 1155612.8 2835467
## 1439                1 1155612.8 2835467
## 1440                1 1155612.8 2835467
## 1441                1 1155612.8 2835467
## 1442                1 1155612.8 2835467
## 1443                1 1155612.8 2835467
## 1444                1 1155612.8 2835467
## 1445                1 1155612.8 2835467
## 1446                1 1155612.8 2835467
## 1447                1 1155612.8 2835467
## 1448                1 1155612.8 2835467
## 1449                1 1155612.8 2835467
## 1450                1 1155612.8 2835467
## 1451                1 1155612.8 2835467
## 1452                1 1155612.8 2835467
## 1453                1 1155612.8 2835467
## 1454                1 1155612.8 2835467
## 1455                1 1155612.8 2835467
## 1456                1 1155612.8 2835467
## 1457                1 1155612.8 2835467
## 1458                1 1155612.8 2835467
## 1459                1 1155612.8 2835467
## 1460                1 1155612.8 2835467
## 1461                1 1155612.8 2835467
## 1462                1 1155612.8 2835467
## 1463                1 1155612.8 2835467
## 1464                1 1155612.8 2835467
## 1465                1 1155612.8 2835467
## 1466                1 1155612.8 2835467
## 1467                1 1155612.8 2835467
## 1468                1 1155612.8 2835467
## 1469                1 1155612.8 2835467
## 1470                1 1155612.8 2835467
## 1471                1 1155612.8 2835467
## 1472                1 1155612.8 2835467
## 1473                1 1155612.8 2835467
## 1474                1 1155612.8 2835467
## 1475                1 1155612.8 2835467
## 1476                1 1155612.8 2835467
## 1477                1 1155612.8 2835467
## 1478                1 1155612.8 2835467
## 1479                1 1155612.8 2835467
## 1480                1 1155612.8 2835467
## 1481                1 1155612.8 2835467
## 1482                1 1155612.8 2835467
## 1483                1 1155612.8 2835467
## 1484                1 1155612.8 2835467
## 1485                1 1155612.8 2835467
## 1486                1 1155612.8 2835467
## 1487                1 1155612.8 2835467
## 1488                1 1155612.8 2835467
## 1489                1 1155612.8 2835467
## 1490                1 1155612.8 2835467
## 1491                1 1155612.8 2835467
## 1492                1 1155612.8 2835467
## 1493                1 1155612.8 2835467
## 1494                1 1155612.8 2835467
## 1495                1 1155612.8 2835467
## 1496                1 1155612.8 2835467
## 1497                1 1155612.8 2835467
## 1498                1 1155612.8 2835467
## 1499                1 1155612.8 2835467
## 1500                1 1155612.8 2835467
## 1501                1 1155612.8 2835467
## 1502                1 1165445.0 2795436
## 1503                1 1165445.0 2795436
## 1504                1 1165445.0 2795436
## 1505                0 1165445.0 2795436
## 1506                1 1165445.0 2795436
## 1507                1 1165445.0 2795436
## 1508                1 1165445.0 2795436
## 1509                1 1165445.0 2795436
## 1510                1 1165445.0 2795436
## 1511                1 1165445.0 2795436
## 1512                1 1165445.0 2795436
## 1513                0 1165445.0 2795436
## 1514                1 1165445.0 2795436
## 1515                1 1165445.0 2795436
## 1516                1 1165445.0 2795436
## 1517                1 1165445.0 2795436
## 1518                1 1165445.0 2795436
## 1519                1 1165442.5 2795425
## 1520                1 1165442.5 2795425
## 1521                1 1165442.5 2795425
## 1522                1 1165442.5 2795425
## 1523                1 1165442.5 2795425
## 1524                0 1165442.5 2795425
## 1525                0 1165442.5 2795425
## 1526                1 1165442.5 2795425
## 1527                1 1165442.5 2795425
## 1528                1 1165442.5 2795425
## 1529                1 1165442.5 2795425
## 1530                1 1165442.5 2795425
## 1531                1 1165442.5 2795425
## 1532                1 1165442.5 2795425
## 1533                1 1165442.5 2795425
## 1534                1 1165442.5 2795425
## 1535                0 1165442.5 2795425
## 1536                1 1165442.5 2795425
## 1537                1 1171365.6 2803203
## 1538                1 1171365.6 2803203
## 1539                1 1171365.6 2803203
## 1540                1 1171365.6 2803203
## 1541                0 1171365.6 2803203
## 1542                1 1171365.6 2803203
## 1543                1 1171365.6 2803203
## 1544                1 1171365.6 2803203
## 1545                0 1171365.6 2803203
## 1546                0 1171365.6 2803203
## 1547                1 1171365.6 2803203
## 1548                1 1171365.6 2803203
## 1549                0 1171365.6 2803203
## 1550                1 1171365.6 2803203
## 1551                0 1171365.6 2803203
## 1552                0 1171365.6 2803203
## 1553                1 1171365.6 2803203
## 1554                1 1171365.6 2803203
## 1555                0 1171365.6 2803203
## 1556                1 1171365.6 2803203
## 1557                1 1171365.6 2803203
## 1558                1 1171365.6 2803203
## 1559                1 1171365.6 2803203
## 1560                0 1171365.6 2803203
## 1561                1 1171365.6 2803203
## 1562                0 1171365.6 2803203
## 1563                0 1171365.6 2803203
## 1564                0 1171365.6 2803203
## 1565                0 1171365.6 2803203
## 1566                0 1171365.6 2803203
## 1567                0 1171365.6 2803203
## 1568                1 1171365.6 2803203
## 1569                0 1171365.6 2803203
## 1570                1 1171365.6 2803203
## 1571                0 1171365.6 2803203
## 1572                0 1171365.6 2803203
## 1573                1 1171365.6 2803203
## 1574                1 1171365.6 2803203
## 1575                1 1171365.6 2803203
## 1576                1 1171365.6 2803203
## 1577                1 1171365.6 2803203
## 1578                1 1171365.6 2803203
## 1579                1 1171365.6 2803203
## 1580                1 1171365.6 2803203
## 1581                1 1171365.6 2803203
## 1582                1 1171365.6 2803203
## 1583                1 1171365.6 2803203
## 1584                1 1171365.6 2803203
## 1585                1 1171365.6 2803203
## 1586                0 1171365.6 2803203
## 1587                1 1171365.6 2803203
## 1588                0 1171365.6 2803203
## 1589                1 1171365.6 2803203
## 1590                1 1171365.6 2803203
## 1591                1 1171365.6 2803203
## 1592                1 1171365.6 2803203
## 1593                0 1171365.6 2803203
## 1594                1 1034256.3 3101957
## 1595                1 1034256.3 3101957
## 1596                1 1034256.3 3101957
## 1597                1 1034256.3 3101957
## 1598                1 1034256.3 3101957
## 1599                1 1034256.3 3101957
## 1600                1 1034256.3 3101957
## 1601                1 1034256.3 3101957
## 1602                1 1034256.3 3101957
## 1603                1 1034256.3 3101957
## 1604                1 1034256.3 3101957
## 1605                1 1034256.3 3101957
## 1606                1 1034256.3 3101957
## 1607                1 1034256.3 3101957
## 1608                1 1034256.3 3101957
## 1609                0 1034256.3 3101957
## 1610                1 1034256.3 3101957
## 1611                0 1034256.3 3101957
## 1612                1 1034256.3 3101957
## 1613                1 1034256.3 3101957
## 1614                1 1034256.3 3101957
## 1615                1 1034256.3 3101957
## 1616                1 1034256.3 3101957
## 1617                1 1034256.3 3101957
## 1618                1 1034256.3 3101957
## 1619                0 1034256.3 3101957
## 1620                1 1034256.3 3101957
## 1621                1 1034256.3 3101957
## 1622                1 1034256.3 3101957
## 1623                1 1034256.3 3101957
## 1624                1 1034256.3 3101957
## 1625                1 1034256.3 3101957
## 1626                1 1034256.4 3101957
## 1627                1 1034256.4 3101957
## 1628                0 1034256.4 3101957
## 1629                0 1034256.4 3101957
## 1630                1 1034256.4 3101957
## 1631                1 1034256.4 3101957
## 1632                1 1034256.4 3101957
## 1633                0 1034256.4 3101957
## 1634                0 1034256.4 3101957
## 1635                1 1034256.4 3101957
## 1636                1 1034256.4 3101957
## 1637                0 1034256.4 3101957
## 1638                0 1034256.4 3101957
## 1639                1 1034256.4 3101957
## 1640                0 1034256.4 3101957
## 1641                0 1034256.4 3101957
## 1642                1 1034256.4 3101957
## 1643                0 1034256.4 3101957
## 1644                1 1034256.4 3101957
## 1645                0 1034256.4 3101957
## 1646                1 1034256.4 3101957
## 1647                1 1034256.4 3101957
## 1648                0 1034256.4 3101957
## 1649                1 1034256.4 3101957
## 1650                1 1034256.4 3101957
## 1651                0 1034256.4 3101957
## 1652                1 1034256.4 3101957
## 1653                1 1034256.4 3101957
## 1654                0 1034256.4 3101957
## 1655                1 1034256.4 3101957
## 1656                0 1034256.4 3101957
## 1657                0 1034256.4 3101957
## 1658                0 1034256.4 3101957
## 1659                0 1034256.4 3101957
## 1660                1 1034256.4 3101957
## 1661                0 1034256.4 3101957
## 1662                1 1034256.4 3101957
## 1663                1 1034256.4 3101957
## 1664                1 1034256.4 3101957
## 1665                1 1034256.4 3101957
## 1666                1 1034256.4 3101957
## 1667                0 1034256.4 3101957
## 1668                0 1034256.4 3101957
## 1669                1 1034256.4 3101957
## 1670                0 1034256.4 3101957
## 1671                0 1034256.4 3101957
## 1672                0 1034256.4 3101957
## 1673                1 1034256.4 3101957
## 1674                0 1034256.4 3101957
## 1675                1 1034256.4 3101957
## 1676                0 1034256.4 3101957
## 1677                0 1034256.4 3101957
## 1678                0 1034256.4 3101957
## 1679                0 1034256.4 3101957
## 1680                1 1034256.4 3101957
## 1681                0 1034256.4 3101957
## 1682                1 1034256.4 3101957
## 1683                1 1034256.4 3101957
## 1684                0 1034256.4 3101957
## 1685                1  999797.9 3197189
## 1686                1  999797.9 3197189
## 1687                0  999797.9 3197189
## 1688                0  999797.9 3197189
## 1689                0  999797.9 3197189
## 1690                1  999797.9 3197189
## 1691                1  999797.9 3197189
## 1692                1  999797.9 3197189
## 1693                1  999797.9 3197189
## 1694                0  999797.9 3197189
## 1695                1  999797.9 3197189
## 1696                1  999797.9 3197189
## 1697                1  999797.9 3197189
## 1698                1  999797.9 3197189
## 1699                0  999797.9 3197189
## 1700                0  999797.9 3197189
## 1701                1  999797.9 3197189
## 1702                0  999797.9 3197189
## 1703                1  999797.9 3197189
## 1704                1  999797.9 3197189
## 1705                1  999797.9 3197189
## 1706                1  999797.9 3197189
## 1707                1  999797.9 3197189
## 1708                0  999797.9 3197189
## 1709                1  999797.9 3197189
## 1710                1  999797.9 3197189
## 1711                0  999797.9 3197189
## 1712                1  999797.9 3197189
## 1713                1  999797.9 3197189
## 1714                1  999797.9 3197189
## 1715                1  999797.9 3197189
## 1716                1  999797.9 3197189
## 1717                1  999797.9 3197189
## 1718                0  999797.9 3197189
## 1719                0  999797.9 3197189
## 1720                1  999797.9 3197189
## 1721                1  999797.9 3197189
## 1722                0  999797.9 3197189
## 1723                1  999797.9 3197189
## 1724                1  999797.9 3197189
## 1725                0  999797.9 3197189
## 1726                1  999797.9 3197189
## 1727                1  999797.9 3197189
## 1728                1  999797.9 3197189
## 1729                0  999797.9 3197189
## 1730                0  999797.9 3197189
## 1731                1  999797.9 3197189
## 1732                1  999797.9 3197189
## 1733                1  999797.9 3197189
## 1734                0  999797.9 3197189
## 1735                0  999797.9 3197189
## 1736                0  999797.9 3197189
## 1737                0  999797.9 3197189
## 1738                0  999797.9 3197189
## 1739                0  999797.9 3197189
## 1740                0  999797.9 3197189
## 1741                1  999797.9 3197189
## 1742                0  999797.9 3197189
## 1743                1  949529.7 3290857
## 1744                1  949529.7 3290857
## 1745                1  949529.7 3290857
## 1746                1  949529.7 3290857
## 1747                1  949529.7 3290857
## 1748                1  949529.7 3290857
## 1749                1  949529.7 3290857
## 1750                1  949529.7 3290857
## 1751                1  949529.7 3290857
## 1752                1  949529.7 3290857
## 1753                1  949529.7 3290857
## 1754                1  949529.7 3290857
## 1755                1  949529.7 3290857
## 1756                1  949529.7 3290857
## 1757                1  949529.7 3290857
## 1758                1  949529.7 3290857
## 1759                0  949529.7 3290857
## 1760                1  949529.7 3290857
## 1761                1  949529.7 3290857
## 1762                1  949529.7 3290857
## 1763                1  949529.7 3290857
## 1764                1  949529.7 3290857
## 1765                1  949529.7 3290857
## 1766                1  949529.7 3290857
## 1767                1  949529.7 3290857
## 1768                1  949529.7 3290857
## 1769                1  949529.7 3290857
## 1770                1  949529.7 3290857
## 1771                1  949529.7 3290857
## 1772                1  949529.7 3290857
## 1773                1  949529.7 3290857
## 1774                1  949529.7 3290857
## 1775                1  949529.7 3290857
## 1776                1  949529.7 3290857
## 1777                1  949529.7 3290857
## 1778                1  949529.7 3290857
## 1779                1  949529.7 3290857
## 1780                1  949529.7 3290857
## 1781                1  949529.7 3290857
## 1782                1  949529.7 3290857
## 1783                1  949529.7 3290857
## 1784                1  949529.7 3290857
## 1785                1  949529.7 3290857
## 1786                1  949529.7 3290857
## 1787                1  949529.7 3290857
## 1788                1  949529.7 3290857
## 1789                1  949529.7 3290857
## 1790                1  949529.7 3290857
## 1791                1  949529.7 3290857
## 1792                1  949529.7 3290857
## 1793                1  949529.7 3290857
## 1794                1  949529.7 3290857
## 1795                1  949529.7 3290857
## 1796                1  949529.7 3290857
## 1797                1  949529.7 3290857
## 1798                0  949529.7 3290857
## 1799                1  949529.7 3290857
## 1800                1  949529.7 3290857
## 1801                1  949529.7 3290857
## 1802                1  949529.7 3290857
## 1803                0  949529.7 3290857
## 1804                1  949529.7 3290857
## 1805                1  949529.7 3290857
## 1806                1  949529.7 3290857
## 1807                1 1171365.6 2803203
## 1808                1 1171365.6 2803203
## 1809                1 1171365.6 2803203
## 1810                1 1171365.6 2803203
## 1811                0 1171365.6 2803203
## 1812                0 1171365.6 2803203
## 1813                0 1171365.6 2803203
## 1814                0 1171365.6 2803203
## 1815                1 1171365.6 2803203
## 1816                0 1171365.6 2803203
## 1817                0 1171365.6 2803203
## 1818                1 1171365.6 2803203
## 1819                0 1171365.6 2803203
## 1820                0 1171365.6 2803203
## 1821                1 1171365.6 2803203
## 1822                0 1171365.6 2803203
## 1823                1 1171365.6 2803203
## 1824                0 1171365.6 2803203
## 1825                1 1171365.6 2803203
## 1826                1 1171365.6 2803203
## 1827                1 1171365.6 2803203
## 1828                0 1171365.6 2803203
## 1829                0 1171365.6 2803203
## 1830                1 1171365.6 2803203
## 1831                0 1171365.6 2803203
## 1832                1 1171365.6 2803203
## 1833                1 1171365.6 2803203
## 1834                0 1171365.6 2803203
## 1835                0 1171365.6 2803203
## 1836                0 1171365.6 2803203
## 1837                1 1171365.6 2803203
## 1838                0 1171365.6 2803203
## 1839                1 1171365.6 2803203
## 1840                1 1171365.6 2803203
## 1841                1 1171365.6 2803203
## 1842                0 1171365.6 2803203
## 1843                0 1171365.6 2803203
## 1844                0 1171365.6 2803203
## 1845                0 1171365.6 2803203
## 1846                0 1171365.6 2803203
## 1847                1 1171365.6 2803203
## 1848                0 1171365.6 2803203
## 1849                1 1171365.6 2803203
## 1850                1 1171365.6 2803203
## 1851                1 1171365.6 2803203
## 1852                0 1171365.6 2803203
## 1853                1 1171365.6 2803203
## 1854                1 1171365.6 2803203
## 1855                1 1171365.6 2803203
## 1856                1 1171365.6 2803203
## 1857                0 1171365.6 2803203
## 1858                0 1171365.6 2803203
## 1859                1 1171365.6 2803203
## 1860                0 1171365.6 2803203
## 1861                0 1171365.6 2803203
## 1862                1 1171365.6 2803203
## 1863                1 1171365.6 2803203
## 1864                0 1171365.6 2803203
## 1865                1 1171365.6 2803203
## 1866                0 1171365.6 2803203
## 1867                1 1171365.6 2803203
## 1868                0 1171365.6 2803203
## 1869                1 1171365.6 2803203
## 1870                0 1171365.6 2803203
## 1871                1 1171365.6 2803203
## 1872                0 1171365.6 2803203
## 1873                0 1171365.6 2803203
## 1874                0 1171365.6 2803203
## 1875                1 1034253.2 3101959
## 1876                1 1034253.2 3101959
## 1877                1 1034253.2 3101959
## 1878                1 1034253.2 3101959
## 1879                1 1034253.2 3101959
## 1880                1 1034253.2 3101959
## 1881                1 1034253.2 3101959
## 1882                0 1034253.2 3101959
## 1883                1 1034253.2 3101959
## 1884                1 1034253.2 3101959
## 1885                1 1034253.2 3101959
## 1886                1 1034253.2 3101959
## 1887                1 1034253.2 3101959
## 1888                1 1034253.2 3101959
## 1889                1 1034253.2 3101959
## 1890                1 1034253.2 3101959
## 1891                1 1034253.2 3101959
## 1892                1 1034253.2 3101959
## 1893                1 1034253.2 3101959
## 1894                1 1034253.2 3101959
## 1895                1 1034253.2 3101959
## 1896                1 1034253.2 3101959
## 1897                1 1034253.2 3101959
## 1898                1 1034253.2 3101959
## 1899                1 1034253.2 3101959
## 1900                0 1034253.2 3101959
## 1901                1 1034253.2 3101959
## 1902                1 1034253.2 3101959
## 1903                0 1034253.2 3101959
## 1904                1 1034253.2 3101959
## 1905                1 1034253.2 3101959
## 1906                1 1034253.2 3101959
## 1907                1 1034253.2 3101959
## 1908                1 1034253.2 3101959
## 1909                1 1034253.2 3101959
## 1910                1 1034253.2 3101959
## 1911                1 1034253.2 3101959
## 1912                1 1034253.2 3101959
## 1913                1 1034253.2 3101959
## 1914                1 1034253.2 3101959
## 1915                1  999718.1 3198295
## 1916                1  949488.6 3290890
## 1917                1  949488.6 3290890
## 1918                1  949488.6 3290890
## 1919                1  949488.6 3290890
## 1920                1  949488.6 3290890
## 1921                0  949488.6 3290890
## 1922                1  949488.6 3290890
## 1923                1  949488.6 3290890
## 1924                1  949488.6 3290890
## 1925                1  950511.0 3290395
## 1926                1  950511.0 3290395
## 1927                1  950511.0 3290395
## 1928                1  950511.0 3290395
## 1929                1  950511.0 3290395
## 1930                1  950511.0 3290395
## 1931                1  950511.0 3290395
## 1932                1  950511.0 3290395
## 1933                1  950511.0 3290395
## 1934                1  950511.0 3290395
## 1935                0  950511.0 3290395
## 1936                1  950511.0 3290395
## 1937                1  950511.0 3290395
## 1938                1  950511.0 3290395
## 1939                1  950511.0 3290395
## 1940                1  950511.0 3290395
## 1941                1  950511.0 3290395
## 1942                1  950511.0 3290395
## 1943                1  950511.0 3290395
## 1944                1  950511.0 3290395
## 1945                1  950511.0 3290395
## 1946                1  950511.0 3290395
## 1947                1  950511.0 3290395
## 1948                1  950511.0 3290395
## 1949                1  950511.0 3290395
## 1950                1  950511.0 3290395
## 1951                1  950511.0 3290395
## 1952                1  950511.0 3290395
## 1953                1  950511.0 3290395
## 1954                1  950511.0 3290395
## 1955                1  950511.0 3290395
## 1956                1  950511.0 3290395
## 1957                1  950511.0 3290395
## 1958                1  950511.0 3290395
## 1959                1  950511.0 3290395
## 1960                1  950511.0 3290395
## 1961                1  950511.0 3290395
## 1962                1  950511.0 3290395
## 1963                1  950511.0 3290395
## 1964                1  950511.0 3290395
## 1965                0 1155217.9 2835119
## 1966                1 1155217.9 2835119
## 1967                1 1155217.9 2835119
## 1968                1 1155217.9 2835119
## 1969                1 1155217.9 2835119
## 1970                1 1155217.9 2835119
## 1971                0 1155217.9 2835119
## 1972                1 1155217.9 2835119
## 1973                1 1155217.9 2835119
## 1974                0 1155217.9 2835119
## 1975                0 1155217.9 2835119
## 1976                0 1155217.9 2835119
## 1977                1 1155217.9 2835119
## 1978                0 1155217.9 2835119
## 1979                0 1155217.9 2835119
## 1980                1 1155217.9 2835119
## 1981                1 1155217.9 2835119
## 1982                0 1155217.9 2835119
## 1983                0 1165494.9 2795481
## 1984                0 1165494.9 2795481
## 1985                0 1165494.9 2795481
## 1986                1 1165494.9 2795481
## 1987                1 1165494.9 2795481
## 1988                1 1165494.9 2795481
## 1989                1 1165494.9 2795481
## 1990                0 1165494.9 2795481
## 1991                0 1165494.9 2795481
## 1992                0 1165494.9 2795481
## 1993                0 1165494.9 2795481
## 1994                0 1165494.9 2795481
## 1995                0 1165494.9 2795481
## 1996                1 1165494.9 2795481
## 1997                0 1165494.9 2795481
## 1998                0 1165494.9 2795481
## 1999                0 1165494.9 2795481
## 2000                1 1165494.9 2795481
## 2001                1 1165494.9 2795481
## 2002                1 1165494.9 2795481
## 2003                1 1165494.9 2795481
## 2004                0 1165494.9 2795481
## 2005                1 1165494.9 2795481
## 2006                1 1165494.9 2795481
## 2007                0 1165494.9 2795481
## 2008                1 1165494.9 2795481
## 2009                0 1165494.9 2795481
## 2010                0 1165494.9 2795481
## 2011                0 1165494.9 2795481
## 2012                0 1165494.9 2795481
## 2013                1 1165494.9 2795481
## 2014                0 1165494.9 2795481
## 2015                1 1165494.9 2795481
## 2016                0 1165494.9 2795481
## 2017                0 1165494.9 2795481
## 2018                0 1165494.9 2795481
## 2019                1 1165494.9 2795481
## 2020                0 1165494.9 2795481
## 2021                0 1165494.9 2795481
## 2022                0 1165494.9 2795481
## 2023                0 1165494.9 2795481
## 2024                1 1165494.9 2795481
## 2025                0 1165494.9 2795481
## 2026                0 1165494.9 2795481
## 2027                0 1165494.9 2795481
## 2028                0 1165494.9 2795481
## 2029                1 1165494.9 2795481
## 2030                1 1165494.9 2795481
## 2031                1 1165494.9 2795481
## 2032                0 1165494.9 2795481
## 2033                0 1165494.9 2795481
## 2034                1 1165494.9 2795481
## 2035                0 1165494.9 2795481
## 2036                1 1165494.9 2795481
## 2037                0 1165494.9 2795481
## 2038                1 1165494.9 2795481
## 2039                0 1165494.9 2795481
## 2040                0 1165494.9 2795481
## 2041                0 1165494.9 2795481
## 2042                1 1165494.9 2795481
## 2043                0 1165494.9 2795481
## 2044                0 1165494.9 2795481
## 2045                0 1165494.9 2795481
## 2046                0 1165494.9 2795481
## 2047                0 1165494.9 2795481
## 2048                0 1165494.9 2795481
## 2049                0 1165494.9 2795481
## 2050                1 1165494.9 2795481
## 2051                0 1165494.9 2795481
## 2052                0 1165494.9 2795481
## 2053                1 1165494.9 2795481
## 2054                0 1165494.9 2795481
## 2055                0 1165494.9 2795481
## 2056                1 1165494.9 2795481
## 2057                0 1165494.9 2795481
## 2058                0 1165494.9 2795481
## 2059                1 1058006.9 3032124
## 2060                1 1058006.9 3032124
## 2061                1 1058006.9 3032124
## 2062                1 1058006.9 3032124
## 2063                1 1058006.9 3032124
## 2064                1 1058006.9 3032124
## 2065                1 1058006.9 3032124
## 2066                1 1058006.9 3032124
## 2067                0 1058006.9 3032124
## 2068                1 1058006.9 3032124
## 2069                0 1058006.9 3032124
## 2070                1 1058006.9 3032124
## 2071                0 1058006.9 3032124
## 2072                1 1058006.9 3032124
## 2073                1 1058006.9 3032124
## 2074                1 1058006.9 3032124
## 2075                1 1058006.9 3032124
## 2076                0 1058006.9 3032124
## 2077                1 1058006.9 3032124
## 2078                0 1058006.9 3032124
## 2079                1 1058006.9 3032124
## 2080                1 1058006.9 3032124
## 2081                1 1058006.9 3032124
## 2082                1 1058006.9 3032124
## 2083                1 1058006.9 3032124
## 2084                1 1058006.9 3032124
## 2085                1 1058006.9 3032124
## 2086                1 1058006.9 3032124
## 2087                1 1058006.9 3032124
## 2088                1 1058006.9 3032124
## 2089                1 1058006.9 3032124
## 2090                1 1058006.9 3032124
## 2091                1 1058006.9 3032124
## 2092                1 1058006.9 3032124
## 2093                1 1058006.9 3032124
## 2094                1 1058006.9 3032124
## 2095                1 1058006.9 3032124
## 2096                1 1058006.9 3032124
## 2097                1 1058006.9 3032124
## 2098                1 1058006.9 3032124
## 2099                1 1058006.9 3032124
## 2100                1 1058006.9 3032124
## 2101                1 1058006.9 3032124
## 2102                1 1058006.9 3032124
## 2103                0 1058006.9 3032124
## 2104                1 1058006.9 3032124
## 2105                1 1058006.9 3032124
## 2106                0 1058006.9 3032124
## 2107                1 1058006.9 3032124
## 2108                0 1058006.9 3032124
## 2109                1 1058006.9 3032124
## 2110                1 1058006.9 3032124
## 2111                1 1058006.9 3032124
## 2112                1 1058006.9 3032124
## 2113                1 1058006.9 3032124
## 2114                1 1058006.9 3032124
## 2115                1 1058006.9 3032124
## 2116                1 1058006.9 3032124
## 2117                1 1058006.9 3032124
## 2118                1 1058006.9 3032124
## 2119                1 1058006.9 3032124
## 2120                1 1058006.9 3032124
## 2121                1 1171365.6 2803203
## 2122                1 1171365.6 2803203
## 2123                1 1171365.6 2803203
## 2124                1 1171365.6 2803203
## 2125                0 1171365.6 2803203
## 2126                1 1171365.6 2803203
## 2127                0 1171365.6 2803203
## 2128                1 1171365.6 2803203
## 2129                1 1171365.6 2803203
## 2130                1 1171365.6 2803203
## 2131                0 1171365.6 2803203
## 2132                1 1171365.6 2803203
## 2133                1 1171365.6 2803203
## 2134                1 1171365.6 2803203
## 2135                1 1171365.6 2803203
## 2136                0 1171365.6 2803203
## 2137                1 1171365.6 2803203
## 2138                1 1171365.6 2803203
## 2139                1 1171365.6 2803203
## 2140                1 1171365.6 2803203
## 2141                1 1171365.6 2803203
## 2142                0 1171365.6 2803203
## 2143                1 1171365.6 2803203
## 2144                0 1171365.6 2803203
## 2145                0 1171365.6 2803203
## 2146                1 1171365.6 2803203
## 2147                0 1171365.6 2803203
## 2148                1 1171365.6 2803203
## 2149                0 1171365.6 2803203
## 2150                1 1171365.6 2803203
## 2151                0 1171365.6 2803203
## 2152                0 1171365.6 2803203
## 2153                1 1171365.6 2803203
## 2154                1 1171365.6 2803203
## 2155                1 1171365.6 2803203
## 2156                1 1171365.6 2803203
## 2157                1 1171365.6 2803203
## 2158                1 1171365.6 2803203
## 2159                1 1171365.6 2803203
## 2160                0 1171365.6 2803203
## 2161                1 1171365.6 2803203
## 2162                1 1171365.6 2803203
## 2163                0 1171365.6 2803203
## 2164                0 1171365.6 2803203
## 2165                1 1171365.6 2803203
## 2166                1 1171365.6 2803203
## 2167                1 1171365.6 2803203
## 2168                1 1171365.6 2803203
## 2169                0 1171365.6 2803203
## 2170                1 1171365.6 2803203
## 2171                1 1171365.6 2803203
## 2172                0 1171365.6 2803203
## 2173                1 1171365.6 2803203
## 2174                0 1171365.6 2803203
## 2175                1 1171365.6 2803203
## 2176                1 1171365.6 2803203
## 2177                1 1171365.6 2803203
## 2178                0 1171365.6 2803203
## 2179                0 1171365.6 2803203
## 2180                0 1171365.6 2803203
## 2181                0 1171365.6 2803203
## 2182                0 1171365.6 2803203
## 2183                0 1171365.6 2803203
## 2184                1 1171365.6 2803203
## 2185                1 1171365.6 2803203
## 2186                0 1171365.6 2803203
## 2187                1 1171365.6 2803203
## 2188                1 1171365.6 2803203
## 2189                1 1171365.6 2803203
## 2190                1 1171365.6 2803203
## 2191                0 1171365.6 2803203
## 2192                1 1171365.6 2803203
## 2193                0 1171365.6 2803203
## 2194                0 1171365.6 2803203
## 2195                1 1171365.6 2803203
## 2196                1 1171365.6 2803203
## 2197                0 1171365.6 2803203
## 2198                1 1171365.6 2803203
## 2199                1 1171365.6 2803203
## 2200                0 1171365.6 2803203
## 2201                1 1171365.6 2803203
## 2202                0 1171365.6 2803203
## 2203                1 1171365.6 2803203
## 2204                0 1171365.6 2803203
## 2205                0 1171365.6 2803203
## 2206                1 1171365.6 2803203
## 2207                1 1171365.6 2803203
## 2208                1 1171365.6 2803203
## 2209                0 1171365.6 2803203
## 2210                0 1171365.6 2803203
## 2211                0 1171365.6 2803203
## 2212                0 1171365.6 2803203
## 2213                0 1171365.6 2803203
## 2214                1 1171365.6 2803203
## 2215                0 1171365.6 2803203
## 2216                0 1171365.6 2803203
## 2217                0 1171365.6 2803203
## 2218                0 1171365.6 2803203
## 2219                1 1171365.6 2803203
## 2220                0 1171365.6 2803203
## 2221                0 1171365.6 2803203
## 2222                0 1171365.6 2803203
## 2223                1 1171365.6 2803203
## 2224                1 1171365.6 2803203
## 2225                0 1171365.6 2803203
## 2226                1 1171365.6 2803203
## 2227                0 1171365.6 2803203
## 2228                0 1171365.6 2803203
## 2229                0 1171365.6 2803203
## 2230                0 1171365.6 2803203
## 2231                0 1171365.6 2803203
## 2232                0 1171365.6 2803203
## 2233                1 1171365.6 2803203
## 2234                0 1171365.6 2803203
## 2235                0 1171365.6 2803203
## 2236                1 1171365.6 2803203
## 2237                1 1171365.6 2803203
## 2238                0 1171365.6 2803203
## 2239                1 1171365.6 2803203
## 2240                1 1171365.6 2803203
## 2241                0 1171365.6 2803203
## 2242                0 1171365.6 2803203
## 2243                1 1171365.6 2803203
## 2244                1 1171365.6 2803203
## 2245                1 1171365.6 2803203
## 2246                1 1171365.6 2803203
## 2247                1 1171365.6 2803203
## 2248                0 1171365.6 2803203
## 2249                1 1171365.6 2803203
## 2250                0 1171365.6 2803203
## 2251                1 1171365.6 2803203
## 2252                0 1171365.6 2803203
## 2253                0 1171365.6 2803203
## 2254                1 1171365.6 2803203
## 2255                0 1171365.6 2803203
## 2256                0 1171365.6 2803203
## 2257                0 1171365.6 2803203
## 2258                0 1171365.6 2803203
## 2259                0 1171365.6 2803203
## 2260                0 1171365.6 2803203
## 2261                0 1171365.6 2803203
## 2262                0 1171365.6 2803203
## 2263                1 1171365.6 2803203
## 2264                1 1171365.6 2803203
## 2265                1 1171365.6 2803203
## 2266                1 1171365.6 2803203
## 2267                0 1171365.6 2803203
## 2268                1 1171365.6 2803203
## 2269                1 1171365.6 2803203
## 2270                1 1171365.6 2803203
## 2271                1 1171365.6 2803203
## 2272                1 1171365.6 2803203
## 2273                0 1171365.6 2803203
## 2274                1 1171365.6 2803203
## 2275                0 1171365.6 2803203
## 2276                0 1171365.6 2803203
## 2277                1 1171365.6 2803203
## 2278                0 1171365.6 2803203
## 2279                1 1171365.6 2803203
## 2280                0 1171365.6 2803203
## 2281                1 1171365.6 2803203
## 2282                0 1171365.6 2803203
## 2283                0 1171365.6 2803203
## 2284                0 1171365.6 2803203
## 2285                1 1171365.6 2803203
## 2286                1 1171365.6 2803203
## 2287                0 1171365.6 2803203
## 2288                1 1171365.6 2803203
## 2289                0 1171365.6 2803203
## 2290                1 1171365.6 2803203
## 2291                1 1171365.6 2803203
## 2292                1 1171365.6 2803203
## 2293                1 1171365.6 2803203
## 2294                1 1171365.6 2803203
## 2295                0 1171365.6 2803203
## 2296                0 1171365.6 2803203
## 2297                1 1171365.6 2803203
## 2298                0 1171365.6 2803203
## 2299                0 1171365.6 2803203
## 2300                0 1171365.6 2803203
## 2301                0 1171365.6 2803203
## 2302                1 1171365.6 2803203
## 2303                0 1171365.6 2803203
## 2304                1 1171365.6 2803203
## 2305                0 1171365.6 2803203
## 2306                0 1171365.6 2803203
## 2307                0 1171365.6 2803203
## 2308                1 1171365.6 2803203
## 2309                0 1171365.6 2803203
## 2310                1 1171365.6 2803203
## 2311                1 1171365.6 2803203
## 2312                1 1171365.6 2803203
## 2313                1 1171365.6 2803203
## 2314                0 1171365.6 2803203
## 2315                0 1171365.6 2803203
## 2316                1 1171365.6 2803203
## 2317                0 1171365.6 2803203
## 2318                0 1171365.6 2803203
## 2319                0 1171365.6 2803203
## 2320                0 1171365.6 2803203
## 2321                1 1171365.6 2803203
## 2322                0 1171365.6 2803203
## 2323                0 1171365.6 2803203
## 2324                0 1171365.6 2803203
## 2325                0 1171365.6 2803203
## 2326                0 1171365.6 2803203
## 2327                0 1171365.6 2803203
## 2328                1 1171365.6 2803203
## 2329                0 1171365.6 2803203
## 2330                0 1171365.6 2803203
## 2331                0 1171365.6 2803203
## 2332                0 1171365.6 2803203
## 2333                1 1171365.6 2803203
## 2334                1 1171365.6 2803203
## 2335                1 1171365.6 2803203
## 2336                1 1171365.6 2803203
## 2337                1 1171365.6 2803203
## 2338                0 1171365.6 2803203
## 2339                1 1171365.6 2803203
## 2340                1 1171365.6 2803203
## 2341                1 1171365.6 2803203
## 2342                1 1171365.6 2803203
## 2343                1 1171365.6 2803203
## 2344                1 1171365.6 2803203
## 2345                1 1171365.6 2803203
## 2346                1 1171365.6 2803203
## 2347                1 1171365.6 2803203
## 2348                1 1171365.6 2803203
## 2349                1 1171365.6 2803203
## 2350                1 1171365.6 2803203
## 2351                1 1171365.6 2803203
## 2352                1 1171365.6 2803203
## 2353                1 1171365.6 2803203
## 2354                1 1171365.6 2803203
## 2355                0 1171365.6 2803203
## 2356                1 1171365.6 2803203
## 2357                1 1171365.6 2803203
## 2358                1 1171365.6 2803203
## 2359                1 1171365.6 2803203
## 2360                0 1171365.6 2803203
## 2361                1 1171365.6 2803203
## 2362                1 1171365.6 2803203
## 2363                1 1171365.6 2803203
## 2364                1 1171365.6 2803203
## 2365                0 1171365.6 2803203
## 2366                1 1171365.6 2803203
## 2367                0 1171365.6 2803203
## 2368                0 1171365.6 2803203
## 2369                0 1150184.3 2776463
## 2370                1 1150184.3 2776463
## 2371                0 1150184.3 2776463
## 2372                1 1150184.3 2776463
## 2373                1 1150184.3 2776463
## 2374                1 1150184.3 2776463
## 2375                0 1150184.3 2776463
## 2376                0 1150184.3 2776463
## 2377                0 1150184.3 2776463
## 2378                0 1150184.3 2776463
## 2379                0 1150184.3 2776463
## 2380                1 1150184.3 2776463
## 2381                0 1150184.3 2776463
## 2382                0 1150184.3 2776463
## 2383                0 1150184.3 2776463
## 2384                0 1150184.3 2776463
## 2385                0 1150184.3 2776463
## 2386                0 1150184.3 2776463
## 2387                0 1150184.3 2776463
## 2388                1 1150184.3 2776463
## 2389                0 1150184.3 2776463
## 2390                1 1150184.3 2776463
## 2391                1 1150184.3 2776463
## 2392                0 1150184.3 2776463
## 2393                0 1150184.3 2776463
## 2394                1 1150184.3 2776463
## 2395                1 1150184.3 2776463
## 2396                0 1150184.3 2776463
## 2397                0 1150184.3 2776463
## 2398                0 1150184.3 2776463
## 2399                0 1150184.3 2776463
## 2400                1 1150184.3 2776463
## 2401                0 1150184.3 2776463
## 2402                0 1150184.3 2776463
## 2403                1  950518.7 3290379
## 2404                1  950518.7 3290379
## 2405                1  950518.7 3290379
## 2406                1  950518.7 3290379
## 2407                1  950518.7 3290379
## 2408                1  950518.7 3290379
## 2409                1  950518.7 3290379
## 2410                1  950518.7 3290379
## 2411                1  950518.7 3290379
## 2412                1  950518.7 3290379
## 2413                1  950518.7 3290379
## 2414                1  950518.7 3290379
## 2415                0  950518.7 3290379
## 2416                0  950518.7 3290379
## 2417                1  950518.7 3290379
## 2418                1  950518.7 3290379
## 2419                1 1155617.4 2835511
## 2420                1 1155617.4 2835511
## 2421                1 1155617.4 2835511
## 2422                1 1155617.4 2835511
## 2423                1 1155617.4 2835511
## 2424                1 1155617.4 2835511
## 2425                1 1155617.4 2835511
## 2426                1 1155617.4 2835511
## 2427                1 1155617.4 2835511
## 2428                1 1155617.4 2835511
## 2429                1 1155617.4 2835511
## 2430                1 1155617.4 2835511
## 2431                1 1155617.4 2835511
## 2432                1 1155617.4 2835511
## 2433                1 1155617.4 2835511
## 2434                0 1155617.4 2835511
## 2435                1 1155617.4 2835511
## 2436                1 1155617.4 2835511
## 2437                1 1155617.4 2835511
## 2438                1 1155617.4 2835511
## 2439                1 1155617.4 2835511
## 2440                1 1155617.4 2835511
## 2441                1 1155617.4 2835511
## 2442                1 1155617.4 2835511
## 2443                1 1155617.4 2835511
## 2444                1 1155617.4 2835511
## 2445                1 1155617.4 2835511
## 2446                1 1155617.4 2835511
## 2447                1 1155617.4 2835511
## 2448                1 1155617.4 2835511
## 2449                1 1155617.4 2835511
## 2450                1 1155617.4 2835511
## 2451                1 1155617.4 2835511
## 2452                1 1155617.4 2835511
## 2453                1 1155617.4 2835511
## 2454                1 1171365.6 2803203
## 2455                1 1171365.6 2803203
## 2456                0 1171365.6 2803203
## 2457                1 1171365.6 2803203
## 2458                1 1171365.6 2803203
## 2459                1 1171365.6 2803203
## 2460                0 1171365.6 2803203
## 2461                1 1171365.6 2803203
## 2462                1 1171365.6 2803203
## 2463                1 1171365.6 2803203
## 2464                1 1171365.6 2803203
## 2465                1 1171365.6 2803203
## 2466                1 1171365.6 2803203
## 2467                1 1171365.6 2803203
## 2468                1 1171365.6 2803203
## 2469                1 1171365.6 2803203
## 2470                1 1058006.9 3032124
## 2471                1 1058006.9 3032124
## 2472                1 1058006.9 3032124
## 2473                1 1058006.9 3032124
## 2474                1 1058006.9 3032124
## 2475                1 1058006.9 3032124
## 2476                1 1058006.9 3032124
## 2477                1 1058006.9 3032124
## 2478                1 1058006.9 3032124
## 2479                1 1058006.9 3032124
## 2480                1 1058006.9 3032124
## 2481                1 1058006.9 3032124
## 2482                1 1058006.9 3032124
## 2483                1 1058006.9 3032124
## 2484                1 1058006.9 3032124
## 2485                1 1058006.9 3032124
## 2486                1 1058006.9 3032124
## 2487                1 1058006.9 3032124
## 2488                1 1058006.9 3032124
## 2489                1 1058006.9 3032124
## 2490                1 1058006.9 3032124
## 2491                1 1058006.9 3032124
## 2492                1 1058006.9 3032124
## 2493                1 1058006.9 3032124
## 2494                1 1058006.9 3032124
## 2495                1 1058006.9 3032124
## 2496                1 1058006.9 3032124
## 2497                1 1058006.9 3032124
## 2498                1 1058006.9 3032124
## 2499                1 1058006.9 3032124
## 2500                1 1058006.9 3032124
## 2501                1 1058006.9 3032124
## 2502                1 1058006.9 3032124
## 2503                1 1058006.9 3032124
## 2504                1 1058006.9 3032124
## 2505                1 1058006.9 3032124
## 2506                1 1058006.9 3032124
## 2507                1 1058006.9 3032124
## 2508                1 1058006.9 3032124
## 2509                1 1058006.9 3032124
## 2510                1 1058006.9 3032124
## 2511                1 1058006.9 3032124
## 2512                1 1058006.9 3032124
## 2513                1 1032899.7 3098293
## 2514                1 1032899.7 3098293
## 2515                1 1032899.7 3098293
## 2516                1 1032899.7 3098293
## 2517                1 1032899.7 3098293
## 2518                1 1032899.7 3098293
## 2519                1 1032899.7 3098293
## 2520                1 1032899.7 3098293
## 2521                1 1032899.7 3098293
## 2522                1 1032899.7 3098293
## 2523                1 1032899.7 3098293
## 2524                1 1032899.7 3098293
## 2525                1 1032899.7 3098293
## 2526                1 1032899.7 3098293
## 2527                1 1032899.7 3098293
## 2528                1 1032899.7 3098293
## 2529                1 1032899.7 3098293
## 2530                1 1032899.7 3098293
## 2531                1 1032899.7 3098293
## 2532                0 1032899.7 3098293
## 2533                1 1032899.7 3098293
## 2534                1 1032899.7 3098293
## 2535                1 1032899.7 3098293
## 2536                1 1000147.1 3198059
## 2537                1 1000147.1 3198059
## 2538                1 1000147.1 3198059
## 2539                1 1000147.1 3198059
## 2540                1 1000147.1 3198059
## 2541                0 1000147.1 3198059
## 2542                1 1000147.1 3198059
## 2543                1 1000147.1 3198059
## 2544                1 1000147.1 3198059
## 2545                1 1000147.1 3198059
## 2546                1 1000147.1 3198059
## 2547                1 1000147.1 3198059
## 2548                1  999718.1 3198295
## 2549                1  999718.1 3198295
## 2550                1  999718.1 3198295
## 2551                1  999718.1 3198295
## 2552                1  999718.1 3198295
## 2553                1  999718.1 3198295
## 2554                1  999718.1 3198295
## 2555                1  999718.1 3198295
## 2556                1  999718.1 3198295
## 2557                1  999718.1 3198295
## 2558                1  999718.1 3198295
## 2559                1  999718.1 3198295
## 2560                1  999718.1 3198295
## 2561                1  999718.1 3198295
## 2562                1 1171365.6 2803203
## 2563                1 1171365.6 2803203
## 2564                1 1171365.6 2803203
## 2565                1 1171365.6 2803203
## 2566                1 1171365.6 2803203
## 2567                1 1171365.6 2803203
## 2568                0 1171365.6 2803203
## 2569                1 1171365.6 2803203
## 2570                1 1171365.6 2803203
## 2571                1 1171365.6 2803203
## 2572                1 1171365.6 2803203
## 2573                1 1171365.6 2803203
## 2574                1 1171365.6 2803203
## 2575                0 1171365.6 2803203
## 2576                1 1171365.6 2803203
## 2577                1 1171365.6 2803203
## 2578                0 1171365.6 2803203
## 2579                0 1171365.6 2803203
## 2580                1 1171365.6 2803203
## 2581                1 1171365.6 2803203
## 2582                0 1171365.6 2803203
## 2583                1 1171365.6 2803203
## 2584                1 1171365.6 2803203
## 2585                0 1171365.6 2803203
## 2586                1 1171365.6 2803203
## 2587                1 1171365.6 2803203
## 2588                1 1171365.6 2803203
## 2589                1 1171365.6 2803203
## 2590                1 1171365.6 2803203
## 2591                0 1171365.6 2803203
## 2592                1 1171365.6 2803203
## 2593                1 1171365.6 2803203
## 2594                1 1171365.6 2803203
## 2595                1 1171365.6 2803203
## 2596                1 1171365.6 2803203
## 2597                1 1171365.6 2803203
## 2598                1 1171365.6 2803203
## 2599                1 1171365.6 2803203
## 2600                1 1171365.6 2803203
## 2601                1 1171365.6 2803203
## 2602                0 1171365.6 2803203
## 2603                1 1171365.6 2803203
## 2604                1 1171365.6 2803203
## 2605                0 1171365.6 2803203
## 2606                1 1171365.6 2803203
## 2607                1 1171365.6 2803203
## 2608                1 1171365.6 2803203
## 2609                1 1171365.6 2803203
## 2610                1 1171365.6 2803203
## 2611                1 1171365.6 2803203
## 2612                1 1171365.6 2803203
## 2613                1 1171365.6 2803203
## 2614                1 1171365.6 2803203
## 2615                1 1171365.6 2803203
## 2616                1 1171365.6 2803203
## 2617                1 1171365.6 2803203
## 2618                1 1171365.6 2803203
## 2619                1 1171365.6 2803203
## 2620                1 1171365.6 2803203
## 2621                1 1171365.6 2803203
## 2622                1 1171365.6 2803203
## 2623                1 1171365.6 2803203
## 2624                1 1171365.6 2803203
## 2625                1 1171365.6 2803203
## 2626                1 1171365.6 2803203
## 2627                1 1171365.6 2803203
## 2628                1 1171365.6 2803203
## 2629                1 1171365.6 2803203
## 2630                1 1171365.6 2803203
## 2631                1 1171365.6 2803203
## 2632                1 1171365.6 2803203
## 2633                1 1171365.6 2803203
## 2634                0 1171365.6 2803203
## 2635                0 1171365.6 2803203
## 2636                1 1171365.6 2803203
## 2637                0 1171365.6 2803203
## 2638                1 1171365.6 2803203
## 2639                1 1171365.6 2803203
## 2640                0 1171365.6 2803203
## 2641                0 1171365.6 2803203
## 2642                0 1171365.6 2803203
## 2643                0 1152131.0 2778862
## 2644                0 1152131.0 2778862
## 2645                1 1152131.0 2778862
## 2646                1 1152131.0 2778862
## 2647                1 1152131.0 2778862
## 2648                1 1152131.0 2778862
## 2649                0 1152131.0 2778862
## 2650                0 1152131.0 2778862
## 2651                0 1152131.0 2778862
## 2652                1 1152131.0 2778862
## 2653                1 1152131.0 2778862
## 2654                1 1152131.0 2778862
## 2655                0 1152131.0 2778862
## 2656                1 1152131.0 2778862
## 2657                1 1152131.0 2778862
## 2658                1  950508.0 3290398
## 2659                1  950508.0 3290398
## 2660                1  950508.0 3290398
## 2661                1  950508.0 3290398
## 2662                1  950508.0 3290398
## 2663                1  950508.0 3290398
## 2664                1  950508.0 3290398
## 2665                1  950508.0 3290398
## 2666                1  950508.0 3290398
## 2667                1  950508.0 3290398
## 2668                1  950508.0 3290398
## 2669                1  950508.0 3290398
## 2670                1  950508.0 3290398
## 2671                1  950508.0 3290398
## 2672                1  950508.0 3290398
## 2673                1  950508.0 3290398
## 2674                1  950508.0 3290398
## 2675                1  950508.0 3290401
## 2676                1  950508.0 3290401
## 2677                1  950508.0 3290401
## 2678                1  950508.0 3290401
## 2679                1  950508.0 3290401
## 2680                1  950508.0 3290401
## 2681                1  950508.0 3290401
## 2682                1  950508.0 3290401
## 2683                1  950508.0 3290401
## 2684                1  950508.0 3290401
## 2685                1  950508.0 3290401
## 2686                1  950508.0 3290401
## 2687                1  950508.0 3290401
## 2688                1  950508.0 3290401
## 2689                1  950508.0 3290401
## 2690                1  950508.0 3290401
## 2691                1  950508.0 3290401
## 2692                1  950508.0 3290401
## 2693                1  950508.0 3290401
## 2694                1 1155600.4 2835443
## 2695                1 1155600.4 2835443
## 2696                1 1155600.4 2835443
## 2697                1 1155600.4 2835443
## 2698                1 1155600.4 2835443
## 2699                1 1155600.4 2835443
## 2700                1 1155600.4 2835443
## 2701                1 1155600.4 2835443
## 2702                1 1155600.4 2835443
## 2703                1 1155600.4 2835443
## 2704                1 1155600.4 2835443
## 2705                1 1155600.4 2835443
## 2706                1 1155600.4 2835443
## 2707                1 1155600.4 2835443
## 2708                1 1155600.4 2835443
## 2709                1 1155600.4 2835443
## 2710                1 1155600.4 2835443
## 2711                1 1155600.4 2835443
## 2712                1 1155600.4 2835443
## 2713                1 1155600.4 2835443
## 2714                1 1155600.4 2835443
## 2715                1 1155600.4 2835443
## 2716                1 1155600.4 2835443
## 2717                1 1155600.4 2835443
## 2718                1 1155600.4 2835443
## 2719                1 1155600.4 2835443
## 2720                1 1155600.4 2835443
## 2721                1 1155600.4 2835443
## 2722                0 1155600.4 2835443
## 2723                0 1155600.4 2835443
## 2724                0 1155600.4 2835443
## 2725                1 1155600.4 2835443
## 2726                1 1155600.4 2835443
## 2727                0 1155600.4 2835443
## 2728                0 1155600.4 2835443
## 2729                0 1155600.4 2835443
## 2730                0 1155600.4 2835443
## 2731                1 1155600.4 2835443
## 2732                1 1155600.4 2835443
## 2733                1 1155600.4 2835443
## 2734                1 1155600.4 2835443
## 2735                1 1155600.4 2835443
## 2736                1 1162614.0 2792167
## 2737                1 1162614.0 2792167
## 2738                1 1162614.0 2792167
## 2739                1 1162614.0 2792167
## 2740                1 1165438.9 2795475
## 2741                1 1165438.9 2795475
## 2742                1 1165438.9 2795475
## 2743                1 1165438.9 2795475
## 2744                1 1165438.9 2795475
## 2745                1 1165438.9 2795475
## 2746                1 1162614.0 2792167
## 2747                1 1162614.0 2792167
## 2748                1 1162614.0 2792167
## 2749                1 1162614.0 2792167
## 2750                1 1165438.9 2795475
## 2751                1 1165438.9 2795475
## 2752                1 1165438.9 2795475
## 2753                1 1165438.9 2795475
## 2754                1 1162614.0 2792167
## 2755                1 1162614.0 2792167
## 2756                1 1162614.0 2792167
## 2757                1 1162614.0 2792167
## 2758                1 1162614.0 2792167
## 2759                1 1165438.9 2795475
## 2760                1 1165438.9 2795475
## 2761                1 1165438.9 2795475
## 2762                1 1165438.9 2795475
## 2763                1 1162614.0 2792167
## 2764                1 1162614.0 2792167
## 2765                1 1162614.0 2792167
## 2766                1 1162614.0 2792167
## 2767                1 1162614.0 2792167
## 2768                1 1165438.9 2795475
## 2769                1 1165438.9 2795475
## 2770                1 1165438.9 2795475
## 2771                1 1165438.9 2795475
## 2772                1 1162614.0 2792167
## 2773                1 1162614.0 2792167
## 2774                1 1162614.0 2792167
## 2775                1 1162614.0 2792167
## 2776                1 1162614.0 2792167
## 2777                1 1165438.9 2795475
## 2778                1 1165438.9 2795475
## 2779                1 1165438.9 2795475
## 2780                0 1165438.3 2795489
## 2781                0 1165438.3 2795489
## 2782                0 1165438.3 2795489
## 2783                0 1165438.3 2795489
## 2784                0 1165438.3 2795489
## 2785                0 1165438.3 2795489
## 2786                0 1165438.3 2795489
## 2787                0 1165438.3 2795489
## 2788                0 1165438.3 2795489
## 2789                0 1165438.3 2795489
## 2790                0 1165438.3 2795489
## 2791                0 1165438.3 2795489
## 2792                0 1165438.3 2795489
## 2793                0 1165438.3 2795489
## 2794                0 1165438.3 2795489
## 2795                0 1165438.3 2795489
## 2796                0 1165438.3 2795489
## 2797                0 1165438.3 2795489
## 2798                0 1165438.3 2795489
## 2799                0 1165438.3 2795489
## 2800                0 1165438.3 2795489
## 2801                0 1165438.3 2795489
## 2802                0 1165438.3 2795489
## 2803                1 1165438.3 2795489
## 2804                0 1165438.3 2795489
## 2805                0 1165438.3 2795489
## 2806                0 1165438.3 2795489
## 2807                0 1165438.3 2795489
## 2808                1 1165438.3 2795489
## 2809                0 1165438.3 2795489
## 2810                1 1165438.3 2795489
## 2811                1 1165438.3 2795489
## 2812                1 1058006.9 3032124
## 2813                1 1058006.9 3032124
## 2814                1 1058006.9 3032124
## 2815                1 1058006.9 3032124
## 2816                1 1058006.9 3032124
## 2817                1 1058006.9 3032124
## 2818                1 1058006.9 3032124
## 2819                1 1058006.9 3032124
## 2820                1 1058006.9 3032124
## 2821                1 1058006.9 3032124
## 2822                1 1058006.9 3032124
## 2823                1 1058006.9 3032124
## 2824                1 1058006.9 3032124
## 2825                1 1058006.9 3032124
## 2826                1 1058006.9 3032124
## 2827                1 1058006.9 3032124
## 2828                1 1058006.9 3032124
## 2829                1 1058006.9 3032124
## 2830                1 1058006.9 3032124
## 2831                1 1058006.9 3032124
## 2832                1 1058006.9 3032124
## 2833                1 1058006.9 3032124
## 2834                1 1058006.9 3032124
## 2835                1 1058006.9 3032124
## 2836                1 1058006.9 3032124
## 2837                1 1058006.9 3032124
## 2838                1 1058006.9 3032124
## 2839                1 1058006.9 3032124
## 2840                1 1058006.9 3032124
## 2841                1 1058006.9 3032124
## 2842                1 1058006.9 3032124
## 2843                1 1058006.9 3032124
## 2844                1 1058006.9 3032124
## 2845                1 1058006.9 3032124
## 2846                1 1058006.9 3032124
## 2847                1 1058006.9 3032124
## 2848                1 1058006.9 3032124
## 2849                1 1058006.9 3032124
## 2850                1 1058006.9 3032124
## 2851                1 1058006.9 3032124
## 2852                1 1058006.9 3032124
## 2853                1 1058006.9 3032124
## 2854                1 1058006.9 3032124
## 2855                1 1033819.8 3097599
## 2856                1 1033819.8 3097599
## 2857                1 1033819.8 3097599
## 2858                1 1033819.8 3097599
## 2859                1 1033819.8 3097599
## 2860                1 1033819.8 3097599
## 2861                1 1033819.8 3097599
## 2862                1 1033819.8 3097599
## 2863                1 1033819.8 3097599
## 2864                1 1033819.8 3097599
## 2865                1 1033819.8 3097599
## 2866                1 1033819.8 3097599
## 2867                1 1033819.8 3097599
## 2868                1 1033819.8 3097599
## 2869                1 1033819.8 3097599
## 2870                1 1033819.8 3097599
## 2871                1 1033819.8 3097599
## 2872                1 1033819.8 3097599
## 2873                1 1033819.8 3097599
## 2874                1 1033819.8 3097599
## 2875                1 1033819.8 3097599
## 2876                1 1033819.8 3097599
## 2877                1 1033819.8 3097599
## 2878                1 1033819.8 3097599
## 2879                1 1033819.8 3097599
## 2880                1 1033819.8 3097599
## 2881                1 1033819.8 3097599
## 2882                1 1033819.8 3097599
## 2883                1 1033819.8 3097599
## 2884                1 1033819.8 3097599
## 2885                1 1033819.8 3097599
## 2886                1 1033819.8 3097599
## 2887                1 1033819.8 3097599
## 2888                0 1033819.8 3097599
## 2889                1 1033819.8 3097599
## 2890                1 1033819.8 3097599
## 2891                1 1033819.8 3097599
## 2892                1 1033819.8 3097599
## 2893                1 1033819.8 3097599
## 2894                1 1033819.8 3097599
## 2895                1 1033819.8 3097599
## 2896                1 1033819.8 3097599
## 2897                1 1033819.8 3097599
## 2898                1 1033819.8 3097599
## 2899                1 1033819.8 3097599
## 2900                1 1033819.8 3097599
## 2901                1 1033819.8 3097599
## 2902                1 1033819.8 3097599
## 2903                1 1033819.8 3097599
## 2904                1 1033819.8 3097599
## 2905                1 1000227.9 3196212
## 2906                1 1000227.9 3196212
## 2907                1 1000227.9 3196212
## 2908                1 1000227.9 3196212
## 2909                1 1000227.9 3196212
## 2910                1 1000227.9 3196212
## 2911                1 1000227.9 3196212
## 2912                1 1000227.9 3196212
## 2913                1 1000227.9 3196212
## 2914                1 1000227.9 3196212
## 2915                1 1000227.9 3196212
## 2916                1 1000227.9 3196212
## 2917                1 1000227.9 3196212
## 2918                1 1000227.9 3196212
## 2919                0 1000227.9 3196212
## 2920                1 1000227.9 3196212
## 2921                1 1000227.9 3196212
## 2922                1 1000227.9 3196212
## 2923                1 1000227.9 3196212
## 2924                1 1000227.9 3196212
## 2925                1 1000227.9 3196212
## 2926                1 1000227.9 3196212
## 2927                1 1000227.9 3196212
## 2928                1 1000227.9 3196212
## 2929                1 1000227.9 3196212
## 2930                1 1000227.9 3196212
## 2931                0 1000227.9 3196212
## 2932                1 1000227.9 3196212
## 2933                1 1000227.9 3196212
## 2934                1 1171365.6 2803203
## 2935                1 1171365.6 2803203
## 2936                1 1171365.6 2803203
## 2937                1 1171365.6 2803203
## 2938                1 1171365.6 2803203
## 2939                1 1171365.6 2803203
## 2940                1 1171365.6 2803203
## 2941                1 1171365.6 2803203
## 2942                1 1171365.6 2803203
## 2943                1 1171365.6 2803203
## 2944                1 1171365.6 2803203
## 2945                1 1171365.6 2803203
## 2946                1 1171365.6 2803203
## 2947                1 1171365.6 2803203
## 2948                1 1171365.6 2803203
## 2949                1 1171365.6 2803203
## 2950                1 1171365.6 2803203
## 2951                1 1171365.6 2803203
## 2952                1 1171365.6 2803203
## 2953                1 1171365.6 2803203
## 2954                1 1171365.6 2803203
## 2955                1 1171365.6 2803203
## 2956                1 1171365.6 2803203
## 2957                1 1171365.6 2803203
## 2958                1 1171365.6 2803203
## 2959                1 1171365.6 2803203
## 2960                1 1171365.6 2803203
## 2961                1 1171365.6 2803203
## 2962                1 1171365.6 2803203
## 2963                1 1171365.6 2803203
## 2964                1 1171365.6 2803203
## 2965                1 1171365.6 2803203
## 2966                1 1171365.6 2803203
## 2967                1 1171365.6 2803203
## 2968                1 1171365.6 2803203
## 2969                1 1171365.6 2803203
## 2970                1 1171365.6 2803203
## 2971                1 1171365.6 2803203
## 2972                1 1171365.6 2803203
## 2973                1 1171365.6 2803203
## 2974                1 1171365.6 2803203
## 2975                1 1171365.6 2803203
## 2976                1 1171365.6 2803203
## 2977                1 1171365.6 2803203
## 2978                1 1171365.6 2803203
## 2979                1 1171365.6 2803203
## 2980                1 1171365.6 2803203
## 2981                1 1171365.6 2803203
## 2982                1 1171365.6 2803203
## 2983                1 1171365.6 2803203
## 2984                1 1171365.6 2803203
## 2985                1 1171365.6 2803203
## 2986                1 1171365.6 2803203
## 2987                1 1171365.6 2803203
## 2988                1 1171365.6 2803203
## 2989                1 1171365.6 2803203
## 2990                1 1171365.6 2803203
## 2991                1 1171365.6 2803203
## 2992                1 1171365.6 2803203
## 2993                1 1171365.6 2803203
## 2994                1 1171365.6 2803203
## 2995                1 1171365.6 2803203
## 2996                1 1171365.6 2803203
## 2997                1 1171365.6 2803203
## 2998                1 1171365.6 2803203
## 2999                1 1171365.6 2803203
## 3000                1 1171365.6 2803203
## 3001                1 1171365.6 2803203
## 3002                1 1171365.6 2803203
## 3003                1 1171365.6 2803203
## 3004                1 1171365.6 2803203
## 3005                1 1171365.6 2803203
## 3006                1 1171365.6 2803203
## 3007                1 1171365.6 2803203
## 3008                1 1171365.6 2803203
## 3009                1 1171365.6 2803203
## 3010                1 1171365.6 2803203
## 3011                1 1171365.6 2803203
## 3012                1 1171365.6 2803203
## 3013                1 1171365.6 2803203
## 3014                1 1171365.6 2803203
## 3015                1 1171365.6 2803203
## 3016                1 1171365.6 2803203
## 3017                1 1171365.6 2803203
## 3018                1 1171365.6 2803203
## 3019                1 1171365.6 2803203
## 3020                1 1171365.6 2803203
## 3021                1 1171365.6 2803203
## 3022                1 1171365.6 2803203
## 3023                1 1171365.6 2803203
## 3024                1 1171365.6 2803203
## 3025                1 1171365.6 2803203
## 3026                1 1171365.6 2803203
## 3027                1 1171365.6 2803203
## 3028                1 1171365.6 2803203
## 3029                0 1171365.6 2803203
## 3030                1 1171365.6 2803203
## 3031                1 1171365.6 2803203
## 3032                1 1171365.6 2803203
## 3033                1 1171365.6 2803203
## 3034                1 1171365.6 2803203
## 3035                1 1171365.6 2803203
## 3036                1 1171365.6 2803203
## 3037                1 1171365.6 2803203
## 3038                1 1171365.6 2803203
## 3039                1 1171365.6 2803203
## 3040                1 1171365.6 2803203
## 3041                1 1171365.6 2803203
## 3042                1 1171365.6 2803203
## 3043                1 1171365.6 2803203
## 3044                1 1171365.6 2803203
## 3045                1 1171365.6 2803203
## 3046                1 1171365.6 2803203
## 3047                1 1171365.6 2803203
## 3048                1 1171365.6 2803203
## 3049                1 1171365.6 2803203
## 3050                1 1171365.6 2803203
## 3051                1 1171365.6 2803203
## 3052                1 1171365.6 2803203
## 3053                1 1171365.6 2803203
## 3054                1 1171365.6 2803203
## 3055                1 1171365.6 2803203
## 3056                1 1171365.6 2803203
## 3057                1 1171365.6 2803203
## 3058                1 1171365.6 2803203
## 3059                1 1171365.6 2803203
## 3060                1 1171365.6 2803203
## 3061                1 1171365.6 2803203
## 3062                1 1171365.6 2803203
## 3063                1 1171365.6 2803203
## 3064                1 1171365.6 2803203
## 3065                1 1171365.6 2803203
## 3066                1 1171365.6 2803203
## 3067                1 1171365.6 2803203
## 3068                1 1171365.6 2803203
## 3069                1 1171365.6 2803203
## 3070                1 1171365.6 2803203
## 3071                1 1171365.6 2803203
## 3072                1 1171365.6 2803203
## 3073                1 1171365.6 2803203
## 3074                1 1171365.6 2803203
## 3075                1 1171365.6 2803203
## 3076                0 1171365.6 2803203
## 3077                1 1171365.6 2803203
## 3078                0 1171365.6 2803203
## 3079                1 1171365.6 2803203
## 3080                0 1171365.6 2803203
## 3081                0 1171365.6 2803203
## 3082                0 1171365.6 2803203
## 3083                0 1171365.6 2803203
## 3084                1 1171365.6 2803203
## 3085                0 1171365.6 2803203
## 3086                0 1171365.6 2803203
## 3087                0 1171365.6 2803203
## 3088                0 1171365.6 2803203
## 3089                0 1171365.6 2803203
## 3090                0 1171365.6 2803203
## 3091                1 1171365.6 2803203
## 3092                1 1171365.6 2803203
## 3093                1 1171365.6 2803203
## 3094                1 1171365.6 2803203
## 3095                1 1171365.6 2803203
## 3096                0 1171365.6 2803203
## 3097                0 1171365.6 2803203
## 3098                0 1171365.6 2803203
## 3099                0 1171365.6 2803203
## 3100                1 1171365.6 2803203
## 3101                1 1171365.6 2803203
## 3102                1 1171365.6 2803203
## 3103                1 1171365.6 2803203
## 3104                0 1171365.6 2803203
## 3105                0 1171365.6 2803203
## 3106                0 1171365.6 2803203
## 3107                0 1171365.6 2803203
## 3108                0 1171365.6 2803203
## 3109                0 1171365.6 2803203
## 3110                0 1171365.6 2803203
## 3111                0 1171365.6 2803203
## 3112                0 1171365.6 2803203
## 3113                0 1171365.6 2803203
## 3114                0 1171365.6 2803203
## 3115                0 1171365.6 2803203
## 3116                0 1171365.6 2803203
## 3117                0 1171365.6 2803203
## 3118                0 1171365.6 2803203
## 3119                0 1171365.6 2803203
## 3120                0 1171365.6 2803203
## 3121                0 1171365.6 2803203
## 3122                0 1171365.6 2803203
## 3123                0 1171365.6 2803203
## 3124                0 1171365.6 2803203
## 3125                0 1171365.6 2803203
## 3126                0 1171365.6 2803203
## 3127                0 1171365.6 2803203
## 3128                0 1171365.6 2803203
## 3129                0 1171365.6 2803203
## 3130                0 1171365.6 2803203
## 3131                1 1171365.6 2803203
## 3132                0 1171365.6 2803203
## 3133                0 1171365.6 2803203
## 3134                0 1171365.6 2803203
## 3135                0 1171365.6 2803203
## 3136                1 1171365.6 2803203
## 3137                0 1171365.6 2803203
## 3138                0 1171365.6 2803203
## 3139                0 1171365.6 2803203
## 3140                0 1171365.6 2803203
## 3141                0 1171365.6 2803203
## 3142                0 1171365.6 2803203
## 3143                1 1171365.6 2803203
## 3144                0 1171365.6 2803203
## 3145                0 1171365.6 2803203
## 3146                1 1171365.6 2803203
## 3147                0 1171365.6 2803203
## 3148                1 1171365.6 2803203
## 3149                0 1171365.6 2803203
## 3150                1 1171365.6 2803203
## 3151                1 1171365.6 2803203
## 3152                1 1171365.6 2803203
## 3153                1 1171365.6 2803203
## 3154                1 1171365.6 2803203
## 3155                1 1151501.0 2777539
## 3156                1 1151501.0 2777539
## 3157                1 1151501.0 2777539
## 3158                1 1151501.0 2777539
## 3159                1 1151501.0 2777539
## 3160                1 1150191.4 2776436
## 3161                1 1150191.4 2776436
## 3162                1 1150191.4 2776436
## 3163                1 1150191.4 2776436
## 3164                1 1150191.4 2776436
## 3165                1 1151501.0 2777539
## 3166                1 1151501.0 2777539
## 3167                1 1151501.0 2777539
## 3168                1 1151501.0 2777539
## 3169                1 1151501.0 2777539
## 3170                1 1150191.4 2776436
## 3171                1 1150191.4 2776436
## 3172                1 1150191.4 2776436
## 3173                1 1150191.4 2776436
## 3174                1 1150191.4 2776436
## 3175                1 1151501.0 2777539
## 3176                1 1151501.0 2777539
## 3177                1 1151501.0 2777539
## 3178                1 1151501.0 2777539
## 3179                1 1151501.0 2777539
## 3180                1 1150191.4 2776436
## 3181                1 1150191.4 2776436
## 3182                1 1150191.4 2776436
## 3183                1 1150191.4 2776436
## 3184                1 1151501.0 2777539
## 3185                1 1151501.0 2777539
## 3186                1 1151501.0 2777539
## 3187                1 1150191.4 2776436
## 3188                1 1150191.4 2776436
## 3189                1 1150191.4 2776436
## 3190                1 1150191.4 2776436
## 3191                1 1150191.4 2776436
## 3192                1 1150191.4 2776436
## 3193                1 1150191.4 2776436
## 3194                1 1150191.4 2776436
## 3195                1 1150191.4 2776436
## 3196                1 1150191.4 2776436
## 3197                1 1150191.4 2776436
## 3198                1 1150191.4 2776436
## 3199                1 1150191.4 2776436
## 3200                1 1150191.4 2776436
## 3201                1 1150191.4 2776436
## 3202                1 1150191.4 2776436
## 3203                1 1150191.4 2776436
## 3204                1 1150191.4 2776436
## 3205                1 1150191.4 2776436
## 3206                0 1150191.4 2776436
## 3207                0 1150191.4 2776436
## 3208                0 1150191.4 2776436
## 3209                0 1150191.4 2776436
## 3210                0 1150191.4 2776436
## 3211                1 1150191.4 2776436
## 3212                1 1150191.4 2776436
## 3213                0 1150191.4 2776436
## 3214                0 1150191.4 2776436
## 3215                0 1150191.4 2776436
## 3216                1 1150191.4 2776436
## 3217                0 1150191.4 2776436
## 3218                0 1150191.4 2776436
## 3219                0 1150191.4 2776436
## 3220                0 1150191.4 2776436
## 3221                0 1150191.4 2776436
## 3222                0 1150191.4 2776436
## 3223                1 1150191.4 2776436
## 3224                1 1151501.0 2777539
## 3225                1 1151501.0 2777539
## 3226                1 1150191.4 2776436
## 3227                1 1150191.4 2776436
## 3228                1 1150191.4 2776436
## 3229                1 1150191.4 2776436
## 3230                1 1150191.4 2776436
## 3231                1 1150191.4 2776436
## 3232                1 1150191.4 2776436
## 3233                1 1150191.4 2776436
## 3234                0 1150191.4 2776436
## 3235                1 1150191.4 2776436
## 3236                1 1150191.4 2776436
## 3237                1 1150191.4 2776436
## 3238                1 1150191.4 2776436
## 3239                1 1150191.4 2776436
## 3240                0 1150191.4 2776436
## 3241                0 1150191.4 2776436
## 3242                1 1150191.4 2776436
## 3243                1 1150191.4 2776436
## 3244                0 1150191.4 2776436
## 3245                1 1150191.4 2776436
## 3246                1 1150191.4 2776436
## 3247                1 1150191.4 2776436
## 3248                1 1150191.4 2776436
## 3249                1 1150191.4 2776436
## 3250                1 1150191.4 2776436
## 3251                1 1155600.4 2835443
## 3252                1 1155600.4 2835443
## 3253                1 1155600.4 2835443
## 3254                1 1155600.4 2835443
## 3255                1 1155600.4 2835443
## 3256                1 1155600.4 2835443
## 3257                1 1155600.4 2835443
## 3258                1 1155600.4 2835443
## 3259                1 1155600.4 2835443
## 3260                0 1155600.4 2835443
## 3261                1 1155600.4 2835443
## 3262                1 1155600.4 2835443
## 3263                1 1171365.6 2803203
## 3264                1 1171365.6 2803203
## 3265                1 1171365.6 2803203
## 3266                1 1171365.6 2803203
## 3267                1 1171365.6 2803203
## 3268                1 1171365.6 2803203
## 3269                1 1171365.6 2803203
## 3270                1 1171365.6 2803203
## 3271                1 1171365.6 2803203
## 3272                1 1171365.6 2803203
## 3273                1 1171365.6 2803203
## 3274                1 1171365.6 2803203
## 3275                0 1171365.6 2803203
## 3276                1 1171365.6 2803203
## 3277                1 1171365.6 2803203
## 3278                1 1171365.6 2803203
## 3279                1 1171365.6 2803203
## 3280                1 1171365.6 2803203
## 3281                1 1171365.6 2803203
## 3282                1 1171365.6 2803203
## 3283                1 1171365.6 2803203
## 3284                1 1171365.6 2803203
## 3285                1 1171365.6 2803203
## 3286                1 1171365.6 2803203
## 3287                1 1171365.6 2803203
## 3288                1 1171365.6 2803203
## 3289                1 1058003.6 3032121
## 3290                1 1058003.6 3032121
## 3291                1 1058003.6 3032121
## 3292                1 1058003.6 3032121
## 3293                1 1058003.6 3032121
## 3294                1 1058003.6 3032121
## 3295                1 1058003.6 3032121
## 3296                0 1058003.6 3032121
## 3297                1 1058003.6 3032121
## 3298                1 1058003.6 3032121
## 3299                1 1058003.6 3032121
## 3300                1 1058003.6 3032121
## 3301                1 1058003.6 3032121
## 3302                1 1058003.6 3032121
## 3303                1 1058003.6 3032121
## 3304                1 1058003.6 3032121
## 3305                1 1058003.6 3032121
## 3306                1 1058003.6 3032121
## 3307                1 1058003.6 3032121
## 3308                1 1058003.6 3032121
## 3309                1 1058003.6 3032121
## 3310                1 1171365.6 2803203
## 3311                1 1171365.6 2803203
## 3312                1 1171365.6 2803203
## 3313                1 1171365.6 2803203
## 3314                1 1161803.2 2842386
## 3315                0 1161803.2 2842386
## 3316                0 1161803.2 2842386
## 3317                0 1161803.2 2842386
## 3318                1 1165438.9 2795475
## 3319                1 1165438.9 2795475
## 3320                1 1165438.9 2795475
## 3321                1 1165438.9 2795475
## 3322                1 1165438.9 2795475
## 3323                1 1165438.9 2795475
## 3324                1 1165438.9 2795475
## 3325                1 1171365.6 2803203
## 3326                1 1171365.6 2803203
## 3327                1 1171365.6 2803203
## 3328                0 1171365.6 2803203
## 3329                1 1171365.6 2803203
## 3330                0 1171365.6 2803203
## 3331                1 1165494.9 2795481
## 3332                1 1165494.9 2795481
## 3333                1 1165494.9 2795481
## 3334                1 1171365.6 2803203
## 3335                1 1171365.6 2803203
## 3336                1 1171365.6 2803203
## 3337                1 1171365.6 2803203
## 3338                1 1171365.6 2803203
## 3339                1 1171365.6 2803203
## 3340                1 1033803.4 3097587
## 3341                0 1033803.4 3097587
## 3342                1 1033803.4 3097587
## 3343                1 1033803.4 3097587
## 3344                1 1033803.4 3097587
## 3345                1 1033803.4 3097587
## 3346                1 1033803.4 3097587
## 3347                1 1033803.4 3097587
## 3348                1 1033803.4 3097587
## 3349                1 1033803.4 3097587
## 3350                1 1033803.4 3097587
## 3351                1 1033803.4 3097587
## 3352                1 1033803.4 3097587
## 3353                1 1033803.4 3097587
## 3354                1 1033803.4 3097587
## 3355                1 1033803.4 3097587
## 3356                1 1033803.4 3097587
## 3357                1 1033803.4 3097587
## 3358                1 1033803.4 3097587
## 3359                1 1033803.4 3097587
## 3360                1 1033803.4 3097587
## 3361                1 1033803.4 3097587
## 3362                1 1033803.4 3097587
## 3363                1 1033803.4 3097587
## 3364                1 1033803.4 3097587
## 3365                1 1033803.4 3097587
## 3366                1 1033803.4 3097587
## 3367                1 1033803.4 3097587
## 3368                1 1033803.4 3097587
## 3369                1 1033803.4 3097587
## 3370                1 1033803.4 3097587
## 3371                1 1033803.4 3097587
## 3372                1 1033803.4 3097587
## 3373                1 1033803.4 3097587
## 3374                1 1033803.4 3097587
## 3375                1 1033803.4 3097587
## 3376                1 1033803.4 3097587
## 3377                1 1033803.4 3097587
## 3378                1 1033803.4 3097587
## 3379                1 1033803.4 3097587
## 3380                1 1033803.4 3097587
## 3381                1 1033803.4 3097587
## 3382                1 1033803.4 3097587
## 3383                1 1033803.4 3097587
## 3384                1 1033803.4 3097587
## 3385                1 1033803.4 3097587
## 3386                1 1033803.4 3097587
## 3387                1 1033803.4 3097587
## 3388                1 1033803.4 3097587
## 3389                1 1033803.4 3097587
## 3390                1 1033803.4 3097587
## 3391                1 1033803.4 3097587
## 3392                1 1033803.4 3097587
## 3393                1 1033803.4 3097587
## 3394                1 1000224.2 3196220
## 3395                1 1000224.2 3196220
## 3396                1 1000224.2 3196220
## 3397                1 1000224.2 3196220
## 3398                1 1000224.2 3196220
## 3399                1 1000224.2 3196220
## 3400                1 1000224.2 3196220
## 3401                1 1000224.2 3196220
## 3402                1 1000224.2 3196220
## 3403                1 1000224.2 3196220
## 3404                1 1000224.2 3196220
## 3405                1 1000224.2 3196220
## 3406                1 1000224.2 3196220
## 3407                1 1000224.2 3196220
## 3408                1 1000224.2 3196220
## 3409                1 1000224.2 3196220
## 3410                1 1000224.2 3196220
## 3411                1 1000224.2 3196220
## 3412                1 1000224.2 3196220
## 3413                1 1000224.2 3196220
## 3414                1 1000224.2 3196220
## 3415                1 1000224.2 3196220
## 3416                1 1000224.2 3196220
## 3417                1 1000224.2 3196220
## 3418                1 1000224.2 3196220
## 3419                1 1000224.2 3196220
## 3420                1 1000224.2 3196220
## 3421                1 1000224.2 3196220
## 3422                1 1000224.2 3196220
## 3423                1 1000224.2 3196220
## 3424                1 1000224.2 3196220
## 3425                1 1000224.2 3196220
## 3426                1 1000224.2 3196220
## 3427                1 1000224.2 3196220
## 3428                1 1000224.2 3196220
## 3429                1 1000224.2 3196220
## 3430                1 1000224.2 3196220
## 3431                1 1000224.2 3196220
## 3432                1 1000224.2 3196220
## 3433                1 1000224.2 3196220
## 3434                1 1000224.2 3196220
## 3435                1 1000224.2 3196220
## 3436                1 1000224.2 3196220
## 3437                1 1000224.2 3196220
## 3438                1 1000224.2 3196220
## 3439                1 1000224.2 3196220
## 3440                1 1000224.2 3196220
## 3441                1 1000224.2 3196220
## 3442                1 1000224.2 3196220
## 3443                1 1000224.2 3196220
## 3444                1 1000224.2 3196220
## 3445                0 1000224.2 3196220
## 3446                1 1000224.2 3196220
## 3447                1 1000224.2 3196220
## 3448                1 1155612.7 2835421
## 3449                1 1155612.7 2835421
## 3450                1 1155612.7 2835421
## 3451                1 1155612.7 2835421
## 3452                1 1155612.7 2835421
## 3453                1 1155612.7 2835421
## 3454                1 1155612.7 2835421
## 3455                1 1155612.7 2835421
## 3456                1 1155612.7 2835421
## 3457                1 1155612.7 2835421
## 3458                1 1155612.7 2835421
## 3459                1 1155612.7 2835421
## 3460                1 1155612.7 2835421
## 3461                1 1155612.7 2835421
## 3462                1 1155612.7 2835421
## 3463                1 1155612.7 2835421
## 3464                1 1155612.7 2835421
## 3465                1 1155612.7 2835421
## 3466                1 1155612.7 2835421
## 3467                1 1155612.7 2835421
## 3468                1 1155612.7 2835421
## 3469                1 1155612.7 2835421
## 3470                1 1155612.7 2835421
## 3471                1 1155612.7 2835421
## 3472                1 1155612.7 2835421
## 3473                1 1155612.7 2835421
## 3474                1 1155612.7 2835421
## 3475                1 1155612.7 2835421
## 3476                1 1155612.7 2835421
## 3477                1 1155612.7 2835421
## 3478                0 1155612.7 2835421
## 3479                1 1155612.7 2835421
## 3480                0 1155612.7 2835421
## 3481                1 1155612.7 2835421
## 3482                1 1155612.7 2835421
## 3483                1 1155612.7 2835421
## 3484                1 1155612.7 2835421
## 3485                0 1155612.7 2835421

Model validation looks fine. Nothing to worry about.

Let’s see what impacts the long-wing morph variance:

SE = function(x){sd(x)/sqrt(length(x))}
wmorph_summaryt<-aggregate(wing_morph_binom~sex_binom*pophost_binom*month_of_year*months_since_start, data=raw_data, FUN=mean)
wmorph_summaryt$sd<-aggregate(wing_morph_binom~sex_binom*pophost_binom*month_of_year*months_since_start, data=raw_data,
                          FUN=sd)$wing_morph_binom
wmorph_summaryt$se<-aggregate(wing_morph_binom~sex_binom*pophost_binom*month_of_year*months_since_start, data=raw_data,
                          FUN=SE)$wing_morph_binom
data = wmorph_summaryt
data<-data.frame(R=data$sd, 
                 A=data$sex_binom, 
                 B=data$pophost_binom, 
                 C=(data$month_of_year),
                 D=data$months_since_start)

model_script = paste0(source_path,"generic models-gaussian glm 3-FF.R")
model_comparisonsAIC(model_script)
##        [,1]      [,2]      [,3]      [,4]       [,5]       [,6]      
## AICs   -91.69472 -90.25875 -89.97386 -88.65427  -88.54186  -88.5364  
## models 2         4         6         10         7          8         
## probs  0.3392973 0.1654864 0.1435158 0.07419158 0.07013674 0.06994547
## 
## m2   glm(formula = R ~ B, family = gaussian, data = data)
## m4   glm(formula = R ~ A + B, family = gaussian, data = data)
## m6   glm(formula = R ~ B + C, family = gaussian, data = data)
## m10  glm(formula = R ~ B * C, family = gaussian, data = data)
## m7   glm(formula = R ~ A + B + C, family = gaussian, data = data)
## m8   glm(formula = R ~ A * B, family = gaussian, data = data)
anova(m2, m6, test="Chisq") # Adding C does not improve fit
## Analysis of Deviance Table
## 
## Model 1: R ~ B
## Model 2: R ~ B + C
##   Resid. Df Resid. Dev Df  Deviance Pr(>Chi)
## 1        38    0.20365                      
## 2        37    0.20223  1 0.0014162   0.6107
anova(m2, m4, test="Chisq") # Adding B does not improve fit
## Analysis of Deviance Table
## 
## Model 1: R ~ B
## Model 2: R ~ A + B
##   Resid. Df Resid. Dev Df  Deviance Pr(>Chi)
## 1        38    0.20365                      
## 2        37    0.20080  1 0.0028514   0.4685
anova(m0, m2, test="Chisq")
## Analysis of Deviance Table
## 
## Model 1: R ~ 1
## Model 2: R ~ B
##   Resid. Df Resid. Dev Df Deviance  Pr(>Chi)    
## 1        39    0.61828                          
## 2        38    0.20365  1  0.41464 < 2.2e-16 ***
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
m = glm(sd ~ pophost_binom, data=wmorph_summaryt, family="gaussian")
tidy_regression(m, is_color=FALSE) # -1 = C.corindum
## glm sd ~ pophost_binom gaussian wmorph_summaryt 
## AIC:  -91.69472 
## (Intercept)      coeff:  0.3531599   Pr(>|t|):  2.477074e-28 *
## pophost_binom    coeff:  -0.101813   Pr(>|t|):  1.063916e-10 *

only a (-) effect of pophost, where if from K.elegans then have less variation vs. if from C.cordinum have more variation.

plot(m$fitted.values, m$residuals)

Wing2Body

Removing Torn Wings

data_long = remove_torn_wings(data_long)
## 
## number of bugs with torn wings: 195

Winter 2020 vs. other dates

data_long$compare_dates <- -1
data_long$compare_dates[data_long$months_since_start==81] <- 1

compare_dates_model <- glm(wing2body~compare_dates + pophost_binom*sex_binom, data=data_long)

tidy_regression(compare_dates_model, is_color=FALSE)
## glm wing2body ~ compare_dates + pophost_binom * sex_binom data_long 
## AIC:  -9583.815 
## (Intercept)              coeff:  0.7268496   Pr(>|t|):  0 *
## compare_dates            coeff:  -0.0034715  Pr(>|t|):  1.887549e-09 *
## pophost_binom            coeff:  0.0039134   Pr(>|t|):  6.052291e-16 *
## sex_binom                coeff:  -0.0019135  Pr(>|t|):  4.999727e-05 *
## pophost_binom:sex_binom  coeff:  0.0015372   Pr(>|t|):  0.001064317 *

Yes, bugs from this collection date have detectably smaller wing2body ratios on average than other collection dates, even when controlling for sex and host plant.

Binomial Regressions

What effects wing2body ratio? sex? host plant? month of the year? months since start?

data_long$wing2body_c = (data_long$wing2body-mean(data_long$wing2body, na.rm=TRUE))
data_long$month_of_year_c = (data_long$month_of_year-mean(data_long$month_of_year, na.rm=TRUE))
data_long$months_since_start_c = (data_long$months_since_start-mean(data_long$months_since_start, na.rm=TRUE))
data<-data.frame(R=data_long$wing2body_c, # centered
                 A=data_long$sex_binom, # sex
                 B=data_long$pophost_binom, # host
                 C=data_long$month_of_year_c, 
                 D=data_long$months_since_start_c) 

model_script = paste0(source_path,"generic models-gaussian glm 3-FF.R")
model_comparisonsAIC(model_script)
##        [,1]      [,2]      [,3]      [,4]      
## AICs   -9580.954 -9579.162 -9579.081 -9577.28  
## models 11        14        15        17        
## probs  0.5084872 0.2075476 0.1993093 0.08099797
## 
## m11  glm(formula = R ~ A * B + C, family = gaussian, data = data)
## m14  glm(formula = R ~ A * B + A * C, family = gaussian, data = data)
## m15  glm(formula = R ~ A * B + B * C, family = gaussian, data = data)
## m17  glm(formula = R ~ A * B + A * C + B * C, family = gaussian, data = data)
anova(m15, m17, test="Chisq") # Adding A*C does not improve fit
anova(m11, m15, test="Chisq") # Adding B*C does not improve fit
anova(m11, m14, test="Chisq") # Adding A*C does not improve fit
anova(m8, m11, test="Chisq") # Adding C does improve fit
## Analysis of Deviance Table
## 
## Model 1: R ~ A * B + B * C
## Model 2: R ~ A * B + A * C + B * C
##   Resid. Df Resid. Dev Df  Deviance Pr(>Chi)
## 1      1910    0.75073                      
## 2      1909    0.75065  1 7.802e-05    0.656
## Analysis of Deviance Table
## 
## Model 1: R ~ A * B + C
## Model 2: R ~ A * B + B * C
##   Resid. Df Resid. Dev Df   Deviance Pr(>Chi)
## 1      1911    0.75078                       
## 2      1910    0.75073  1 4.9699e-05   0.7221
## Analysis of Deviance Table
## 
## Model 1: R ~ A * B + C
## Model 2: R ~ A * B + A * C
##   Resid. Df Resid. Dev Df   Deviance Pr(>Chi)
## 1      1911    0.75078                       
## 2      1910    0.75070  1 8.1438e-05    0.649
## Analysis of Deviance Table
## 
## Model 1: R ~ A * B
## Model 2: R ~ A * B + C
##   Resid. Df Resid. Dev Df Deviance  Pr(>Chi)    
## 1      1912    0.76395                          
## 2      1911    0.75078  1 0.013174 7.004e-09 ***
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
m = glm(wing2body_c ~ sex_binom*pophost_binom + month_of_year_c, data=data_long, family=gaussian) 
tidy_regression(m, is_color=FALSE) # m11
## glm wing2body_c ~ sex_binom * pophost_binom + month_of_year_c gaussian data_long 
## AIC:  -9580.954 
## (Intercept)              coeff:  -0.000755   Pr(>|t|):  0.113524
## sex_binom                coeff:  -0.001783   Pr(>|t|):  0.0001517074 *
## pophost_binom            coeff:  0.0041892   Pr(>|t|):  1.774229e-18 *
## month_of_year_c          coeff:  0.0008266   Pr(>|t|):  8.170412e-09 *
## sex_binom:pophost_binom  coeff:  0.0017058   Pr(>|t|):  0.0002893626 *
summary(m)
## 
## Call:
## glm(formula = wing2body_c ~ sex_binom * pophost_binom + month_of_year_c, 
##     family = gaussian, data = data_long)
## 
## Deviance Residuals: 
##       Min         1Q     Median         3Q        Max  
## -0.154476  -0.010730  -0.000017   0.010921   0.115362  
## 
## Coefficients:
##                           Estimate Std. Error t value Pr(>|t|)    
## (Intercept)             -0.0007550  0.0004769  -1.583 0.113524    
## sex_binom               -0.0017830  0.0004697  -3.796 0.000152 ***
## pophost_binom            0.0041892  0.0004728   8.861  < 2e-16 ***
## month_of_year_c          0.0008266  0.0001427   5.791 8.17e-09 ***
## sex_binom:pophost_binom  0.0017058  0.0004698   3.631 0.000289 ***
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 
## (Dispersion parameter for gaussian family taken to be 0.0003928726)
## 
##     Null deviance: 0.80451  on 1915  degrees of freedom
## Residual deviance: 0.75078  on 1911  degrees of freedom
##   (648 observations deleted due to missingness)
## AIC: -9581
## 
## Number of Fisher Scoring iterations: 2
nrow(data_long)
## [1] 2564
  • Males have larger wing2body ratios.
  • K.elegans bugs have larger wing2body ratios.
  • Females on K.elegans have longer wings than C.corindum females.
  • wing2body ratios are increasing moderately towards the end of the year
temp = data_long %>% 
  filter(!is.na(wing2body_c))
check_spatial_dependencies(m, temp, temp$long, temp$lat, zone = 16, cutoff=14000, is_glm=TRUE)
## Warning in showSRID(uprojargs, format = "PROJ", multiline = "NO", prefer_proj
## = prefer_proj): Discarded datum Unknown based on WGS84 ellipsoid in Proj4
## definition
## Warning in proj4string(res): CRS object has comment, which is lost in output
## [1] "m"

##         pophost      population sex beak thorax  wing  body     month year
## 1     K.elegans        Ft.Myers   M 5.24   2.86  7.98 10.92     April 2013
## 2     K.elegans        Ft.Myers   M 5.72   3.09  8.27 11.58     April 2013
## 3     K.elegans        Ft.Myers   M 5.81   3.10  8.72 11.54     April 2013
## 4     K.elegans        Ft.Myers   M 4.60   2.51  6.57  8.95     April 2013
## 5     K.elegans        Ft.Myers   M 5.75   2.97  8.38 11.38     April 2013
## 6     K.elegans        Ft.Myers   M 5.42   2.96  7.85 10.80     April 2013
## 7     K.elegans        Ft.Myers   M 5.64   2.87  8.02 10.67     April 2013
## 8     K.elegans        Ft.Myers   M 5.22   2.60  7.36 10.14     April 2013
## 9     K.elegans        Ft.Myers   M 5.17   2.87  7.81 10.42     April 2013
## 10    K.elegans        Ft.Myers   F 6.99   3.78  9.93 13.50     April 2013
## 11    K.elegans        Ft.Myers   F 7.38   3.35  9.07 12.45     April 2013
## 12    K.elegans        Ft.Myers   M 5.09   2.81  7.77 10.45     April 2013
## 13    K.elegans        Ft.Myers   M 5.55   3.19  8.57 11.57     April 2013
## 14    K.elegans        Ft.Myers   M 5.81   3.33  8.51 11.58     April 2013
## 16    K.elegans        Ft.Myers   M 5.73   3.05  8.09 10.73     April 2013
## 17    K.elegans        Ft.Myers   M 5.26   3.05  8.09 10.96     April 2013
## 18    K.elegans        Ft.Myers   F 6.41   3.74 10.26 13.27     April 2013
## 19    K.elegans        Ft.Myers   M 5.50   3.05  8.45 11.37     April 2013
## 20    K.elegans        Ft.Myers   F 6.12   3.16  8.73 11.83     April 2013
## 21    K.elegans        Ft.Myers   F 7.99   3.47 10.02 13.48     April 2013
## 22    K.elegans        Ft.Myers   M 5.24   3.05  7.58 10.45     April 2013
## 23    K.elegans        Ft.Myers   F 7.29   3.49  9.94 13.33     April 2013
## 24    K.elegans        Ft.Myers   M 5.66   2.83  7.67 10.51     April 2013
## 25    K.elegans        Ft.Myers   F 7.87   3.52  9.79 13.35     April 2013
## 26    K.elegans        Ft.Myers   M 5.27   2.80  7.89 10.55     April 2013
## 104  C.corindum       Homestead   M 5.45   2.66  5.64  8.48       May 2013
## 105  C.corindum       Homestead   F 7.15   3.10  8.35 11.93       May 2013
## 106  C.corindum       Homestead   M 5.94   3.27  8.92 12.12       May 2013
## 107  C.corindum       Homestead   F 6.45   3.21  8.71 11.85       May 2013
## 109  C.corindum       Homestead   F 7.51   3.16  9.01 12.33       May 2013
## 110  C.corindum       Homestead   M 5.83   3.22  8.59 12.39       May 2013
## 111  C.corindum       Homestead   M 5.08   2.90  8.13 11.20       May 2013
## 112  C.corindum       Homestead   M 5.61   3.19  8.76 11.72       May 2013
## 114  C.corindum       Homestead   M 5.61   3.45  8.45 11.49       May 2013
## 141  C.corindum North_Key_Largo   M 5.86   2.84  7.99 11.25     April 2013
## 142  C.corindum North_Key_Largo   M 6.69   3.14  8.41 11.48     April 2013
## 143  C.corindum North_Key_Largo   F 9.25   3.95  9.99 13.55     April 2013
## 144  C.corindum North_Key_Largo   M 6.43   3.18  8.61 11.57     April 2013
## 146  C.corindum North_Key_Largo   M 6.77   3.41  8.70 11.63     April 2013
## 147  C.corindum North_Key_Largo   F 7.83   3.68  9.78 13.31     April 2013
## 148  C.corindum North_Key_Largo   M 5.98   3.16  9.40 12.50     April 2013
## 149  C.corindum North_Key_Largo   M 6.18   2.96  8.21 10.94     April 2013
## 150  C.corindum North_Key_Largo   M 5.46   3.25  8.74 11.76     April 2013
## 152  C.corindum North_Key_Largo   M 5.14   2.59  7.25  9.64     April 2013
## 153  C.corindum North_Key_Largo   M 6.30   3.15  8.50 11.78     April 2013
## 202   K.elegans      Lake_Wales   M 5.42   3.11  7.96 10.93     April 2013
## 203   K.elegans      Lake_Wales   M 5.41   2.58  6.25  9.22     April 2013
## 204   K.elegans      Lake_Wales   M 5.35   3.13  8.25 11.79     April 2013
## 205   K.elegans      Lake_Wales   F 6.78   3.12  9.25 12.07     April 2013
## 206   K.elegans      Lake_Wales   M 5.32   2.71  7.66 10.66     April 2013
## 207   K.elegans      Lake_Wales   M 5.05   2.49  7.04  9.80     April 2013
## 208   K.elegans      Lake_Wales   F 7.63   3.35  9.12 12.38     April 2013
## 209   K.elegans      Lake_Wales   M 5.17   2.76  8.25 11.17     April 2013
## 210   K.elegans      Lake_Wales   M 5.48   2.51  6.23  9.12     April 2013
## 211   K.elegans      Lake_Wales   M 5.19   3.06  7.75 10.76     April 2013
## 213   K.elegans      Lake_Wales   F 6.81   3.49  9.76 13.51     April 2013
## 214   K.elegans      Lake_Wales   M 5.02   2.80  7.27 10.41     April 2013
## 215   K.elegans      Lake_Wales   F 7.56   3.20  8.07 11.65     April 2013
## 217   K.elegans      Lake_Wales   M 5.47   3.08  7.38 10.46     April 2013
## 219   K.elegans      Lake_Wales   F 6.18   2.91  7.77 11.11     April 2013
## 221   K.elegans      Lake_Wales   M 5.03   2.62  7.19  9.84     April 2013
## 222   K.elegans      Lake_Wales   M 5.68   2.79  7.41 10.24     April 2013
## 223   K.elegans      Lake_Wales   M 5.60   3.32  8.64 11.70     April 2013
## 224   K.elegans      Lake_Wales   M 5.28   2.98  8.16 11.12     April 2013
## 225   K.elegans      Lake_Wales   M 5.50   2.83  8.09 10.65     April 2013
## 226   K.elegans      Lake_Wales   F 6.47   3.02  8.00 11.03     April 2013
## 228   K.elegans      Lake_Wales   M 5.28   3.17  8.68 11.62     April 2013
## 229   K.elegans      Lake_Wales   M 5.53   3.14  8.19 11.18     April 2013
## 230   K.elegans      Lake_Wales   M 5.56   2.98  7.89 10.90     April 2013
## 837  C.corindum       Key_Largo   M 6.24   3.16  8.43 11.53     April 2014
## 839  C.corindum       Key_Largo   M 6.33   2.94  7.88 10.42     April 2014
## 840  C.corindum       Key_Largo   F 9.10   3.89 10.23 13.93     April 2014
## 841  C.corindum       Key_Largo   F 8.80   3.67 10.09 14.11     April 2014
## 844  C.corindum       Key_Largo   M 5.89   2.85  7.94 10.64     April 2014
## 845  C.corindum       Key_Largo   M 5.43   2.76  7.23  9.99     April 2014
## 847   K.elegans      Lake_Wales   F 7.69   3.35  9.32 12.31     April 2014
## 848   K.elegans      Lake_Wales   M 5.48   2.89  7.73 10.89     April 2014
## 849   K.elegans      Lake_Wales   M 5.67   2.90  8.19 10.88     April 2014
## 850   K.elegans      Lake_Wales   F 7.49   3.23  8.70 12.01     April 2014
## 851   K.elegans      Lake_Wales   F 7.23   3.33  9.08 12.21     April 2014
## 852   K.elegans      Lake_Wales   M 5.64   3.10  8.21 11.37     April 2014
## 853   K.elegans      Lake_Wales   F 6.42   3.67  9.86 13.18     April 2014
## 854   K.elegans      Lake_Wales   M 5.60   3.26  8.33 11.17     April 2014
## 856   K.elegans      Lake_Wales   M 5.63   3.00  8.12 10.91     April 2014
## 857   K.elegans      Lake_Wales   F 6.95   3.07  8.72 11.88     April 2014
## 858   K.elegans      Lake_Wales   M 5.52   3.23  8.52 11.29     April 2014
## 859   K.elegans      Lake_Wales   M 5.19   3.12  7.88 10.94     April 2014
## 860   K.elegans      Lake_Wales   F 7.24   3.27  8.93 12.21     April 2014
## 861   K.elegans      Lake_Wales   F 6.57   2.93  8.39 11.45     April 2014
## 862   K.elegans      Lake_Wales   M 5.33   2.73  7.72 10.52     April 2014
## 863   K.elegans      Lake_Wales   F 6.78   3.29  8.92 11.99     April 2014
## 865   K.elegans      Lake_Wales   M 5.56   2.91  7.63 10.40     April 2014
## 866   K.elegans      Lake_Wales   F 6.38   3.26  8.47 11.94     April 2014
## 867   K.elegans      Lake_Wales   M 5.28   3.03  8.34 11.00     April 2014
## 868   K.elegans      Lake_Wales   F 7.65   3.52  9.26 12.82     April 2014
## 870   K.elegans      Lake_Wales   F 6.62   3.29  8.77 11.71     April 2014
## 871   K.elegans      Lake_Wales   M 5.51   3.04  8.92 11.85     April 2014
## 872   K.elegans      Lake_Wales   F 6.87   3.55  8.72 13.09     April 2014
## 873   K.elegans      Lake_Wales   F 7.66   3.67  9.99 13.62     April 2014
## 874   K.elegans      Lake_Wales   F 6.67   2.94  7.42 10.57     April 2014
## 875   K.elegans      Lake_Wales   M 5.78   3.29  9.04 11.88     April 2014
## 877   K.elegans      Lake_Wales   F 6.59   2.90  7.91 10.83     April 2014
## 878   K.elegans      Lake_Wales   F 6.75   2.94  8.15 11.25     April 2014
## 879   K.elegans      Lake_Wales   M 5.49   3.04  8.38 11.59     April 2014
## 880   K.elegans      Lake_Wales   F 6.91   3.09  8.56 11.72     April 2014
## 881   K.elegans      Lake_Wales   M 5.60   3.15  8.83 12.01     April 2014
## 882   K.elegans      Lake_Wales   F 5.56   2.94  7.27 10.51     April 2014
## 883   K.elegans      Lake_Wales   F 6.87   3.08  7.48 10.62     April 2014
## 884   K.elegans      Lake_Wales   M 5.47   2.99  7.77 10.85     April 2014
## 886   K.elegans      Lake_Wales   F 7.07   3.27  8.92 12.21     April 2014
## 887   K.elegans      Lake_Wales   M 5.48   2.88  8.48 11.29     April 2014
## 888   K.elegans      Lake_Wales   F 5.99   3.01  8.21 11.50     April 2014
## 889   K.elegans      Lake_Wales   F 6.62   3.15  8.58 11.77     April 2014
## 890   K.elegans      Lake_Wales   F 6.50   3.20  8.42 11.68     April 2014
## 905  C.corindum  Plantation_Key   F 8.25   3.36  9.37 12.76     April 2014
## 907  C.corindum  Plantation_Key   M 5.56   2.88  7.86 10.70     April 2014
## 911  C.corindum  Plantation_Key   F 7.76   3.23  8.71 12.22     April 2014
## 912  C.corindum  Plantation_Key   M 5.67   3.09  8.06 10.94     April 2014
## 915  C.corindum  Plantation_Key   F 8.65   3.00  8.48 11.74     April 2014
## 917  C.corindum  Plantation_Key   F 6.98   3.34  8.77 11.98     April 2014
## 918  C.corindum  Plantation_Key   F 6.30   2.89  8.07 11.27     April 2014
## 975  C.corindum       Key_Largo   F 8.72   3.77  9.74 13.58     April 2015
## 978  C.corindum       Key_Largo   M 6.49   3.10  8.72 12.13     April 2015
## 986  C.corindum       Key_Largo   F 7.51   3.09  8.36 11.87     April 2015
## 990  C.corindum       Key_Largo   M 5.61   2.99  8.00 10.98     April 2015
## 993  C.corindum       Key_Largo   M 6.01   2.89  7.56 10.56     April 2015
## 995  C.corindum       Key_Largo   M 5.62   2.58  6.48  9.26     April 2015
## 996  C.corindum       Key_Largo   F 8.37   3.39  8.73 12.00     April 2015
## 997  C.corindum       Key_Largo   M 6.54   2.98  7.88 10.44     April 2015
## 1001 C.corindum       Key_Largo   M 6.42   3.10  8.05 11.16     April 2015
## 1012 C.corindum       Key_Largo   F 6.26   3.06  8.12 11.84     April 2015
## 1017 C.corindum       Key_Largo   M 6.42   3.02  8.22 11.73     April 2015
## 1023  K.elegans      Lake_Wales   M 5.69   3.21  8.55 11.70     April 2015
## 1024  K.elegans      Lake_Wales   M 5.36   3.07  8.30 11.87     April 2015
## 1025  K.elegans      Lake_Wales   F 7.58   3.72 10.72 13.96     April 2015
## 1026  K.elegans      Lake_Wales   M 5.72   3.09  8.44 11.72     April 2015
## 1027  K.elegans      Lake_Wales   F 7.98   3.85  9.90 13.90     April 2015
## 1028  K.elegans      Lake_Wales   M 5.41   3.27  8.33 11.73     April 2015
## 1029  K.elegans      Lake_Wales   M 5.71   3.16  8.45 11.75     April 2015
## 1030  K.elegans      Lake_Wales   F 7.41   3.97 10.22 14.70     April 2015
## 1031  K.elegans      Lake_Wales   M 5.68   3.07  8.26 11.68     April 2015
## 1032  K.elegans      Lake_Wales   F 6.58   3.44  9.07 12.32     April 2015
## 1033  K.elegans      Lake_Wales   M 5.16   3.29  8.39 11.17     April 2015
## 1034  K.elegans      Lake_Wales   M 5.78   2.91  8.54 11.50     April 2015
## 1035  K.elegans      Lake_Wales   M 5.39   3.30  8.71 11.77     April 2015
## 1036  K.elegans      Lake_Wales   F 7.43   3.99  9.71 13.85     April 2015
## 1037  K.elegans      Lake_Wales   M 5.47   3.00  7.91 11.06     April 2015
## 1038  K.elegans      Lake_Wales   F 8.04   3.74  9.98 13.34     April 2015
## 1039  K.elegans      Lake_Wales   F 8.07   3.58  9.80 13.50     April 2015
## 1040  K.elegans      Lake_Wales   F 7.00   3.58  9.63 12.80     April 2015
## 1041  K.elegans      Lake_Wales   F 6.12   3.38  8.34 12.07     April 2015
## 1042  K.elegans      Lake_Wales   M 5.18   3.01  8.07 11.43     April 2015
## 1043  K.elegans      Lake_Wales   F 6.95   3.57  9.18 12.41     April 2015
## 1044  K.elegans      Lake_Wales   M 5.08   2.86  7.36 10.51     April 2015
## 1045  K.elegans      Lake_Wales   M 5.34   3.08  8.07 11.58     April 2015
## 1046  K.elegans      Lake_Wales   F 6.39   3.39  9.17 12.89     April 2015
## 1047  K.elegans      Lake_Wales   F 6.96   3.60  9.92 12.90     April 2015
## 1048  K.elegans      Lake_Wales   F 7.27   3.52 10.37 14.36     April 2015
## 1049  K.elegans      Lake_Wales   M 5.73   3.28  8.74 11.77     April 2015
## 1050  K.elegans      Lake_Wales   F 6.44   3.65  9.55 12.93     April 2015
## 1051  K.elegans      Lake_Wales   M 5.51   3.15  8.52 11.53     April 2015
## 1052  K.elegans      Lake_Wales   M 5.52   3.13  8.55 12.09     April 2015
## 1054  K.elegans      Lake_Wales   M 5.74   3.17  8.66 12.32     April 2015
## 1055  K.elegans      Lake_Wales   M 5.73   3.13  8.35 11.64     April 2015
## 1056  K.elegans      Lake_Wales   F 6.61   3.79  9.87 13.86     April 2015
## 1057  K.elegans      Lake_Wales   F 7.83   3.76 10.02 13.39     April 2015
## 1058  K.elegans      Lake_Wales   F 6.76   3.65  9.83 13.23     April 2015
## 1059  K.elegans      Lake_Wales   F 6.51   3.55  9.43 12.79     April 2015
## 1060  K.elegans      Lake_Wales   F 7.41   3.52  9.35 12.72     April 2015
## 1061  K.elegans      Lake_Wales   M 5.79   3.27  8.72 11.89     April 2015
## 1062  K.elegans      Lake_Wales   F 6.89   3.78  9.65 13.05     April 2015
## 1063  K.elegans      Lake_Wales   M 5.52   3.19  8.49 11.61     April 2015
## 1064  K.elegans      Lake_Wales   M 5.69   3.20  8.51 12.22     April 2015
## 1065  K.elegans      Lake_Wales   F 6.97   3.80 10.40 14.15     April 2015
## 1066  K.elegans      Lake_Wales   F 6.15   3.54  9.34 12.69       May 2015
## 1067  K.elegans      Lake_Wales   M 5.36   3.04  8.26 11.22       May 2015
## 1068  K.elegans      Lake_Wales   F 6.51   3.64  9.63 12.93       May 2015
## 1069  K.elegans      Lake_Wales   F 6.33   3.36  9.37 12.57       May 2015
## 1070  K.elegans      Lake_Wales   M 5.20   3.23  8.21 11.34       May 2015
## 1071  K.elegans      Lake_Wales   F 7.71   3.75  9.77 13.89       May 2015
## 1072  K.elegans      Lake_Wales   M 5.85   3.16  8.68 12.14       May 2015
## 1073  K.elegans      Lake_Wales   F 6.97   3.78 10.06 13.64       May 2015
## 1074  K.elegans      Lake_Wales   M 5.86   3.26  8.90 12.17       May 2015
## 1075  K.elegans      Lake_Wales   M 5.70   3.08  8.48 11.41       May 2015
## 1076  K.elegans      Lake_Wales   F 7.30   3.63 10.48 14.11       May 2015
## 1077  K.elegans        Leesburg   F 6.51   3.62  9.11 13.07     April 2015
## 1078  K.elegans        Leesburg   M 5.60   3.15  8.81 12.21     April 2015
## 1079  K.elegans        Leesburg   M 5.61   3.27  8.95 12.32     April 2015
## 1080  K.elegans        Leesburg   F 6.70   3.59  9.92 13.62     April 2015
## 1081  K.elegans        Leesburg   F 6.55   3.31 10.00 13.92     April 2015
## 1082  K.elegans        Leesburg   F 6.24   3.03  7.78 11.69     April 2015
## 1083  K.elegans        Leesburg   M 5.61   3.24  8.84 12.04     April 2015
## 1084  K.elegans        Leesburg   M 5.43   3.10  8.81 11.92     April 2015
## 1085  K.elegans        Leesburg   M 5.24   2.99  8.75 11.91     April 2015
## 1086  K.elegans        Leesburg   F 7.62   3.90  9.97 14.01     April 2015
## 1088  K.elegans        Leesburg   M 5.08   2.91  8.48 11.56     April 2015
## 1089  K.elegans        Leesburg   M 5.57   2.98  8.34 11.42     April 2015
## 1090  K.elegans        Leesburg   M 5.36   3.06  8.61 11.84     April 2015
## 1091  K.elegans        Leesburg   F 6.61   3.52  9.48 12.67     April 2015
## 1092  K.elegans        Leesburg   M 5.58   3.18  9.14 12.34     April 2015
## 1093  K.elegans        Leesburg   M 5.81   2.85  8.06 11.18     April 2015
## 1094  K.elegans        Leesburg   F 6.37   3.19  8.79 12.44     April 2015
## 1095  K.elegans        Leesburg   M 5.56   3.01  8.32 11.28     April 2015
## 1096  K.elegans        Leesburg   F 6.00   3.64  9.33 13.11     April 2015
## 1097  K.elegans        Leesburg   F 6.38   3.54  9.14 12.76     April 2015
## 1098  K.elegans        Leesburg   F 7.39   3.32  9.34 13.13     April 2015
## 1099  K.elegans        Leesburg   M 5.84   3.25  9.04 11.79     April 2015
## 1100  K.elegans        Leesburg   F 6.18   3.47  9.20 12.49     April 2015
## 1101  K.elegans        Leesburg   M 5.09   2.86  7.79 10.79     April 2015
## 1103  K.elegans        Leesburg   F 7.10   3.45  9.44 13.45     April 2015
## 1104  K.elegans        Leesburg   F 6.49   3.63  9.37 12.63     April 2015
## 1105  K.elegans        Leesburg   F 6.57   3.63  8.17 12.03     April 2015
## 1106  K.elegans        Leesburg   M 5.31   3.08  8.47 11.77     April 2015
## 1107  K.elegans        Leesburg   M 5.53   2.80  7.45 10.40     April 2015
## 1108  K.elegans        Leesburg   M 5.67   2.87  8.09 11.34     April 2015
## 1110  K.elegans        Leesburg   M 5.47   3.09  9.42 11.46     April 2015
## 1111  K.elegans        Leesburg   M 5.36   3.05  8.37 11.35     April 2015
## 1112  K.elegans        Leesburg   M 5.45   3.06  7.94 10.81     April 2015
## 1117 C.corindum  Plantation_Key   F 6.48   3.05  7.76 11.35     April 2015
## 1118 C.corindum  Plantation_Key   F 7.56   3.69  9.26 13.69     April 2015
## 1119 C.corindum  Plantation_Key   F 6.79   3.78 10.13 14.07     April 2015
## 1121 C.corindum  Plantation_Key   F 7.57   3.48  9.05 12.59     April 2015
## 1122 C.corindum  Plantation_Key   F 7.61   3.33  8.63 11.71     April 2015
## 1124 C.corindum  Plantation_Key   F 7.87   3.56  9.22 12.86     April 2015
## 1125  K.elegans     Gainesville   M 5.50   3.26  8.36 11.36  December 2016
## 1126  K.elegans     Gainesville   F 7.43   3.47  9.52 12.91  December 2016
## 1127  K.elegans     Gainesville   M 5.75   3.09  9.29 12.33  December 2016
## 1128  K.elegans     Gainesville   M 5.60   3.01  8.10 11.15  December 2016
## 1129  K.elegans     Gainesville   F 7.71   3.15  8.96 12.43  December 2016
## 1130  K.elegans     Gainesville   F 7.84   3.89  9.88 13.32  December 2016
## 1131  K.elegans     Gainesville   F 7.93   3.79  9.76 13.09  December 2016
## 1132  K.elegans     Gainesville   F 8.02   3.56  9.45 12.86  December 2016
## 1133  K.elegans     Gainesville   F 7.54   3.59  9.43 13.10  December 2016
## 1134  K.elegans     Gainesville   F 7.62   3.59  9.46 13.32  December 2016
## 1135  K.elegans     Gainesville   M 5.54   2.99  7.96 10.99  December 2016
## 1136  K.elegans     Gainesville   F 7.64   3.57  9.79 13.28  December 2016
## 1137  K.elegans     Gainesville   M 6.06   3.24  8.84 12.09  December 2016
## 1138  K.elegans     Gainesville   M   NA   3.18  8.62 11.44  December 2016
## 1142  K.elegans     Gainesville   F 8.38   3.66  9.55 12.85  December 2016
## 1143  K.elegans     Gainesville   F 7.80   3.66  9.47 13.11  December 2016
## 1144  K.elegans     Gainesville   M 5.66   2.93  7.91 10.86  December 2016
## 1146  K.elegans     Gainesville   F 8.44   3.55  9.76 12.86  December 2016
## 1148  K.elegans     Gainesville   M 5.69   3.34  8.93 11.73  December 2016
## 1155  K.elegans     Gainesville   F 7.61   3.76  9.96 13.48  December 2016
## 1156  K.elegans     Gainesville   F 7.79   3.41  9.13 12.47  December 2016
## 1158  K.elegans     Gainesville   F 7.81   3.52  9.29 12.46  December 2016
## 1160  K.elegans     Gainesville   M 6.00   3.40  8.84 12.06  December 2016
## 1161  K.elegans     Gainesville   M 5.55   2.86  7.60 10.66  December 2016
## 1162  K.elegans     Gainesville   F 8.03   3.73  9.82 13.22  December 2016
## 1164  K.elegans     Gainesville   F 7.57   3.50  9.12 12.60  December 2016
## 1166  K.elegans     Gainesville   F 7.35   3.31  8.74 12.00  December 2016
## 1167  K.elegans     Gainesville   F 7.97   3.30  8.81 11.89  December 2016
## 1170  K.elegans     Gainesville   F 7.95   3.51  9.81 13.29  December 2016
## 1174  K.elegans     Gainesville   F 7.81   3.42  8.80 12.17  December 2016
## 1176  K.elegans     Gainesville   M 5.83   3.01  9.26 12.29  December 2016
## 1177  K.elegans     Gainesville   M 6.14   3.14  8.97 11.88  December 2016
## 1178  K.elegans     Gainesville   M 5.62   3.00  8.66 11.48  December 2016
## 1179  K.elegans     Gainesville   M 5.94   3.45  9.39 11.96  December 2016
## 1180  K.elegans     Gainesville   F 7.90   3.51  9.57 13.03  December 2016
## 1181  K.elegans     Gainesville   M 5.59   2.88  7.90 10.79  December 2016
## 1182  K.elegans       Homestead   M 5.32   3.20  8.96 11.63  December 2016
## 1185  K.elegans       Homestead   M 5.90   3.28  8.73 11.63  December 2016
## 1186  K.elegans       Homestead   M 5.60   3.29  9.05 12.18  December 2016
## 1188  K.elegans       Homestead   F 6.73   3.66 10.21 13.65  December 2016
## 1189  K.elegans       Homestead   M 5.42   2.95  8.12 10.88  December 2016
## 1191  K.elegans       Homestead   M 5.18   3.14  8.57 11.31  December 2016
## 1192  K.elegans       Homestead   M 5.25   3.16  9.13 11.74  December 2016
## 1193  K.elegans       Homestead   M 5.43   3.20  9.02 11.83  December 2016
## 1194  K.elegans       Homestead   M 5.45   3.23  8.83 11.76  December 2016
## 1203 C.corindum North_Key_Largo   F 8.02   3.48  9.47 12.89  December 2016
## 1204 C.corindum North_Key_Largo   F 8.10   3.24  7.81 11.16  December 2016
## 1205 C.corindum North_Key_Largo   F 7.77   3.94 10.13 13.51  December 2016
## 1208 C.corindum North_Key_Largo   M 5.94   2.80  7.88 10.75  December 2016
## 1209 C.corindum North_Key_Largo   M 6.60   3.22  8.14 11.48  December 2016
## 1210 C.corindum North_Key_Largo   M 6.54   3.34  8.72 11.91  December 2016
## 1213 C.corindum North_Key_Largo   F 7.32   3.56  9.48 12.67  December 2016
## 1215 C.corindum North_Key_Largo   M 6.21   3.21  8.72 11.74  December 2016
## 1217 C.corindum North_Key_Largo   M 6.24   3.51  8.32 11.68  December 2016
## 1219 C.corindum North_Key_Largo   F 8.77   3.47  9.25 12.35  December 2016
## 1221 C.corindum North_Key_Largo   F 7.70   3.78  9.35 12.94  December 2016
## 1222 C.corindum North_Key_Largo   F 6.89   3.68  9.41 12.99  December 2016
## 1225 C.corindum North_Key_Largo   M 6.78   3.41  8.51 11.84  December 2016
## 1228 C.corindum North_Key_Largo   F 6.61   3.60  9.55 13.07  December 2016
## 1230 C.corindum North_Key_Largo   M 6.46   3.11  8.67 11.52  December 2016
## 1235 C.corindum North_Key_Largo   F 9.26   3.59  9.31 12.57  December 2016
## 1238 C.corindum North_Key_Largo   F 7.10   3.53  8.77 12.39  December 2016
## 1239 C.corindum North_Key_Largo   M 5.56   3.25  8.62 11.38  December 2016
## 1241 C.corindum North_Key_Largo   M 6.37   3.24  9.04 12.10  December 2016
## 1246 C.corindum North_Key_Largo   M 5.69   2.80  7.57 10.44  December 2016
## 1247 C.corindum North_Key_Largo   M 6.84   3.11  8.11 11.37  December 2016
## 1248 C.corindum       Key_Largo   F 8.39   3.69  8.74 12.48  December 2016
## 1249 C.corindum       Key_Largo   M 5.92   2.95  8.19 11.18  December 2016
## 1250 C.corindum       Key_Largo   M 6.25   3.00  7.84 10.85  December 2016
## 1252 C.corindum       Key_Largo   M 6.12   3.17  7.80 10.84  December 2016
## 1253 C.corindum       Key_Largo   M 6.82   3.41  8.92 12.31  December 2016
## 1255 C.corindum       Key_Largo   F 7.61   3.45  9.18 12.22  December 2016
## 1257 C.corindum       Key_Largo   F 8.13   3.30  8.40 11.34  December 2016
## 1258 C.corindum       Key_Largo   M 6.81   3.21  8.61 11.55  December 2016
## 1268  K.elegans      Lake_Wales   M 5.37   3.06  8.67 11.34  December 2016
## 1272  K.elegans      Lake_Wales   M 5.67   2.85  8.04 10.79  December 2016
## 1276  K.elegans        Leesburg   F 7.25   3.33  8.91 12.45  December 2016
## 1281  K.elegans        Leesburg   F 6.87   3.44  9.77 13.39  December 2016
## 1285  K.elegans        Leesburg   M 5.32   2.89  8.12 10.62  December 2016
## 1289  K.elegans        Leesburg   M 5.19   2.58  8.07 10.78  December 2016
## 1290  K.elegans        Leesburg   M 5.69   3.07  8.80 11.87  December 2016
## 1291  K.elegans        Leesburg   F 7.25   3.32  9.00 12.03  December 2016
## 1292  K.elegans        Leesburg   M 5.36   3.03  8.27 11.44  December 2016
## 1294  K.elegans        Leesburg   M 5.83   3.45  8.51 11.70  December 2016
## 1295  K.elegans        Leesburg   F 7.66   3.54  9.83 13.52  December 2016
## 1296  K.elegans        Leesburg   F 7.81   3.45  9.01 12.58  December 2016
## 1297  K.elegans        Leesburg   F 7.62   3.66  9.26 12.79  December 2016
## 1298  K.elegans        Leesburg   F 7.63   3.58  9.32 12.70  December 2016
## 1299  K.elegans        Leesburg   F 7.37   3.45  9.65 13.04  December 2016
## 1300  K.elegans        Leesburg   F 7.47   3.84 10.54 14.37  December 2016
## 1301  K.elegans        Leesburg   M 5.64   3.05  8.83 11.81  December 2016
## 1302  K.elegans        Leesburg   F 7.67   3.45  9.38 12.64  December 2016
## 1303  K.elegans        Leesburg   F 7.54   3.30  9.39 12.72  December 2016
## 1304  K.elegans        Leesburg   F 6.91   3.40  9.19 12.07  December 2016
## 1306  K.elegans        Leesburg   M 5.78   3.28  8.31 11.40  December 2016
## 1307  K.elegans        Leesburg   M 5.94   2.86  8.10 10.60  December 2016
## 1308  K.elegans        Leesburg   F 7.38   3.26  9.00 12.16  December 2016
## 1309  K.elegans        Leesburg   M 5.71   2.96  8.19 11.03  December 2016
## 1310  K.elegans        Leesburg   M 5.56   3.10  7.93 10.61  December 2016
## 1311  K.elegans        Leesburg   F 7.57   3.48  9.30 12.87  December 2016
## 1312  K.elegans        Leesburg   F 7.84   3.63  9.71 13.17  December 2016
## 1313  K.elegans        Leesburg   F 6.96   3.18  9.46 12.48  December 2016
## 1315  K.elegans        Leesburg   M 5.57   3.25  8.13 11.07  December 2016
## 1316  K.elegans        Leesburg   M 5.77   3.38  9.54 12.29  December 2016
## 1317  K.elegans        Leesburg   F 8.46   3.99 10.60 14.32  December 2016
## 1318  K.elegans        Leesburg   M 5.29   2.84  7.65 10.39  December 2016
## 1319  K.elegans        Leesburg   M 5.65   3.24  8.16 11.31  December 2016
## 1320  K.elegans        Leesburg   F 7.78   3.48  9.32 12.56  December 2016
## 1321  K.elegans        Leesburg   F 7.74   3.47  9.79 13.20  December 2016
## 1322  K.elegans        Leesburg   F 7.44   3.29  8.65 12.28  December 2016
## 1323  K.elegans        Leesburg   F 7.95   3.90  9.89 13.58  December 2016
## 1324  K.elegans        Leesburg   F 7.03   3.24  8.41 11.73  December 2016
## 1325  K.elegans        Leesburg   M 5.34   3.01  8.24 11.57  December 2016
## 1326  K.elegans        Leesburg   F 7.85   3.49  9.56 12.87  December 2016
## 1327  K.elegans        Leesburg   M 5.51   3.10  8.46 11.39  December 2016
## 1328  K.elegans        Leesburg   M 5.53   2.93  7.87 10.89  December 2016
## 1329  K.elegans        Leesburg   F 8.14   3.60  9.86 13.38  December 2016
## 1330  K.elegans        Leesburg   F 7.57   3.59  9.45 12.59  December 2016
## 1331  K.elegans        Leesburg   M 5.75   2.99  8.31 11.22  December 2016
## 1332  K.elegans        Leesburg   F 7.08   3.28  8.82 12.31  December 2016
## 1333  K.elegans        Leesburg   M 5.80   3.02  8.09 11.35  December 2016
## 1334  K.elegans        Leesburg   M 5.71   3.11  8.65 11.50  December 2016
## 1335  K.elegans        Leesburg   M 5.96   3.13  9.04 11.73  December 2016
## 1336  K.elegans        Leesburg   M 5.80   3.16  8.35 11.48  December 2016
## 1337  K.elegans        Leesburg   M 5.76   3.13  8.55 11.54  December 2016
## 1338  K.elegans        Leesburg   M 5.36   3.01  8.16 11.00  December 2016
## 1340 C.corindum  Plantation_Key   M 6.08   3.07  8.34 11.39  December 2016
## 1341 C.corindum  Plantation_Key   M 6.01   2.91  8.53 11.43  December 2016
## 1343 C.corindum  Plantation_Key   F 7.97   3.46  9.34 12.57  December 2016
## 1344 C.corindum  Plantation_Key   M 5.99   3.11  8.52 11.44  December 2016
## 1346 C.corindum  Plantation_Key   M 5.29   2.81  7.84 10.53  December 2016
## 1347 C.corindum  Plantation_Key   F 8.61   3.57  9.31 12.50  December 2016
## 1349 C.corindum  Plantation_Key   F 7.50   3.12  8.53 11.87  December 2016
## 1354 C.corindum  Plantation_Key   F 8.05   3.24  8.63 12.11  December 2016
## 1355 C.corindum  Plantation_Key   M 5.74   3.03  7.24 10.23  December 2016
## 1356 C.corindum  Plantation_Key   F 8.89   3.63  9.78 13.30  December 2016
## 1357 C.corindum  Plantation_Key   F 7.93   3.22  9.41 12.58  December 2016
## 1358 C.corindum  Plantation_Key   F 7.88   3.61 10.08 13.71  December 2016
## 1361 C.corindum  Plantation_Key   M 5.89   2.82  8.18 11.14  December 2016
## 1364 C.corindum  Plantation_Key   M 5.88   2.65  7.23  9.97  December 2016
## 1365 C.corindum  Plantation_Key   M 6.04   3.03  7.82 10.65  December 2016
## 1367 C.corindum  Plantation_Key   F 7.30   3.30  8.84 12.17  December 2016
## 1368 C.corindum  Plantation_Key   M 5.92   2.99  7.88 10.97  December 2016
## 1369 C.corindum  Plantation_Key   M 6.73   3.45  8.99 12.31  December 2016
## 1370 C.corindum  Plantation_Key   M 5.37   2.69  7.03  9.69  December 2016
## 1371 C.corindum  Plantation_Key   M 6.31   3.06  8.33 11.30  December 2016
## 1372 C.corindum  Plantation_Key   M 6.11   2.97  7.86 10.74  December 2016
## 1375 C.corindum  Plantation_Key   M 5.90   2.89  7.57 10.37  December 2016
## 1545  K.elegans     Gainesville   M 5.92   3.08  8.53 11.48    August 2017
## 1546  K.elegans     Gainesville   M 5.57   2.98  8.21 11.43    August 2017
## 1547  K.elegans     Gainesville   F 7.84   3.57  9.31 12.80    August 2017
## 1549  K.elegans     Gainesville   M 5.73   3.10  8.73 11.91    August 2017
## 1550  K.elegans     Gainesville   M 5.59   2.67  7.42 10.22    August 2017
## 1552  K.elegans     Gainesville   F 6.40   3.22  8.52 11.83    August 2017
## 1553  K.elegans     Gainesville   F 6.84   3.61  9.66 12.85    August 2017
## 1554  K.elegans     Gainesville   M 5.80   3.18  8.77 12.05    August 2017
## 1555  K.elegans     Gainesville   M 5.69   3.05  8.19 11.34    August 2017
## 1556  K.elegans     Gainesville   M 5.44   2.80  7.65 10.58    August 2017
## 1557  K.elegans     Gainesville   F 7.53   3.33  8.69 11.96    August 2017
## 1558  K.elegans     Gainesville   F 6.69   3.51  9.35 12.90    August 2017
## 1559  K.elegans     Gainesville   M 5.67   2.87  8.20 11.05    August 2017
## 1560  K.elegans     Gainesville   M 5.48   2.96  7.91 10.97    August 2017
## 1562  K.elegans     Gainesville   F 7.34   3.51  9.05 12.46    August 2017
## 1563  K.elegans     Gainesville   F 6.73   3.35  8.46 12.03    August 2017
## 1565  K.elegans     Gainesville   F 8.99   3.80 10.70 14.25    August 2017
## 1566  K.elegans     Gainesville   F 7.06   3.34  8.79 12.06    August 2017
## 1567  K.elegans     Gainesville   M 5.39   2.81  7.89 10.62    August 2017
## 1568  K.elegans     Gainesville   M 5.56   2.92  7.81 10.51    August 2017
## 1569  K.elegans     Gainesville   M 5.66   2.98  8.13 11.11    August 2017
## 1571  K.elegans     Gainesville   F 7.65   3.46  9.35 12.88    August 2017
## 1572  K.elegans     Gainesville   F 7.47   3.27  7.99 11.70    August 2017
## 1573  K.elegans     Gainesville   M 5.60   2.97  8.06 10.96    August 2017
## 1574  K.elegans     Gainesville   F 7.11   3.19  8.55 11.78    August 2017
## 1575  K.elegans     Gainesville   F 7.03   3.30  8.85 12.31    August 2017
## 1576  K.elegans     Gainesville   F 7.48   3.55  9.14 12.64    August 2017
## 1577  K.elegans     Gainesville   M 5.87   3.17  8.08 11.19    August 2017
## 1578  K.elegans     Gainesville   M 5.50   3.04  8.48 11.37    August 2017
## 1579  K.elegans     Gainesville   M 5.95   3.27  8.95 12.13    August 2017
## 1580  K.elegans     Gainesville   M 5.25   2.90  7.83 11.04    August 2017
## 1581  K.elegans     Gainesville   F 6.84   3.58  9.81 13.52    August 2017
## 1582  K.elegans     Gainesville   F 7.43   3.45  9.42 12.99    August 2017
## 1583  K.elegans     Gainesville   M 5.46   3.03  8.37 11.48    August 2017
## 1584  K.elegans     Gainesville   M 5.92   2.91  7.79 10.71    August 2017
## 1585  K.elegans     Gainesville   F 7.82   3.55  9.68 13.31    August 2017
## 1586  K.elegans     Gainesville   M 5.68   3.31  8.98 12.32    August 2017
## 1587  K.elegans     Gainesville   F 7.85   3.54  9.65 12.38    August 2017
## 1589  K.elegans     Gainesville   M 5.37   3.03  8.44 11.02    August 2017
## 1590  K.elegans     Gainesville   F 8.10   3.60  9.91 13.67    August 2017
## 1591  K.elegans     Gainesville   M 5.48   2.97  8.37 11.40    August 2017
## 1592  K.elegans     Gainesville   M 5.62   2.93  8.18 11.02    August 2017
## 1593  K.elegans     Gainesville   F 7.08   3.33  8.85 12.11    August 2017
## 1594  K.elegans     Gainesville   M 5.44   2.86  7.20  9.91    August 2017
## 1595  K.elegans     Gainesville   M 5.47   3.14  8.59 11.77    August 2017
## 1596  K.elegans     Gainesville   F 7.67   3.49  9.80 13.48    August 2017
## 1597  K.elegans     Gainesville   M 5.67   3.08  8.41 11.17    August 2017
## 1598  K.elegans     Gainesville   F 8.56   3.55  9.73 13.25    August 2017
## 1599  K.elegans     Gainesville   F 6.92   3.44  8.95 12.66    August 2017
## 1600  K.elegans     Gainesville   M 5.83   2.87  7.83 10.82    August 2017
## 1601  K.elegans     Gainesville   F 7.11   3.42  8.95 12.28    August 2017
## 1602  K.elegans     Gainesville   F 7.46   3.51  9.30 12.71    August 2017
## 1603  K.elegans     Gainesville   M 5.28   2.68  7.70 10.47    August 2017
## 1605  K.elegans       Homestead   M 5.80   3.21  8.46 11.62    August 2017
## 1607  K.elegans       Homestead   F 7.39   3.46  9.09 12.39    August 2017
## 1608  K.elegans       Homestead   M 6.02   3.24  8.55 11.33    August 2017
## 1610  K.elegans       Homestead   F 7.83   3.43  9.25 12.60    August 2017
## 1611  K.elegans       Homestead   F 8.89   3.90  9.99 13.76    August 2017
## 1612  K.elegans       Homestead   F 7.86   3.58  8.99 12.49    August 2017
## 1613  K.elegans       Homestead   M 5.68   3.00  8.08 10.99    August 2017
## 1614  K.elegans       Homestead   M 5.48   2.79  7.98 10.65    August 2017
## 1615  K.elegans       Homestead   M 5.78   2.99  8.22 11.16    August 2017
## 1616  K.elegans       Homestead   F 8.81   3.74 10.08 13.82    August 2017
## 1617  K.elegans       Homestead   M 5.90   3.18  8.18 11.30    August 2017
## 1618  K.elegans       Homestead   F 7.85   3.46  9.00 12.34    August 2017
## 1620  K.elegans       Homestead   M 5.89   3.14  8.51 11.60    August 2017
## 1621  K.elegans       Homestead   M 5.68   2.84  7.25 10.43    August 2017
## 1622  K.elegans       Homestead   M 5.71   2.95  7.97 10.84    August 2017
## 1624  K.elegans       Homestead   M 5.95   3.20  8.29 11.55    August 2017
## 1625  K.elegans       Homestead   M 5.88   3.31  9.01 12.33    August 2017
## 1626  K.elegans       Homestead   F 7.43   3.14  8.55 11.90    August 2017
## 1627  K.elegans       Homestead   M 6.10   3.28  8.68 11.80    August 2017
## 1628  K.elegans       Homestead   M 6.02   3.29  8.93 12.16    August 2017
## 1629  K.elegans       Homestead   F 7.89   3.54  9.28 12.84    August 2017
## 1630  K.elegans       Homestead   M 6.08   3.46  8.94 11.94    August 2017
## 1631  K.elegans       Homestead   M 6.29   3.49  9.01 12.29    August 2017
## 1632  K.elegans       Homestead   M 5.63   3.10  7.92 10.91    August 2017
## 1634  K.elegans       Homestead   M 5.95   3.18  8.97 12.01    August 2017
## 1635  K.elegans       Homestead   F 7.95   3.48  9.70 13.37    August 2017
## 1636  K.elegans       Homestead   F 7.56   3.40  8.15 12.18    August 2017
## 1641  K.elegans       Homestead   F 8.61   3.86 10.35 13.76    August 2017
## 1642  K.elegans       Homestead   F 7.69   3.44  9.22 12.66    August 2017
## 1643  K.elegans       Homestead   M 6.06   2.83  7.57 10.48    August 2017
## 1644  K.elegans       Homestead   M 6.13   3.27  9.02 11.98    August 2017
## 1645  K.elegans       Homestead   F 7.26   3.26  8.58 11.58    August 2017
## 1646  K.elegans       Homestead   F 8.12   3.49  9.35 13.06    August 2017
## 1647  K.elegans       Homestead   M 5.61   2.89  7.78 10.63    August 2017
## 1648  K.elegans       Homestead   F 8.63   3.88 10.09 13.61    August 2017
## 1651  K.elegans       Homestead   M 5.42   2.81  7.66 10.58    August 2017
## 1652  K.elegans       Homestead   F 7.54   3.30  9.21 12.52    August 2017
## 1654  K.elegans       Homestead   M 5.71   2.93  7.47 10.63    August 2017
## 1655  K.elegans       Homestead   F 8.36   3.54  9.73 13.10    August 2017
## 1656  K.elegans       Homestead   F 8.13   3.57  9.59 12.98    August 2017
## 1657  K.elegans       Homestead   M 5.96   3.22  8.88 11.78    August 2017
## 1658  K.elegans       Homestead   F 7.46   3.39  9.62 12.76    August 2017
## 1659  K.elegans       Homestead   M 5.65   3.13  8.47 11.50    August 2017
## 1660  K.elegans       Homestead   F 7.49   3.43  9.13 12.26    August 2017
## 1661  K.elegans       Homestead   F 8.49   3.95 10.46 14.13    August 2017
## 1662  K.elegans       Homestead   F 7.61   3.53  9.00 11.89    August 2017
## 1663  K.elegans       Homestead   F 6.95   3.32  8.99 12.18    August 2017
## 1664  K.elegans       Homestead   M 5.76   3.12  8.63 11.80    August 2017
## 1665  K.elegans       Homestead   F 8.66   3.94 10.97 14.80    August 2017
## 1666  K.elegans       Homestead   F 8.79   3.92 10.20 13.80    August 2017
## 1667  K.elegans       Homestead   F 8.29   3.95 10.72 14.11    August 2017
## 1668  K.elegans       Homestead   M 5.81   3.40  9.35 12.42    August 2017
## 1669  K.elegans       Homestead   M 5.88   3.37  8.93 11.73    August 2017
## 1670  K.elegans       Homestead   F 8.76   4.02 10.54 14.41    August 2017
## 1671  K.elegans       Homestead   M 6.02   3.10  8.54 11.67    August 2017
## 1672  K.elegans       Homestead   M 6.07   3.26  8.94 12.04    August 2017
## 1673  K.elegans       Homestead   M 6.10   3.25  8.98 12.14    August 2017
## 1674  K.elegans       Homestead   M 6.11   3.29  8.55 11.61    August 2017
## 1675  K.elegans       Homestead   M 5.71   3.09  8.73 11.55    August 2017
## 1676  K.elegans       Homestead   M 5.88   3.11  8.59 11.26    August 2017
## 1677  K.elegans       Homestead   F 8.35   4.13 10.51 13.98    August 2017
## 1678  K.elegans       Homestead   F 8.46   3.81 10.46 14.05    August 2017
## 1679  K.elegans       Homestead   M 5.63   3.03  7.93 10.62    August 2017
## 1680  K.elegans       Homestead   M 5.70   3.17  8.76 11.99    August 2017
## 1681  K.elegans       Homestead   F 8.05   3.95 10.64 13.99    August 2017
## 1682  K.elegans       Homestead   M 5.79   3.21  8.85 12.08    August 2017
## 1683  K.elegans       Homestead   F 8.38   3.55 10.41 13.74    August 2017
## 1684  K.elegans       Homestead   M 5.78   3.30  8.95 12.07    August 2017
## 1685  K.elegans       Homestead   F 8.62   3.70  9.84 13.65    August 2017
## 1686  K.elegans       Homestead   M 5.74   2.80  8.00 10.92    August 2017
## 1687  K.elegans       Homestead   M 5.64   3.27  8.67 11.82    August 2017
## 1688  K.elegans       Homestead   F 7.66   3.72 10.19 13.52    August 2017
## 1689  K.elegans       Homestead   M 5.73   3.26  8.71 11.80    August 2017
## 1690  K.elegans       Homestead   M 5.73   3.14  8.46 11.66    August 2017
## 1691  K.elegans       Homestead   F 8.41   4.06 10.39 14.07    August 2017
## 1692  K.elegans       Homestead   F 8.06   3.58  9.77 12.98    August 2017
## 1693  K.elegans       Homestead   M 5.62   3.05  8.23 10.99    August 2017
## 1694  K.elegans       Homestead   F 8.02   3.69  9.92 14.00    August 2017
## 1695  K.elegans       Homestead   M 5.82   3.42  9.26 12.24    August 2017
## 1696  K.elegans       Homestead   F 7.96   3.87 10.32 13.76    August 2017
## 1697  K.elegans       Homestead   F 8.24   3.63  9.63 13.12    August 2017
## 1698  K.elegans       Homestead   F 8.15   3.85 10.44 13.75    August 2017
## 1699  K.elegans       Homestead   F 8.17   3.61 10.16 13.78    August 2017
## 1700  K.elegans       Homestead   M 5.81   3.22  8.71 11.87    August 2017
## 1701  K.elegans       Homestead   F 8.02   3.54  9.53 12.87    August 2017
## 1702  K.elegans       Homestead   M 5.69   3.15  8.83 11.59    August 2017
## 1703  K.elegans       Homestead   M 5.53   2.78  7.84 10.78    August 2017
## 1704  K.elegans       Homestead   M 6.04   3.25  8.95 12.14    August 2017
## 1705  K.elegans       Homestead   F 8.48   4.09 10.25 13.57    August 2017
## 1706  K.elegans       Homestead   F 8.25   3.75  9.95 13.07    August 2017
## 1707  K.elegans       Homestead   M 6.04   3.43  8.84 11.98    August 2017
## 1708  K.elegans       Homestead   F 7.96   3.54  9.45 12.63    August 2017
## 1709  K.elegans       Homestead   F 8.14   3.76 10.05 13.51    August 2017
## 1710  K.elegans       Homestead   F 8.05   3.71  9.58 13.32    August 2017
## 1711  K.elegans       Homestead   F 8.42   3.68  9.65 13.50    August 2017
## 1712  K.elegans       Homestead   F 7.85   3.82  9.99 13.14    August 2017
## 1713  K.elegans       Homestead   M 5.89   3.22  8.52 11.31    August 2017
## 1714  K.elegans       Homestead   F 7.97   3.98 10.60 14.21    August 2017
## 1715  K.elegans       Homestead   F 8.57   3.78  9.82 13.34    August 2017
## 1716  K.elegans       Homestead   F 8.02   3.36  9.43 12.81    August 2017
## 1717  K.elegans       Homestead   F 7.97   3.73 10.15 13.65    August 2017
## 1718  K.elegans       Homestead   F 8.81   3.85 10.26 13.62    August 2017
## 1719  K.elegans       Homestead   M 5.69   2.92  8.13 10.95    August 2017
## 1720  K.elegans       Homestead   M 6.14   3.27  9.00 12.19    August 2017
## 1721  K.elegans       Homestead   M 5.95   3.23  8.92 12.04    August 2017
## 1722  K.elegans       Homestead   F 7.60   3.07  8.50 11.54    August 2017
## 1723  K.elegans       Homestead   M 6.06   3.27  8.80 12.00    August 2017
## 1724  K.elegans       Homestead   M 5.85   3.26  8.84 11.70    August 2017
## 1725  K.elegans       Homestead   F 8.24   3.62  9.87 13.35    August 2017
## 1726  K.elegans       Homestead   M 5.85   3.15  8.50 11.34    August 2017
## 1727  K.elegans       Homestead   F 8.39   3.73 10.50 14.35    August 2017
## 1728  K.elegans       Homestead   M 6.05   3.10  8.79 11.74    August 2017
## 1729  K.elegans       Homestead   M 5.65   3.33  9.08 11.91    August 2017
## 1730  K.elegans       Homestead   F 8.62   3.78  9.92 13.67    August 2017
## 1731  K.elegans       Homestead   M 5.99   3.13  8.54 11.67    August 2017
## 1732  K.elegans       Homestead   M 5.99   3.26  9.14 12.08    August 2017
## 1733  K.elegans       Homestead   M 5.71   2.97  8.82 11.42    August 2017
## 1734 C.corindum       Key_Largo   F 8.89   3.62  9.34 12.55    August 2017
## 1735 C.corindum       Key_Largo   M 5.97   3.01  8.30 10.89    August 2017
## 1736 C.corindum       Key_Largo   M 6.20   2.90  8.36 11.30    August 2017
## 1738 C.corindum       Key_Largo   F 7.90   3.12  8.64 12.02    August 2017
## 1739 C.corindum       Key_Largo   M 6.29   3.10  8.06 11.34    August 2017
## 1740 C.corindum       Key_Largo   M 5.79   2.74  7.53 10.50    August 2017
## 1741 C.corindum       Key_Largo   M 5.31   2.75  7.39 10.03    August 2017
## 1742 C.corindum       Key_Largo   F 8.29   3.47  9.34 12.95    August 2017
## 1743 C.corindum       Key_Largo   M 5.86   2.94  7.64 10.65    August 2017
## 1744 C.corindum       Key_Largo   F 7.95   3.34  9.20 12.71    August 2017
## 1746 C.corindum       Key_Largo   M 6.08   3.07  8.14 11.48    August 2017
## 1747 C.corindum       Key_Largo   M 6.24   3.05  7.92 10.78    August 2017
## 1748 C.corindum       Key_Largo   M 6.35   2.89  8.13 11.08    August 2017
## 1749 C.corindum       Key_Largo   F 7.33   3.32  8.24 11.52    August 2017
## 1750 C.corindum       Key_Largo   M 6.07   3.10  7.99 11.07    August 2017
## 1751 C.corindum       Key_Largo   M 5.80   3.08  8.58 11.59    August 2017
## 1752 C.corindum       Key_Largo   F 8.03   3.44  9.05 12.44    August 2017
## 1753 C.corindum       Key_Largo   F 7.96   3.33  8.46 11.96    August 2017
## 1754 C.corindum       Key_Largo   F 8.09   3.43  8.98 12.46    August 2017
## 1755 C.corindum       Key_Largo   F 7.86   3.62  9.39 13.27    August 2017
## 1758 C.corindum       Key_Largo   F 7.96   3.04  8.80 11.94    August 2017
## 1759 C.corindum       Key_Largo   F 8.38   3.67 10.16 13.81    August 2017
## 1760 C.corindum       Key_Largo   M 5.90   3.21  8.31 11.65    August 2017
## 1761 C.corindum       Key_Largo   M 5.50   2.63  6.79  9.59    August 2017
## 1762 C.corindum       Key_Largo   F 9.01   3.67  9.96 13.60    August 2017
## 1763 C.corindum       Key_Largo   F 7.00   3.54  9.55 12.94    August 2017
## 1764 C.corindum       Key_Largo   M 5.90   3.09  8.13 11.13    August 2017
## 1765 C.corindum       Key_Largo   M 5.79   2.73  7.36 10.02    August 2017
## 1766 C.corindum       Key_Largo   M 6.20   2.82  7.73 10.70    August 2017
## 1768 C.corindum       Key_Largo   M 6.11   2.88  7.90 10.99    August 2017
## 1769 C.corindum North_Key_Largo   M 6.85   3.40  9.18 12.30    August 2017
## 1770 C.corindum North_Key_Largo   F 8.90   3.48  9.10 12.57    August 2017
## 1771 C.corindum North_Key_Largo   M 6.32   3.03  8.02 10.63    August 2017
## 1772 C.corindum North_Key_Largo   F 8.16   3.47  9.17 12.60    August 2017
## 1774 C.corindum North_Key_Largo   M 6.36   3.26  8.97 12.28    August 2017
## 1775 C.corindum North_Key_Largo   F 8.04   3.78 10.20 13.79    August 2017
## 1776 C.corindum North_Key_Largo   F 7.49   3.14  8.41 11.86    August 2017
## 1779 C.corindum North_Key_Largo   M 6.01   3.29  8.20 11.51    August 2017
## 1780 C.corindum North_Key_Largo   F 8.72   3.48  9.27 12.82    August 2017
## 1782 C.corindum North_Key_Largo   M 6.65   3.04  8.49 11.63    August 2017
## 1785 C.corindum North_Key_Largo   F 9.40   3.65  9.76 13.39    August 2017
## 1786 C.corindum North_Key_Largo   M 6.01   3.04  8.89 11.88    August 2017
## 1788 C.corindum North_Key_Largo   M 6.20   2.99  7.84 10.77    August 2017
## 1789 C.corindum North_Key_Largo   M 5.65   2.79  7.59 10.45    August 2017
## 1790 C.corindum North_Key_Largo   F 9.17   3.99 10.33 14.32    August 2017
## 1791 C.corindum North_Key_Largo   M 5.94   3.00  8.39 11.52    August 2017
## 1793 C.corindum North_Key_Largo   M 6.88   3.26  9.02 12.12    August 2017
## 1800 C.corindum North_Key_Largo   M 5.98   2.64  7.43 10.46    August 2017
## 1802 C.corindum North_Key_Largo   M 5.68   2.87  7.89 10.77    August 2017
## 1805 C.corindum North_Key_Largo   M 6.01   3.01  8.24 11.47    August 2017
## 1806 C.corindum North_Key_Largo   F 8.52   3.71  9.07 12.95    August 2017
## 1807 C.corindum North_Key_Largo   F 8.07   3.64 10.06 13.91    August 2017
## 1808 C.corindum North_Key_Largo   F 8.40   3.32  8.88 12.19    August 2017
## 1809 C.corindum North_Key_Largo   M 5.78   2.89  8.58 11.32    August 2017
## 1810 C.corindum North_Key_Largo   F 8.38   3.30  9.07 12.35    August 2017
## 1811 C.corindum North_Key_Largo   F 8.47   3.57  9.89 13.69    August 2017
## 1812 C.corindum North_Key_Largo   F 7.40   3.14  8.50 11.70    August 2017
## 1813 C.corindum North_Key_Largo   M 6.27   3.31  8.77 11.71    August 2017
## 1814 C.corindum North_Key_Largo   M 5.51   2.79  7.09 10.07    August 2017
## 1815 C.corindum North_Key_Largo   F 8.70   3.58  9.94 13.77    August 2017
## 1816 C.corindum North_Key_Largo   M 5.63   3.07  9.36 12.35    August 2017
## 1817 C.corindum North_Key_Largo   M 6.37   2.90  7.77 10.61    August 2017
## 1819 C.corindum North_Key_Largo   M 5.29   2.43  6.82  9.57    August 2017
## 1821 C.corindum North_Key_Largo   F 7.79   3.24  8.43 11.77    August 2017
## 1822 C.corindum North_Key_Largo   M 5.64   2.75  7.54 10.07    August 2017
## 1823 C.corindum North_Key_Largo   F 8.38   3.31  9.40 12.82    August 2017
## 1824 C.corindum North_Key_Largo   F 6.40   3.00  7.98 11.03    August 2017
## 1826  K.elegans      Lake_Wales   M 5.60   3.09  8.75 11.98    August 2017
## 1827  K.elegans      Lake_Wales   F 7.54   3.79  9.84 13.27    August 2017
## 1828  K.elegans      Lake_Wales   F 7.18   3.33  9.00 12.33    August 2017
## 1829  K.elegans      Lake_Wales   M 5.52   3.01  7.97 10.92    August 2017
## 1831  K.elegans      Lake_Wales   M 5.52   3.10  8.26 11.30    August 2017
## 1832  K.elegans      Lake_Wales   F 7.53   3.44  9.56 12.97    August 2017
## 1833  K.elegans      Lake_Wales   M 5.85   3.06  8.25 11.23    August 2017
## 1834  K.elegans      Lake_Wales   F 8.08   3.66  9.70 13.37    August 2017
## 1835  K.elegans      Lake_Wales   M 5.58   2.74  7.81 10.65    August 2017
## 1836  K.elegans      Lake_Wales   M 5.79   2.87  7.94 10.97    August 2017
## 1837  K.elegans      Lake_Wales   M 5.71   3.04  8.45 11.55    August 2017
## 1838  K.elegans      Lake_Wales   F 8.23   3.64  9.75 13.28    August 2017
## 1839  K.elegans      Lake_Wales   F 7.58   3.53  9.39 12.81    August 2017
## 1840  K.elegans      Lake_Wales   F 7.55   3.48  9.09 12.45    August 2017
## 1842  K.elegans      Lake_Wales   F 7.82   3.49  9.23 12.49    August 2017
## 1844  K.elegans      Lake_Wales   M 5.32   2.98  7.59 10.58    August 2017
## 1845  K.elegans      Lake_Wales   F 7.72   3.47  9.48 13.06    August 2017
## 1846  K.elegans      Lake_Wales   M 6.03   3.22  8.52 11.54    August 2017
## 1847  K.elegans      Lake_Wales   M 5.68   3.14  8.26 10.91    August 2017
## 1848  K.elegans      Lake_Wales   M 5.86   3.12  8.50 11.28    August 2017
## 1849  K.elegans      Lake_Wales   F 7.45   3.63  9.27 12.65    August 2017
## 1850  K.elegans      Lake_Wales   M 5.69   3.26  8.49 11.99    August 2017
## 1852  K.elegans      Lake_Wales   F 7.71   3.61  9.40 12.95    August 2017
## 1853  K.elegans      Lake_Wales   M 5.63   2.88  7.81 10.49    August 2017
## 1854  K.elegans      Lake_Wales   M 5.68   3.26  8.37 11.14    August 2017
## 1855  K.elegans      Lake_Wales   M 5.51   2.83  7.89 10.83    August 2017
## 1856  K.elegans      Lake_Wales   F 7.21   3.31  9.06 12.56    August 2017
## 1857  K.elegans      Lake_Wales   M 5.71   3.30  8.83 12.12    August 2017
## 1858  K.elegans      Lake_Wales   F 8.49   3.70 10.05 14.07    August 2017
## 1859  K.elegans      Lake_Wales   M 5.47   2.98  8.13 11.14    August 2017
## 1862  K.elegans      Lake_Wales   M 5.51   3.16  8.89 12.16    August 2017
## 1863  K.elegans      Lake_Wales   F 7.78   3.51  9.07 12.70    August 2017
## 1864  K.elegans      Lake_Wales   F 7.71     NA  9.59 13.19    August 2017
## 1867  K.elegans      Lake_Wales   M 5.48   2.88  8.10 11.41    August 2017
## 1868  K.elegans      Lake_Wales   M 5.83   3.18  8.51 11.70    August 2017
## 1871  K.elegans      Lake_Wales   M 5.26   3.03  8.57 11.48    August 2017
## 1874  K.elegans      Lake_Wales   F 8.71   3.87 10.51 14.12    August 2017
## 1876  K.elegans      Lake_Wales   M 5.60   3.07  8.46 11.46    August 2017
## 1878  K.elegans      Lake_Wales   F 6.69   3.64  9.40 13.15    August 2017
## 1879  K.elegans      Lake_Wales   M 5.83   3.08  8.87 11.86    August 2017
## 1881  K.elegans      Lake_Wales   M 5.71   3.34  9.49 12.62    August 2017
## 1882  K.elegans      Lake_Wales   M 5.62   3.19  8.79 11.93    August 2017
## 1884  K.elegans      Lake_Wales   F 6.54   3.33  9.59 13.00    August 2017
## 1885  K.elegans      Lake_Wales   M 5.24   3.34  8.06 11.17    August 2017
## 1887  K.elegans      Lake_Wales   F 7.73   3.87  9.78 13.24    August 2017
## 1892  K.elegans      Lake_Wales   M 5.32   2.95  7.95 11.17    August 2017
## 1894  K.elegans      Lake_Wales   M 5.26   3.02  8.62 11.69    August 2017
## 1895  K.elegans      Lake_Wales   M 5.40   3.06  8.37 11.57    August 2017
## 1896  K.elegans      Lake_Wales   M 5.86   2.90  7.61 10.53    August 2017
## 1897  K.elegans      Lake_Wales   M 5.65   3.01  8.17 11.16    August 2017
## 1898  K.elegans      Lake_Wales   F 6.76   3.12  8.47 11.78    August 2017
## 1901  K.elegans      Lake_Wales   F 7.35   3.32  8.86 12.26    August 2017
## 1905  K.elegans      Lake_Wales   M 5.60     NA  8.65 11.87    August 2017
## 1907  K.elegans      Lake_Wales   M 4.97   2.69  7.22 10.15    August 2017
## 1912  K.elegans      Lake_Wales   M 5.49   3.03  7.89 10.80    August 2017
## 1914  K.elegans      Lake_Wales   M 5.81   3.19  8.97 12.09    August 2017
## 1915  K.elegans      Lake_Wales   M 5.37   2.54  6.17  9.14    August 2017
## 1917  K.elegans        Leesburg   M 5.23   3.05  8.75 11.43    August 2017
## 1918  K.elegans        Leesburg   F 7.20   3.29  9.05 12.30    August 2017
## 1922  K.elegans        Leesburg   M 6.05   3.26  8.61 11.63    August 2017
## 1923  K.elegans        Leesburg   F 7.11   3.20  9.13 12.30    August 2017
## 1924  K.elegans        Leesburg   M 5.78   2.86  8.16 11.39    August 2017
## 1925  K.elegans        Leesburg   M 5.72   2.89  7.89 10.72    August 2017
## 1927  K.elegans        Leesburg   M 5.35   2.80  7.71 10.49    August 2017
## 1928  K.elegans        Leesburg   F 7.77   3.82 10.22 13.70    August 2017
## 1929  K.elegans        Leesburg   F 8.44   3.66  9.83 13.58    August 2017
## 1930  K.elegans        Leesburg   M 5.60   2.64  7.39 10.28    August 2017
## 1933  K.elegans        Leesburg   F 7.75   3.48  9.70 13.37    August 2017
## 1935  K.elegans        Leesburg   F 8.14   3.70  9.78 13.30    August 2017
## 1936  K.elegans        Leesburg   M 5.39   2.96  8.40 11.39    August 2017
## 1937  K.elegans        Leesburg   M 5.87   3.00  8.18 11.47    August 2017
## 1938  K.elegans        Leesburg   M 5.30   2.81  7.67 10.40    August 2017
## 1939  K.elegans        Leesburg   M 5.17   2.72  7.45  9.98    August 2017
## 1941  K.elegans        Leesburg   M 5.36   2.75  7.85 10.61    August 2017
## 1942  K.elegans        Leesburg   F 7.14   3.37  9.21 12.69    August 2017
## 1944  K.elegans        Leesburg   M 5.56   2.81  8.31 11.24    August 2017
## 1945  K.elegans        Leesburg   F 7.01   3.15  8.52 11.79    August 2017
## 1946  K.elegans        Leesburg   M 5.58   2.96  8.22 11.14    August 2017
## 1947  K.elegans        Leesburg   M 5.55   3.00  8.20 11.17    August 2017
## 1948  K.elegans        Leesburg   F 7.35   3.49  9.39 12.62    August 2017
## 1949  K.elegans        Leesburg   M 5.41   3.07  8.53 11.59    August 2017
## 1952  K.elegans        Leesburg   M 5.41   2.65  7.65 10.62    August 2017
## 1953  K.elegans        Leesburg   M 5.27   2.87  8.08 11.12    August 2017
## 1955  K.elegans        Leesburg   M 6.27   2.84  7.42 10.06    August 2017
## 1956  K.elegans        Leesburg   F 7.14   3.37  9.52 12.83    August 2017
## 1958  K.elegans        Leesburg   M 5.69   2.87  8.18 11.20    August 2017
## 1959  K.elegans        Leesburg   F 7.82   3.43  9.52 13.21    August 2017
## 1960  K.elegans        Leesburg   M 5.62   3.22  8.76 11.80    August 2017
## 1963  K.elegans        Leesburg   M 5.86   2.74  7.90 10.71    August 2017
## 1964  K.elegans        Leesburg   M 5.15   2.59  7.16  9.86    August 2017
## 1965  K.elegans        Leesburg   M 5.52   3.09  7.91 10.68    August 2017
## 1973  K.elegans        Leesburg   F 6.72   3.05  8.26 11.43    August 2017
## 1975  K.elegans     Gainesville   M 5.59   2.77  7.70 10.83 September 2018
## 1976  K.elegans     Gainesville   M 5.48   2.89  8.43 11.23 September 2018
## 1977  K.elegans     Gainesville   M 5.66   3.02  8.78 11.95 September 2018
## 1978  K.elegans     Gainesville   F 8.29   3.85 10.26 14.18 September 2018
## 1979  K.elegans     Gainesville   F 7.54   3.42  9.12 12.19 September 2018
## 1980  K.elegans     Gainesville   M 5.32   2.66  7.37 10.08 September 2018
## 1981  K.elegans     Gainesville   M 5.72   3.14  8.98 11.90 September 2018
## 1982  K.elegans     Gainesville   F 7.12   3.30  9.11 12.36 September 2018
## 1983  K.elegans     Gainesville   F 6.43   3.40  9.34 12.37 September 2018
## 1984  K.elegans     Gainesville   F 7.25   3.65 10.40 13.81 September 2018
## 1985  K.elegans     Gainesville   F 7.36   3.25  8.89 12.16 September 2018
## 1986  K.elegans     Gainesville   F 8.03   3.55  9.73 13.38 September 2018
## 1987  K.elegans     Gainesville   F 7.21   3.01  8.60 11.69 September 2018
## 1988  K.elegans     Gainesville   F 6.93   3.49  9.82 13.11 September 2018
## 1989  K.elegans     Gainesville   F 6.06   3.22  9.32 12.63 September 2018
## 1990  K.elegans     Gainesville   F 7.68   3.50  9.42 13.15 September 2018
## 1992  K.elegans     Gainesville   M 5.66   2.94  8.45 11.49 September 2018
## 1993  K.elegans     Gainesville   M 5.78   3.04  8.60 11.67 September 2018
## 1994  K.elegans     Gainesville   M 5.58   2.95  8.59 11.56 September 2018
## 1995  K.elegans     Gainesville   M 5.32   2.94  8.11 10.81 September 2018
## 1996  K.elegans     Gainesville   M 5.50   3.07  8.05 11.26 September 2018
## 1997  K.elegans     Gainesville   F 6.59   3.26  8.64 11.64 September 2018
## 1998  K.elegans     Gainesville   M 5.42   2.87  8.27 11.08 September 2018
## 1999  K.elegans     Gainesville   F 6.51   3.47  9.26 13.25 September 2018
## 2000  K.elegans     Gainesville   F 6.61   3.19  8.67 11.67 September 2018
## 2001  K.elegans     Gainesville   M 5.11   2.70  7.81 10.50 September 2018
## 2002  K.elegans     Gainesville   M 5.52   2.97  8.48 11.46 September 2018
## 2003  K.elegans     Gainesville   M 5.93   2.89  7.87 11.04 September 2018
## 2004  K.elegans     Gainesville   M 5.29   2.96  7.68 10.94 September 2018
## 2005  K.elegans     Gainesville   F 7.80   3.32  9.45 12.82 September 2018
## 2006  K.elegans     Gainesville   F 6.42   3.46  9.10 12.45 September 2018
## 2007  K.elegans     Gainesville   F 7.69   3.74  9.71 13.17 September 2018
## 2008  K.elegans     Gainesville   M 5.51   2.79  8.34 11.01 September 2018
## 2009  K.elegans     Gainesville   F 7.16   3.24  8.73 11.84 September 2018
## 2010  K.elegans     Gainesville   M 5.79   3.09  8.78 12.04 September 2018
## 2011  K.elegans     Gainesville   M 5.78   3.25  9.07 12.37 September 2018
## 2012  K.elegans     Gainesville   M 5.89   3.10  8.75 11.86 September 2018
## 2013  K.elegans     Gainesville   F 6.68   3.53  9.45 12.73 September 2018
## 2014  K.elegans     Gainesville   M 5.49   2.71  7.55 10.66 September 2018
## 2015  K.elegans     Gainesville   F 7.69   3.51  9.63 13.27 September 2018
## 2016  K.elegans     Gainesville   F 7.26   3.68 10.03 13.45 September 2018
## 2017  K.elegans     Gainesville   F 7.26   3.72 10.29 13.78 September 2018
## 2018  K.elegans     Gainesville   M 5.53   2.76  8.02 10.72 September 2018
## 2019  K.elegans     Gainesville   M 5.61   2.98  8.17 11.09 September 2018
## 2020  K.elegans     Gainesville   F 7.42   3.47  9.64 12.99 September 2018
## 2021  K.elegans     Gainesville   M 5.71   2.79  7.95 11.04 September 2018
## 2022  K.elegans     Gainesville   M 5.28   2.95  7.96 11.14 September 2018
## 2023  K.elegans     Gainesville   M 5.84   3.01  8.33 11.29 September 2018
## 2024  K.elegans     Gainesville   F 7.98   3.40  9.51 13.08 September 2018
## 2025  K.elegans     Gainesville   F 7.10   3.17  9.26 12.82 September 2018
## 2026  K.elegans     Gainesville   F 7.69   3.34  9.78 13.10 September 2018
## 2027  K.elegans     Gainesville   M 6.15   3.03  8.56 11.63 September 2018
## 2028  K.elegans     Gainesville   M 5.07   2.68  7.40 10.06 September 2018
## 2029  K.elegans     Gainesville   F 7.15   3.51  9.40 13.13 September 2018
## 2031  K.elegans     Gainesville   F 7.32   3.28  8.69 11.92 September 2018
## 2032  K.elegans     Gainesville   F 6.43   3.40  9.11 12.58 September 2018
## 2033  K.elegans     Gainesville   M 5.47   2.81  7.82 10.70 September 2018
## 2034  K.elegans     Gainesville   M 5.65   3.01  8.76 11.76 September 2018
## 2036  K.elegans     Gainesville   M 5.41   2.92  8.00 10.86 September 2018
## 2037  K.elegans     Gainesville   F 7.94   3.54  9.18 12.89 September 2018
## 2038  K.elegans     Gainesville   M 6.00   2.95  8.46 11.51 September 2018
## 2039 C.corindum North_Key_Largo   M 6.19   3.10  8.67 11.95 September 2018
## 2040 C.corindum North_Key_Largo   M 6.02   3.19  8.47 11.62 September 2018
## 2041 C.corindum North_Key_Largo   M 6.20   2.82  7.96 11.07 September 2018
## 2042 C.corindum North_Key_Largo   F 7.07   3.01  7.82 10.87 September 2018
## 2047 C.corindum North_Key_Largo   F 9.38   3.80  9.79 13.56 September 2018
## 2050 C.corindum North_Key_Largo   F 7.25   2.81  7.74 10.73 September 2018
## 2053 C.corindum North_Key_Largo   M 5.74   2.80  7.61 10.59 September 2018
## 2055 C.corindum North_Key_Largo   F 8.48   3.51  9.53 13.02 September 2018
## 2057 C.corindum North_Key_Largo   F 7.67   3.16  7.74 11.51 September 2018
## 2058 C.corindum North_Key_Largo   M 6.53   3.15  8.60 11.85 September 2018
## 2059 C.corindum North_Key_Largo   M 6.00   3.07  8.55 11.57 September 2018
## 2062 C.corindum North_Key_Largo   F 8.75   3.49  9.08 12.79 September 2018
## 2064 C.corindum North_Key_Largo   F 8.61   3.60  9.76 13.37 September 2018
## 2065 C.corindum North_Key_Largo   M 6.31   3.22  8.62 11.85 September 2018
## 2069 C.corindum North_Key_Largo   F 9.36   3.55 10.00 13.64 September 2018
## 2071 C.corindum North_Key_Largo   M 5.69   2.77  7.57 10.38 September 2018
## 2072 C.corindum North_Key_Largo   M 5.77   2.94  7.41 10.66 September 2018
## 2073 C.corindum North_Key_Largo   F 6.67   2.94  7.33 10.69 September 2018
## 2079 C.corindum North_Key_Largo   F 8.61   3.55  9.45 12.97 September 2018
## 2081 C.corindum North_Key_Largo   F 7.83   3.32  8.77 12.27 September 2018
## 2082 C.corindum North_Key_Largo   M 6.35   3.15  8.35 11.45 September 2018
## 2083 C.corindum North_Key_Largo   F 8.51   3.64  9.26 12.66 September 2018
## 2085 C.corindum North_Key_Largo   M 6.41   3.15  8.69 12.03 September 2018
## 2086 C.corindum North_Key_Largo   M 5.58   2.80  7.70 10.39 September 2018
## 2087 C.corindum North_Key_Largo   F 7.95   3.21  8.78 12.09 September 2018
## 2088 C.corindum North_Key_Largo   F 7.65   3.28  9.35 12.44 September 2018
## 2091 C.corindum North_Key_Largo   F 7.78   3.24  8.32 11.75 September 2018
## 2094 C.corindum North_Key_Largo   M 5.41   2.63  7.44  9.94 September 2018
## 2095 C.corindum North_Key_Largo   F 8.36   3.45  9.23 12.76 September 2018
## 2097 C.corindum North_Key_Largo   F 7.89   3.19  9.47 12.89 September 2018
## 2099 C.corindum North_Key_Largo   M 5.56   2.75  7.86 10.83 September 2018
## 2101 C.corindum North_Key_Largo   F 7.95   3.27  8.61 11.85 September 2018
## 2103 C.corindum North_Key_Largo   M 6.30   2.91  8.45 11.32 September 2018
## 2107  K.elegans      Lake_Wales   F 7.16   3.29  9.14 12.49 September 2018
## 2108  K.elegans      Lake_Wales   F 7.02   3.13  8.44 11.80 September 2018
## 2109  K.elegans      Lake_Wales   F 7.60   3.45  9.26 12.71 September 2018
## 2110  K.elegans      Lake_Wales   M 5.84   3.05  8.23 11.43 September 2018
## 2111  K.elegans      Lake_Wales   M 5.52   2.69  7.76 10.47 September 2018
## 2112  K.elegans      Lake_Wales   F 6.83   3.11  8.94 12.27 September 2018
## 2113  K.elegans      Lake_Wales   F 6.88   3.13  9.10 12.47 September 2018
## 2115  K.elegans      Lake_Wales   F 6.70   3.09  8.36 11.61 September 2018
## 2116  K.elegans      Lake_Wales   M 5.71   3.00  8.08 11.00 September 2018
## 2117  K.elegans      Lake_Wales   F 7.48   3.12  9.41 12.66 September 2018
## 2118  K.elegans      Lake_Wales   F 7.83   3.42 10.21 14.19 September 2018
## 2119  K.elegans      Lake_Wales   M 5.61   3.09  8.59 11.67 September 2018
## 2120  K.elegans      Lake_Wales   F 7.46   3.65  9.93 13.34 September 2018
## 2121  K.elegans      Lake_Wales   M 5.77   2.94  8.22 11.27 September 2018
## 2122  K.elegans      Lake_Wales   F 7.51   3.26  9.33 12.56 September 2018
## 2123  K.elegans      Lake_Wales   F 7.35   3.26  8.73 12.22 September 2018
## 2124  K.elegans      Lake_Wales   M 5.81   3.07  8.68 11.71 September 2018
## 2125  K.elegans      Lake_Wales   F 8.47   3.64 10.07 14.02 September 2018
## 2126  K.elegans      Lake_Wales   F 7.32   3.58 10.19 13.51 September 2018
## 2127  K.elegans      Lake_Wales   F 7.19   3.30  9.02 12.47 September 2018
## 2128  K.elegans      Lake_Wales   M 5.68   2.65  7.56 10.60 September 2018
## 2129  K.elegans      Lake_Wales   M 5.82   3.25  8.65 11.71 September 2018
## 2130  K.elegans      Lake_Wales   F 6.05   3.08  8.14 11.49 September 2018
## 2131  K.elegans      Lake_Wales   M 5.57   2.86  7.89 11.03 September 2018
## 2133  K.elegans      Lake_Wales   M 5.26   2.79  7.97 10.73 September 2018
## 2134  K.elegans      Lake_Wales   F 6.80   3.15  8.74 11.85 September 2018
## 2136  K.elegans      Lake_Wales   F 7.82   3.76 10.17 14.19 September 2018
## 2137  K.elegans      Lake_Wales   M 5.85   3.12  8.64 12.00 September 2018
## 2138  K.elegans      Lake_Wales   F 7.78   3.50  9.32 13.17 September 2018
## 2139  K.elegans      Lake_Wales   F 7.55   3.38  9.58 12.82 September 2018
## 2140  K.elegans      Lake_Wales   F 7.58   3.60  9.69 13.14 September 2018
## 2141  K.elegans      Lake_Wales   F 7.43   3.45  9.56 12.91 September 2018
## 2142  K.elegans      Lake_Wales   F 7.29   3.23  9.22 12.56 September 2018
## 2143  K.elegans      Lake_Wales   F 7.75   3.66  9.87 13.53 September 2018
## 2144  K.elegans      Lake_Wales   M 5.57   2.79  7.56 10.74 September 2018
## 2145  K.elegans      Lake_Wales   M 5.79   3.29  8.68 11.50 September 2018
## 2146  K.elegans      Lake_Wales   M 5.40   2.75  7.60 10.55 September 2018
## 2147  K.elegans        Leesburg   M 5.45   2.98  8.12 11.05 September 2018
## 2148  K.elegans     Gainesville   F 7.48   3.44  9.12 12.60       May 2019
## 2149  K.elegans     Gainesville   F 7.66   3.58  9.94 13.63       May 2019
## 2150  K.elegans     Gainesville   M 5.14   2.63  7.51 10.21       May 2019
## 2151  K.elegans     Gainesville   F 7.68   3.73 10.13 13.47       May 2019
## 2152  K.elegans     Gainesville   M 5.91   3.31  8.83 12.47       May 2019
## 2154  K.elegans     Gainesville   F 7.87   3.75  9.93 13.35       May 2019
## 2155  K.elegans     Gainesville   M 5.22   2.73  7.10  9.88       May 2019
## 2156  K.elegans     Gainesville   M 5.34   2.86  8.11 10.90       May 2019
## 2157  K.elegans     Gainesville   F 7.60   3.95  9.67 13.80       May 2019
## 2158  K.elegans     Gainesville   F 6.98   3.60  8.95 12.30       May 2019
## 2159  K.elegans     Gainesville   F 5.91   3.20  8.80 11.86       May 2019
## 2160  K.elegans     Gainesville   M 6.24   3.47  9.09 12.80       May 2019
## 2161  K.elegans     Gainesville   F 6.30   3.56  9.09 11.94       May 2019
## 2162  K.elegans     Gainesville   F 8.09   3.55 10.02 13.84       May 2019
## 2163  K.elegans     Gainesville   F 7.98   3.91  9.75 13.98       May 2019
## 2164  K.elegans     Gainesville   F 8.64   3.54  9.31 13.34       May 2019
## 2165  K.elegans     Gainesville   F 5.74   3.28  8.81 11.81       May 2019
## 2166  K.elegans     Gainesville   F 8.28   3.83  9.90 13.64       May 2019
## 2168  K.elegans     Gainesville   F 5.42   2.96  7.71 10.13       May 2019
## 2169  K.elegans     Gainesville   F 7.80   3.45 10.34 13.52       May 2019
## 2170  K.elegans     Gainesville   F 8.16   3.80 10.10 13.21       May 2019
## 2171  K.elegans     Gainesville   F 8.22   4.05  9.98 13.50       May 2019
## 2172  K.elegans     Gainesville   M 6.19   2.98  9.11 12.05       May 2019
## 2173  K.elegans     Gainesville   F 6.10   2.77  8.05 10.45       May 2019
## 2174  K.elegans     Gainesville   F 8.83   3.64 10.62 13.59       May 2019
## 2175  K.elegans     Gainesville   M 8.63   4.09 10.17 14.07       May 2019
## 2176  K.elegans     Gainesville   F 7.73   3.43  9.08 12.52       May 2019
## 2177  K.elegans     Gainesville   F 6.96   2.75  7.98 11.29       May 2019
## 2178  K.elegans     Gainesville   M 6.00   3.07  8.58 11.37       May 2019
## 2179  K.elegans     Gainesville   F 5.76   3.11  8.56 10.96       May 2019
## 2180  K.elegans     Gainesville   F 7.94   3.68 10.38 13.63       May 2019
## 2181  K.elegans     Gainesville   F 8.55   3.79 10.35 14.16       May 2019
## 2182  K.elegans     Gainesville   F 5.71   3.19  7.81 10.87       May 2019
## 2183  K.elegans     Gainesville   F 5.68   2.89  7.87 10.53       May 2019
## 2184  K.elegans     Gainesville   F 5.48   2.91  8.12 11.38       May 2019
## 2185  K.elegans     Gainesville   F 7.96   3.74 10.23 13.69       May 2019
## 2186  K.elegans     Gainesville   F 5.95   3.11  8.84 11.05       May 2019
## 2187  K.elegans     Gainesville   F 5.34   3.05  8.07 10.83       May 2019
## 2188  K.elegans     Gainesville   F 8.15   3.92 10.21 13.99       May 2019
## 2189  K.elegans     Gainesville   F 5.89   3.31  8.68 11.40       May 2019
## 2190  K.elegans     Gainesville   M 6.44   3.29  9.33 12.58       May 2019
## 2191  K.elegans     Gainesville   F 7.27   3.47  9.27 12.69       May 2019
## 2192  K.elegans     Gainesville   F 5.77   3.39  8.59 11.61       May 2019
## 2193  K.elegans     Gainesville   F 5.74   2.96  8.42 11.34       May 2019
## 2194  K.elegans     Gainesville   F 8.25   3.41 10.46 13.77       May 2019
## 2195  K.elegans     Gainesville   F 8.11   3.47  9.69 13.42       May 2019
## 2196  K.elegans     Gainesville   F 5.68   3.20  8.13 11.37       May 2019
## 2198  K.elegans       Homestead   M 7.32   3.05  8.09 11.32       May 2019
## 2199  K.elegans       Homestead   F 5.50   2.53  4.63  7.37       May 2019
## 2200  K.elegans       Homestead   F 6.10   2.88  7.11 10.12       May 2019
## 2201  K.elegans       Homestead   M 5.37   2.68  7.29 10.01       May 2019
## 2202  K.elegans       Homestead   M 5.94   2.99  8.30 11.24       May 2019
## 2204  K.elegans       Homestead   M 5.34   2.59  4.94  7.80       May 2019
## 2212  K.elegans       Homestead   M 5.51   2.91  7.84 10.66       May 2019
## 2213  K.elegans       Homestead   F 7.49   3.30  7.31 10.63       May 2019
## 2218 C.corindum       Key_Largo   M 5.63   2.69  6.50  9.31       May 2019
## 2219 C.corindum       Key_Largo   F 8.52   3.70  9.46 12.75       May 2019
## 2220 C.corindum       Key_Largo   M 5.83   2.91  7.90 10.75       May 2019
## 2221 C.corindum       Key_Largo   M 5.45   2.73  7.29 10.19       May 2019
## 2228 C.corindum       Key_Largo   F 7.43   3.18  8.17 11.61       May 2019
## 2232 C.corindum       Key_Largo   F 8.20   3.33  8.98 12.25       May 2019
## 2233 C.corindum       Key_Largo   M 6.14   2.94  8.04 11.04       May 2019
## 2234 C.corindum       Key_Largo   M 5.59   2.80  7.03  9.98       May 2019
## 2235 C.corindum       Key_Largo   M 5.74   2.79  7.30 10.09       May 2019
## 2237 C.corindum       Key_Largo   M 6.14   3.19  8.26 11.03       May 2019
## 2238 C.corindum       Key_Largo   M 6.26   3.01  8.48 11.78       May 2019
## 2240 C.corindum       Key_Largo   M 8.71   3.55  9.32 13.06       May 2019
## 2245 C.corindum       Key_Largo   M 6.00   2.89  7.90 10.75       May 2019
## 2247 C.corindum       Key_Largo   M 5.54   3.19  8.50 11.95       May 2019
## 2251 C.corindum       Key_Largo   M 6.25   3.06  7.77 10.42       May 2019
## 2256 C.corindum       Key_Largo   M 5.89   2.87  7.75 10.51       May 2019
## 2261 C.corindum       Key_Largo   M 5.67   2.77  6.50  9.22       May 2019
## 2262 C.corindum       Key_Largo   F 7.91   3.40  8.90 12.33       May 2019
## 2263 C.corindum       Key_Largo   M 5.66   2.76  7.51 10.41       May 2019
## 2266 C.corindum       Key_Largo   M 6.26   2.99  8.15 10.85       May 2019
## 2268 C.corindum       Key_Largo   M 6.57   3.15  8.49 11.60       May 2019
## 2270 C.corindum       Key_Largo   M 5.84   2.88  7.30 10.19       May 2019
## 2274 C.corindum       Key_Largo   F 7.33   3.13  8.33 11.78       May 2019
## 2282 C.corindum       Key_Largo   M 5.20   2.50  6.72  9.71       May 2019
## 2285 C.corindum       Key_Largo   M 6.42   3.08  8.51 11.34       May 2019
## 2288 C.corindum       Key_Largo   M 5.71   2.63  7.06  9.78       May 2019
## 2291  K.elegans     Lake_Placid   F 5.34   3.15  8.25 11.32       May 2019
## 2292  K.elegans     Lake_Placid   F 5.86   2.89  8.09 11.20       May 2019
## 2293  K.elegans     Lake_Placid   F 6.65   2.94  7.56 11.37       May 2019
## 2294  K.elegans     Lake_Placid   F 8.04   3.07  9.40 12.70       May 2019
## 2295  K.elegans     Lake_Placid   F 7.22   3.50  9.50 13.00       May 2019
## 2296  K.elegans     Lake_Placid   F 7.51   3.48  9.86 13.29       May 2019
## 2297  K.elegans     Lake_Placid   F 7.78   3.81 10.12 13.14       May 2019
## 2298  K.elegans     Lake_Placid   F 5.16   2.99  8.37 11.13       May 2019
## 2300  K.elegans     Lake_Placid   F 7.53   3.85  9.15 12.61       May 2019
## 2302  K.elegans     Lake_Placid   F 8.57   4.05 10.50 13.99       May 2019
## 2305  K.elegans     Lake_Placid   F 8.27   3.48 10.12 12.86       May 2019
## 2306  K.elegans     Lake_Placid   M 5.89   3.03  8.87 12.06       May 2019
## 2308  K.elegans     Lake_Placid   F 5.22   2.72  8.01 10.65       May 2019
## 2310  K.elegans     Lake_Placid   F 5.49   2.85  7.22 10.06       May 2019
## 2312  K.elegans     Lake_Placid   F 5.98   3.13  8.34 12.41       May 2019
## 2313  K.elegans     Lake_Placid   F 5.61   3.15  8.68 11.28       May 2019
## 2314  K.elegans     Lake_Placid   F 8.49   3.59  9.49 13.13       May 2019
## 2315  K.elegans     Lake_Placid   F 7.88   3.48  9.68 12.85       May 2019
## 2316  K.elegans     Lake_Placid   F 5.25   2.91  8.44 11.34       May 2019
## 2317  K.elegans     Lake_Placid   M 5.79   3.29  8.80 11.93       May 2019
## 2318  K.elegans     Lake_Placid   F 6.36   3.28  9.53 12.03       May 2019
## 2319  K.elegans     Lake_Placid   F 5.53   3.55  8.09 11.33       May 2019
## 2320  K.elegans     Lake_Placid   F 6.94   3.20  8.69 11.45       May 2019
## 2321  K.elegans     Lake_Placid   F 8.29   4.22  9.49 13.15       May 2019
## 2322  K.elegans     Lake_Placid   F 8.39   3.45  9.61 12.97       May 2019
## 2323  K.elegans     Lake_Placid   F 8.12   3.98  7.91 13.70       May 2019
## 2324  K.elegans     Lake_Placid   F 5.79   2.97  8.34 11.29       May 2019
## 2325  K.elegans     Lake_Placid   F 5.54   2.59  7.83 11.64       May 2019
## 2326  K.elegans     Lake_Placid   F 5.04   3.18  7.59 10.55       May 2019
## 2327  K.elegans     Lake_Placid   F 8.56   4.05 10.14 13.77       May 2019
## 2328  K.elegans     Lake_Placid   F 6.25   3.21  8.75 10.86       May 2019
## 2329  K.elegans     Lake_Placid   F 6.48   2.78  6.18  9.33       May 2019
## 2330  K.elegans     Lake_Placid   F 4.88   2.67  7.77 10.19       May 2019
## 2331  K.elegans     Lake_Placid   F 5.36   3.22  8.59 10.98       May 2019
## 2332  K.elegans     Lake_Placid   F 6.82   3.15  8.41 11.61       May 2019
## 2333  K.elegans     Lake_Placid   F 8.49   3.45  9.43 12.33       May 2019
## 2334  K.elegans     Lake_Placid   F 8.11   3.65  9.43 12.79       May 2019
## 2335  K.elegans     Lake_Placid   F 7.93   3.68 10.00 12.98       May 2019
## 2337  K.elegans     Lake_Placid   F 6.70   3.22  8.70 11.39       May 2019
## 2338  K.elegans     Lake_Placid   F 7.39   3.43  9.82 13.14       May 2019
## 2340  K.elegans     Lake_Placid   M 5.75   3.12  8.75 11.56       May 2019
## 2342  K.elegans     Lake_Placid   M 5.81   3.09  8.56 12.14       May 2019
## 2343  K.elegans     Lake_Placid   F 7.49   3.55  9.41 12.23       May 2019
## 2344  K.elegans     Lake_Placid   M 5.13   2.80  7.63 10.64       May 2019
## 2345  K.elegans     Lake_Placid   F 7.72   3.78  9.90 13.51       May 2019
## 2346  K.elegans     Lake_Placid   M 5.66   3.01  7.76 11.07       May 2019
## 2347  K.elegans     Lake_Placid   F 7.64   3.25  9.80 13.89       May 2019
## 2348  K.elegans     Lake_Placid   F 5.63   3.13  8.43 10.67       May 2019
## 2349  K.elegans     Lake_Placid   F 7.80   3.52  9.79 12.53       May 2019
## 2350  K.elegans     Lake_Placid   F 5.26   3.12  7.94 11.15       May 2019
## 2351  K.elegans     Lake_Placid   F 5.40   2.88  7.92 10.51       May 2019
## 2352  K.elegans     Lake_Placid   F 5.66   3.34  8.58 11.75       May 2019
## 2353  K.elegans     Lake_Placid   M 5.75   3.16  8.29 11.25       May 2019
## 2354 C.corindum North_Key_Largo   F 8.48   3.57  9.14 12.92       May 2019
## 2355 C.corindum North_Key_Largo   M 6.27   3.04  8.40 11.46       May 2019
## 2356 C.corindum North_Key_Largo   M 5.83   2.70  7.46 10.24       May 2019
## 2357 C.corindum North_Key_Largo   M 5.83   3.12  8.40 11.43       May 2019
## 2359 C.corindum North_Key_Largo   F 8.12   3.33  9.08 12.40       May 2019
## 2361 C.corindum North_Key_Largo   M 6.50   3.09  8.10 11.04       May 2019
## 2362 C.corindum North_Key_Largo   F 8.73   3.59 10.16 13.64       May 2019
## 2363 C.corindum North_Key_Largo   M 6.03   2.96  8.02 10.92       May 2019
## 2365 C.corindum North_Key_Largo   M 5.64   2.71  7.75 10.58       May 2019
## 2366 C.corindum North_Key_Largo   M 6.23   3.10  8.35 11.35       May 2019
## 2367 C.corindum North_Key_Largo   M 5.66   2.61  7.34 10.10       May 2019
## 2368 C.corindum North_Key_Largo   M 5.50   2.75  7.38 10.10       May 2019
## 2370 C.corindum North_Key_Largo   M 6.19   2.99  8.40 11.30       May 2019
## 2371 C.corindum North_Key_Largo   M 5.60   2.73  7.34 10.22       May 2019
## 2372 C.corindum North_Key_Largo   M 6.75   3.07  8.23 11.19       May 2019
## 2373 C.corindum North_Key_Largo   M 6.32   3.28  8.75 11.80       May 2019
## 2374 C.corindum North_Key_Largo   M 6.61   3.08  8.27 11.12       May 2019
## 2376 C.corindum North_Key_Largo   M 6.54   3.13  8.64 11.66       May 2019
## 2379 C.corindum North_Key_Largo   M 6.29   2.94  7.89 10.84       May 2019
## 2381 C.corindum North_Key_Largo   F 8.23   3.52  8.89 12.12       May 2019
## 2383 C.corindum North_Key_Largo   M 5.62   2.93  7.63 10.70       May 2019
## 2386 C.corindum North_Key_Largo   F 7.09   3.06  8.14 11.49       May 2019
## 2387 C.corindum North_Key_Largo   M 6.17   3.08  8.54 11.11       May 2019
## 2388 C.corindum North_Key_Largo   M 5.56   2.89  7.83 10.56       May 2019
## 2389 C.corindum North_Key_Largo   F 6.80   3.01  7.98 11.10       May 2019
## 2390 C.corindum North_Key_Largo   F 7.55   3.35  8.91 12.04       May 2019
## 2391 C.corindum North_Key_Largo   F 7.07   3.16  8.43 11.51       May 2019
## 2392 C.corindum North_Key_Largo   M 6.25   3.11  8.24 11.24       May 2019
## 2394 C.corindum North_Key_Largo   F 8.04   3.36  8.93 12.34       May 2019
## 2395 C.corindum North_Key_Largo   F 6.37   2.68  7.29 10.29       May 2019
## 2398 C.corindum North_Key_Largo   F 7.20   3.17  7.87 11.16       May 2019
## 2399 C.corindum North_Key_Largo   M 6.98   3.14  8.39 11.65       May 2019
## 2400 C.corindum North_Key_Largo   F 7.65   3.52  8.94 12.39       May 2019
## 2401 C.corindum North_Key_Largo   M 6.09   2.80  7.72 10.39       May 2019
## 2403 C.corindum North_Key_Largo   M 7.15   3.38  9.10 12.57       May 2019
## 2404 C.corindum North_Key_Largo   M 5.43   2.61  7.30  9.97       May 2019
## 2406 C.corindum North_Key_Largo   M 5.25   2.67  7.72 10.48       May 2019
## 2408 C.corindum North_Key_Largo   F 8.98   3.81  9.92 13.40       May 2019
## 2409 C.corindum North_Key_Largo   M 5.96   2.87  7.76 10.64       May 2019
## 2410 C.corindum North_Key_Largo   M 5.73   2.91  7.49 10.56       May 2019
## 2417 C.corindum North_Key_Largo   F 7.54   3.56  9.03 12.33       May 2019
## 2418 C.corindum North_Key_Largo   M 5.76   2.79  7.43 10.63       May 2019
## 2420 C.corindum North_Key_Largo   F 7.50   3.24  8.72 11.94       May 2019
## 2421 C.corindum North_Key_Largo   F 8.22   3.74  9.87 13.73       May 2019
## 2422 C.corindum North_Key_Largo   F 9.78   3.74  9.92 13.49       May 2019
## 2423 C.corindum North_Key_Largo   F 6.63   3.08  7.69 10.77       May 2019
## 2425 C.corindum North_Key_Largo   M 5.92   3.02  8.06 10.91       May 2019
## 2428 C.corindum North_Key_Largo   M 5.93   2.78  7.83 10.63       May 2019
## 2429 C.corindum North_Key_Largo   F 7.79   3.75  9.81 13.10       May 2019
## 2431 C.corindum North_Key_Largo   M 5.98   2.98  7.86 10.87       May 2019
## 2432 C.corindum North_Key_Largo   M 5.72   2.75  7.50 10.28       May 2019
## 2434 C.corindum North_Key_Largo   M 5.73   2.73  7.56 10.58       May 2019
## 2436 C.corindum North_Key_Largo   M 6.06   3.05  8.42 11.41       May 2019
## 2439 C.corindum North_Key_Largo   M 5.78   2.78  7.69 10.75       May 2019
## 2440 C.corindum North_Key_Largo   M 5.50   2.63  7.33 10.10       May 2019
## 2441 C.corindum North_Key_Largo   M 5.99   2.95  8.05 11.10       May 2019
## 2447 C.corindum North_Key_Largo   M 5.33   2.46  6.85  9.35       May 2019
## 2452 C.corindum North_Key_Largo   M 5.73   2.87  7.73 10.69       May 2019
## 2456 C.corindum North_Key_Largo   F 8.11   3.58  9.45 12.86       May 2019
## 2457 C.corindum North_Key_Largo   M 5.91   2.85  7.61 10.42       May 2019
## 2459 C.corindum North_Key_Largo   M 5.93   2.84  7.56 10.29       May 2019
## 2466 C.corindum North_Key_Largo   F 7.89   3.44  8.95 12.39       May 2019
## 2469 C.corindum North_Key_Largo   F 7.77   3.42  9.07 12.61       May 2019
## 2470 C.corindum North_Key_Largo   M 6.30   3.06  7.84 10.76       May 2019
## 2472 C.corindum North_Key_Largo   F 8.73   3.90 10.42 14.30       May 2019
## 2473 C.corindum North_Key_Largo   M 6.73   3.31  8.99 12.06       May 2019
## 2476 C.corindum North_Key_Largo   M 6.17   3.42  8.80 11.94       May 2019
## 2477 C.corindum North_Key_Largo   M 6.08   3.03  8.21 11.08       May 2019
## 2478 C.corindum North_Key_Largo   F 8.43   3.27  8.68 12.17       May 2019
## 2479 C.corindum North_Key_Largo   F 8.73   3.73  9.51 13.01       May 2019
## 2480 C.corindum North_Key_Largo   F 8.79   3.73 10.31 13.87       May 2019
## 2482 C.corindum North_Key_Largo   M 6.13   3.11  8.11 11.14       May 2019
## 2484 C.corindum North_Key_Largo   F 7.41   3.26  8.23 11.43       May 2019
## 2487 C.corindum North_Key_Largo   M 6.31   3.39  7.94 11.35       May 2019
## 2496 C.corindum North_Key_Largo   M 6.20   3.05  8.04 10.90       May 2019
## 2497 C.corindum North_Key_Largo   M 5.97   3.01  8.08 10.97       May 2019
## 2498 C.corindum North_Key_Largo   F 8.16   3.50  8.92 12.44       May 2019
## 2499 C.corindum North_Key_Largo   F 8.35   3.90  9.53 13.14       May 2019
## 2501 C.corindum North_Key_Largo   M 6.03   2.79  7.32  9.96       May 2019
## 2502 C.corindum North_Key_Largo   F 8.02   3.73  9.65 13.41       May 2019
## 2503 C.corindum North_Key_Largo   F 8.28   3.63  9.08 12.60       May 2019
## 2504 C.corindum North_Key_Largo   M 6.09   2.90  8.24 11.35       May 2019
## 2505 C.corindum North_Key_Largo   M 5.95   2.70  7.65 10.58       May 2019
## 2507 C.corindum North_Key_Largo   F 7.83   3.42  8.92 12.28       May 2019
## 2510 C.corindum North_Key_Largo   F 8.32   3.33  8.82 12.31       May 2019
## 2512 C.corindum North_Key_Largo   M 6.02   3.05  8.40 11.35       May 2019
## 2514 C.corindum North_Key_Largo   F 8.52   3.51  9.63 12.95       May 2019
## 2518 C.corindum North_Key_Largo   F 8.23   3.57  9.52 12.80       May 2019
## 2519 C.corindum North_Key_Largo   F 7.39   3.15  8.47 11.62       May 2019
## 2521 C.corindum North_Key_Largo   M 5.93   2.92  7.94 10.86       May 2019
## 2523 C.corindum North_Key_Largo   M 6.01   3.07  8.20 11.22       May 2019
## 2524 C.corindum North_Key_Largo   M 6.22   3.24  8.32 11.46       May 2019
## 2525 C.corindum North_Key_Largo   M 5.83   2.79  7.17 10.15       May 2019
## 2526 C.corindum North_Key_Largo   F 8.56   3.62  9.23 12.44       May 2019
## 2527 C.corindum North_Key_Largo   F 8.22   3.73  9.36 12.69       May 2019
## 2530 C.corindum North_Key_Largo   F 7.60   3.20  8.69 12.19       May 2019
## 2535 C.corindum North_Key_Largo   F 8.75   3.73  9.47 13.07       May 2019
## 2537 C.corindum North_Key_Largo   F 8.17   3.65  9.16 12.56       May 2019
## 2541 C.corindum North_Key_Largo   M 5.74   2.91  8.26 11.18       May 2019
## 2543 C.corindum North_Key_Largo   M 5.63   2.90  8.40 11.29       May 2019
## 2544 C.corindum North_Key_Largo   M 5.89   2.95  8.03 10.77       May 2019
## 2545 C.corindum North_Key_Largo   M 5.91   2.84  7.23 10.09       May 2019
## 2546 C.corindum North_Key_Largo   F 8.73   3.65  9.64 12.92       May 2019
## 2549 C.corindum North_Key_Largo   M 6.09   2.84  7.42 10.38       May 2019
## 2554 C.corindum North_Key_Largo   F 6.87   3.20  8.61 11.87       May 2019
## 2561 C.corindum North_Key_Largo   M 5.97   2.92  7.90 10.89       May 2019
## 2566 C.corindum North_Key_Largo   M 6.22   3.09  8.24 11.48       May 2019
## 2567 C.corindum North_Key_Largo   F 8.12   3.72  9.08 12.61       May 2019
## 2568 C.corindum North_Key_Largo   F 7.53   3.67  9.57 12.90       May 2019
## 2569 C.corindum North_Key_Largo   F 6.54   3.07  7.63 10.85       May 2019
## 2570 C.corindum North_Key_Largo   M 6.53   3.34  9.46 12.50       May 2019
## 2572 C.corindum North_Key_Largo   M 5.92   3.17  8.55 11.76       May 2019
## 2573 C.corindum North_Key_Largo   F 9.11   3.69  9.84 13.46       May 2019
## 2574 C.corindum North_Key_Largo   F 8.15   3.43  9.08 12.23       May 2019
## 2575 C.corindum North_Key_Largo   M 6.02   3.62 10.07 13.23       May 2019
## 2576 C.corindum North_Key_Largo   F 7.98   3.33  8.83 12.04       May 2019
## 2577 C.corindum North_Key_Largo   M 5.96   2.81  7.79 10.71       May 2019
## 2578 C.corindum North_Key_Largo   F 7.94   3.64  9.61 13.23       May 2019
## 2579 C.corindum North_Key_Largo   M 6.41   3.06  8.31 11.68       May 2019
## 2580 C.corindum North_Key_Largo   M 4.96   2.65  6.97  9.80       May 2019
## 2581 C.corindum North_Key_Largo   F 7.25   3.23  8.40 11.60       May 2019
## 2582 C.corindum North_Key_Largo   M 5.96   2.95  7.89 10.83       May 2019
## 2584 C.corindum North_Key_Largo   M 6.16   2.84  7.89 10.89       May 2019
## 2585 C.corindum North_Key_Largo   F 6.62   3.82 10.01 13.65       May 2019
## 2586 C.corindum North_Key_Largo   M 5.75   2.97  9.03 10.96       May 2019
## 2587 C.corindum North_Key_Largo   F 8.43   3.54  9.34 12.55       May 2019
## 2588 C.corindum North_Key_Largo   M 6.19   3.08  8.16 11.37       May 2019
## 2590 C.corindum North_Key_Largo   F 9.84   4.11 10.91 15.02       May 2019
## 2591 C.corindum North_Key_Largo   M 6.05   3.03  7.85 10.85       May 2019
## 2592 C.corindum North_Key_Largo   M 5.77   3.04  7.74 10.84       May 2019
## 2593 C.corindum North_Key_Largo   M 5.95   2.82  7.63 10.57       May 2019
## 2595 C.corindum North_Key_Largo   M 5.81   2.85  7.36  9.92       May 2019
## 2596 C.corindum North_Key_Largo   F 7.77   3.36  8.77 12.28       May 2019
## 2597 C.corindum North_Key_Largo   F 8.33   3.42  8.94 12.64       May 2019
## 2598 C.corindum North_Key_Largo   F 8.37   3.49  9.35 12.71       May 2019
## 2600 C.corindum North_Key_Largo   F 8.17   3.31  8.73 12.37       May 2019
## 2604 C.corindum  Plantation_Key   M 5.57   2.58  7.07  9.84       May 2019
## 2606 C.corindum  Plantation_Key   M 6.01   3.22  8.72 11.55       May 2019
## 2607 C.corindum  Plantation_Key   M 6.26   3.15  7.99 11.20       May 2019
## 2608 C.corindum  Plantation_Key   F 8.50   3.69  9.52 13.16       May 2019
## 2614 C.corindum  Plantation_Key   M 6.37   2.96  8.23 11.22       May 2019
## 2622 C.corindum  Plantation_Key   M 5.63   2.72  7.30 10.17       May 2019
## 2624 C.corindum  Plantation_Key   M 6.14   2.96  7.90 11.18       May 2019
## 2625 C.corindum  Plantation_Key   M 6.17   2.93  7.69 11.07       May 2019
## 2628 C.corindum  Plantation_Key   M 5.98   3.07  7.75 10.84       May 2019
## 2629 C.corindum  Plantation_Key   F 8.56   3.79 10.06 13.66       May 2019
## 2634 C.corindum  Plantation_Key   F 8.07   3.48  9.28 12.55       May 2019
## 2637  K.elegans     Gainesville   F 7.81   3.58  9.57 13.13   October 2019
## 2638  K.elegans     Gainesville   M 6.54   3.36  8.93 12.33   October 2019
## 2639  K.elegans     Gainesville   M 5.64   3.20  8.34 11.50   October 2019
## 2640  K.elegans     Gainesville   F 7.86   3.59  9.82 13.37   October 2019
## 2641  K.elegans     Gainesville   F 8.57   3.90 11.30 14.72   October 2019
## 2645  K.elegans     Gainesville   M 5.72   3.18  8.53 11.55   October 2019
## 2647  K.elegans     Gainesville   F 6.78   3.25  9.03 11.85   October 2019
## 2651  K.elegans     Gainesville   M 5.79   3.37  9.34 12.55   October 2019
## 2652  K.elegans     Gainesville   M 5.60   3.41  9.25 12.19   October 2019
## 2653  K.elegans       Homestead   M 6.20   3.31  8.85 12.20   October 2019
## 2654  K.elegans       Homestead   F 7.94   3.75 10.28 13.41   October 2019
## 2655  K.elegans       Homestead   M 5.93   3.21  8.53 11.82   October 2019
## 2656  K.elegans       Homestead   M 5.92   3.19  8.71 11.52   October 2019
## 2657  K.elegans       Homestead   F 8.37   3.80 10.22 14.17   October 2019
## 2658  K.elegans       Homestead   M 5.69   3.10  8.70 11.60   October 2019
## 2659  K.elegans       Homestead   F 7.88   4.07 10.46 14.08   October 2019
## 2660  K.elegans       Homestead   M 5.95   3.03  8.89 11.69   October 2019
## 2661  K.elegans       Homestead   M 5.84   3.15  8.74 11.55   October 2019
## 2662  K.elegans       Homestead   F 8.54   3.59  9.63 13.36   October 2019
## 2663  K.elegans       Homestead   M 5.86   3.12  8.64 11.82   October 2019
## 2664  K.elegans       Homestead   F 8.02   3.69  9.86 13.57   October 2019
## 2665  K.elegans       Homestead   F 8.33   3.74  9.30 12.73   October 2019
## 2666  K.elegans       Homestead   F 7.96   3.67 10.00 13.34   October 2019
## 2667  K.elegans       Homestead   F 7.98   3.66 10.23 13.60   October 2019
## 2669  K.elegans       Homestead   M 5.38   3.00  8.22 10.99   October 2019
## 2670  K.elegans       Homestead   M 5.88   3.15  8.60 11.69   October 2019
## 2671  K.elegans       Homestead   M 6.00   3.23  9.32 12.26   October 2019
## 2672  K.elegans       Homestead   M 6.08   3.05  8.29 11.20   October 2019
## 2673  K.elegans       Homestead   M 5.74   3.15  8.74 11.78   October 2019
## 2674  K.elegans       Homestead   M 5.57   3.04  8.33 11.11   October 2019
## 2675  K.elegans       Homestead   M 5.70   3.23  8.54 11.59   October 2019
## 2676  K.elegans       Homestead   M 6.12   3.26  9.14 12.22   October 2019
## 2677  K.elegans       Homestead   M 6.06   3.29  8.80 12.10   October 2019
## 2678  K.elegans       Homestead   M 6.14   3.19  9.02 12.10   October 2019
## 2679  K.elegans       Homestead   M 5.88   3.39  9.00 12.18   October 2019
## 2683  K.elegans       Homestead   F 7.97   3.91  9.98 13.19   October 2019
## 2684  K.elegans       Homestead   M 5.75   3.32  9.04 11.98   October 2019
## 2685  K.elegans       Homestead   M 5.27   3.16  8.45 11.21   October 2019
## 2686  K.elegans       Homestead   F 7.61   3.46  9.41 12.90   October 2019
## 2687  K.elegans       Homestead   M 5.50   3.01  8.61 11.37   October 2019
## 2693 C.corindum North_Key_Largo   F 8.56   3.55  9.12 12.58   October 2019
## 2695 C.corindum North_Key_Largo   M 6.25   3.37  8.67 11.84   October 2019
## 2697 C.corindum North_Key_Largo   M 3.60   2.37  7.13  9.19   October 2019
## 2698 C.corindum North_Key_Largo   M 5.91   2.86  7.62 10.64   October 2019
## 2701 C.corindum North_Key_Largo   F 7.58   3.23  8.24 11.90   October 2019
## 2704  K.elegans     Lake_Placid   M 5.30   3.16  8.59 11.62   October 2019
## 2705  K.elegans     Lake_Placid   F 7.58   3.10  8.07 11.40   October 2019
## 2706  K.elegans     Lake_Placid   F 7.75   3.60  9.68 13.39   October 2019
## 2707  K.elegans     Lake_Placid   M 5.61   3.02  8.38 11.54   October 2019
## 2709  K.elegans     Lake_Placid   F 6.97   3.64 10.09 13.49   October 2019
## 2710  K.elegans     Lake_Placid   F 7.64   3.51  9.50 13.20   October 2019
## 2711  K.elegans     Lake_Placid   F 8.79   3.96 10.25 14.29   October 2019
## 2712  K.elegans     Lake_Placid   M 5.83   3.22  8.29 11.55   October 2019
## 2713  K.elegans     Lake_Placid   F 7.99   3.65 10.04 13.85   October 2019
## 2716  K.elegans     Lake_Placid   F 7.64   3.51  9.40 12.83   October 2019
## 2717  K.elegans     Lake_Placid   F 7.04   3.56  9.86 12.73   October 2019
## 2718  K.elegans     Lake_Placid   F 7.35   3.29  8.79 12.27   October 2019
## 2719  K.elegans     Lake_Placid   M 5.41   2.90  8.04 10.86   October 2019
## 2720  K.elegans     Lake_Placid   F 8.51   3.85 10.32 14.10   October 2019
## 2721  K.elegans     Lake_Placid   F 7.72   3.54  9.30 12.79   October 2019
## 2722  K.elegans     Lake_Placid   M 5.69   3.33  9.49 12.73   October 2019
## 2723  K.elegans     Lake_Placid   M 5.74   2.99  8.38 11.33   October 2019
## 2724  K.elegans     Lake_Placid   F 7.97   3.86  9.85 13.47   October 2019
## 2725  K.elegans     Lake_Placid   M 5.73   3.27  9.02 12.22   October 2019
## 2726  K.elegans     Lake_Placid   M 5.46   3.04  8.09 11.18   October 2019
## 2727  K.elegans     Lake_Placid   F 7.86   3.28  8.98 12.41   October 2019
## 2728  K.elegans     Lake_Placid   M 5.87   3.23  8.59 11.76   October 2019
## 2730  K.elegans     Lake_Placid   F 8.19   3.58  9.47 13.32   October 2019
## 2731  K.elegans     Lake_Placid   M 5.78   3.19  8.86 11.93   October 2019
## 2733  K.elegans     Lake_Placid   M 5.55   2.98  8.23 11.32   October 2019
## 2734  K.elegans     Lake_Placid   F 7.79   3.72  9.73 13.44   October 2019
## 2735  K.elegans     Lake_Placid   F 7.70   3.27  9.00 12.50   October 2019
## 2736  K.elegans     Lake_Placid   M 5.92   3.34  8.90 11.94   October 2019
## 2737  K.elegans     Lake_Placid   M 6.08   3.41  8.60 11.88   October 2019
## 2738  K.elegans     Lake_Placid   F 7.43   3.51  9.38 12.71   October 2019
## 2739  K.elegans     Lake_Placid   F 7.97   3.47  9.65 13.23   October 2019
## 2740  K.elegans     Lake_Placid   M 5.70   2.71  7.56 10.58   October 2019
## 2741  K.elegans     Lake_Placid   M 5.45   2.74  7.52 10.31   October 2019
## 2742  K.elegans     Lake_Placid   M 5.66   3.08  7.97 10.97   October 2019
## 2743  K.elegans     Lake_Placid   M 6.15   3.27  8.47 11.54   October 2019
## 2744  K.elegans     Lake_Placid   M 6.20   3.12  8.73 11.82   October 2019
## 2745  K.elegans     Lake_Placid   M 5.62   3.07  8.09 11.08   October 2019
## 2747  K.elegans      Lake_Wales   F 6.97   3.45  9.61 12.86   October 2019
## 2748  K.elegans      Lake_Wales   F 7.62   3.49  9.78 13.42   October 2019
## 2749  K.elegans      Lake_Wales   F 8.27   3.77 10.10 13.86   October 2019
## 2752  K.elegans      Lake_Wales   M 6.16   3.22  8.75 11.93   October 2019
## 2754  K.elegans      Lake_Wales   F 7.72   3.54 10.05 13.24   October 2019
## 2756  K.elegans      Lake_Wales   M 5.54   2.64  5.53  8.33   October 2019
## 2757  K.elegans      Lake_Wales   M 5.51   3.18  8.44 11.46   October 2019
## 2758  K.elegans      Lake_Wales   F 8.10   3.90 10.31 14.12   October 2019
## 2759  K.elegans      Lake_Wales   M 5.85   3.20  8.94 12.08   October 2019
## 2760  K.elegans      Lake_Wales   F 8.11   3.68  9.99 13.67   October 2019
## 2761  K.elegans      Lake_Wales   F 7.52   3.39  9.67 13.10   October 2019
## 2763  K.elegans      Lake_Wales   M 5.61   2.98  8.03 11.21   October 2019
## 2764  K.elegans      Lake_Wales   M 5.76   3.23  8.37 11.35   October 2019
## 2765  K.elegans      Lake_Wales   F 8.25   3.82 10.40 14.32   October 2019
## 2767  K.elegans      Lake_Wales   M 5.65   3.09  8.35 11.43   October 2019
## 2768  K.elegans      Lake_Wales   F 7.92   3.49  9.17 12.87   October 2019
## 2769  K.elegans      Lake_Wales   F 6.98   3.88  9.70 13.06   October 2019
## 2772  K.elegans        Leesburg   F 8.27   3.71 10.48 14.35   October 2019
## 2773  K.elegans        Leesburg   F 8.13   3.71  9.98 13.78   October 2019
## 2774  K.elegans        Leesburg   F 8.15   3.47  9.36 13.06   October 2019
## 2777  K.elegans        Leesburg   M 5.22   2.80  7.42 10.60   October 2019
## 2779  K.elegans        Leesburg   F 7.49   3.25  8.54 11.88   October 2019
## 2780  K.elegans        Leesburg   M 5.65   3.06  8.46 11.52   October 2019
## 2781  K.elegans        Leesburg   M 5.67   2.94  7.15 10.36   October 2019
## 2782  K.elegans        Leesburg   F 8.21   3.90 10.35 13.85   October 2019
## 2784  K.elegans        Leesburg   M 5.53   2.99  8.42 11.40   October 2019
## 2785  K.elegans        Leesburg   M 5.85   2.99  8.04 11.10   October 2019
## 2786  K.elegans        Leesburg   M 5.23   2.75  7.36 10.14   October 2019
## 2787  K.elegans        Leesburg   F 8.20   3.66  9.55 13.17   October 2019
## 2788  K.elegans        Leesburg   M 5.97   2.69  6.04  8.88   October 2019
## 2789  K.elegans        Leesburg   M 5.76   3.28  8.84 11.73   October 2019
## 2791  K.elegans        Leesburg   F 7.59   3.65  9.85 12.89   October 2019
## 2792  K.elegans        Leesburg   M 6.05   3.12  8.66 11.77   October 2019
## 2794  K.elegans        Leesburg   F 8.42   3.91 10.56 14.66   October 2019
## 2795  K.elegans        Leesburg   F 7.79   3.69  9.86 13.21   October 2019
## 2797  K.elegans        Leesburg   M 6.04   3.25  8.34 11.57   October 2019
## 2798 C.corindum North_Key_Largo   F 8.10   3.42  8.88 12.66   October 2019
## 2799 C.corindum North_Key_Largo   M 6.23   2.94  7.76 10.94   October 2019
## 2800 C.corindum North_Key_Largo   F 8.26   3.77 10.11 13.74   October 2019
## 2801 C.corindum North_Key_Largo   F 8.74   3.43  8.99 12.55   October 2019
## 2802 C.corindum North_Key_Largo   M 5.92   3.07  8.41 11.38   October 2019
## 2806 C.corindum North_Key_Largo   M 6.60   2.89  7.98 11.27   October 2019
## 2807 C.corindum North_Key_Largo   M 6.31   3.09  8.15 11.11   October 2019
## 2808 C.corindum North_Key_Largo   M 6.62   2.99  8.62 11.57   October 2019
## 2810 C.corindum North_Key_Largo   M 6.19   2.84  7.69 10.69   October 2019
## 2812 C.corindum North_Key_Largo   M 6.56   3.06  8.04 10.92   October 2019
## 2813 C.corindum North_Key_Largo   F 8.98   3.68  9.06 12.81   October 2019
## 2816 C.corindum North_Key_Largo   M 6.03   3.04  8.25 11.01   October 2019
## 2820 C.corindum North_Key_Largo   F 7.51   3.00  8.21 11.68   October 2019
## 2823 C.corindum North_Key_Largo   F 7.79   3.45  9.24 12.54   October 2019
## 2826 C.corindum North_Key_Largo   F 8.86   3.75  9.60 13.42   October 2019
## 2830 C.corindum North_Key_Largo   F 9.07   3.66  9.48 13.11   October 2019
## 2831 C.corindum North_Key_Largo   F 8.57   3.59  8.91 12.73   October 2019
## 2833 C.corindum North_Key_Largo   M 6.34   2.91  8.08 11.25   October 2019
## 2834 C.corindum North_Key_Largo   F 7.66   3.16  8.36 11.67   October 2019
## 2835 C.corindum North_Key_Largo   F 8.64   3.99  9.71 13.56   October 2019
## 2836 C.corindum North_Key_Largo   F 9.09   3.66  9.75 13.43   October 2019
## 2837 C.corindum North_Key_Largo   F 7.79   3.37  8.52 12.15   October 2019
## 2839 C.corindum North_Key_Largo   F 8.77   3.51  9.26 12.35   October 2019
## 2841 C.corindum North_Key_Largo   F 9.07   3.67  9.91 13.69   October 2019
## 2842 C.corindum North_Key_Largo   F 8.22   3.50  8.73 12.27   October 2019
## 2844 C.corindum North_Key_Largo   F 8.40   3.46  9.33 12.94   October 2019
## 2845 C.corindum North_Key_Largo   F 8.50   3.75  9.46 13.32   October 2019
## 2847 C.corindum North_Key_Largo   M 6.23   3.10  8.29 11.01   October 2019
## 2848 C.corindum North_Key_Largo   F 9.25   3.93 10.08 13.78   October 2019
## 2850 C.corindum North_Key_Largo   M 6.60   3.23  8.34 11.71   October 2019
## 2851 C.corindum North_Key_Largo   M 6.16   3.10  8.34 11.57   October 2019
## 2853 C.corindum North_Key_Largo   M 6.28   3.11  8.59 11.75   October 2019
## 2854 C.corindum North_Key_Largo   F 6.56   3.19  8.32 11.34   October 2019
## 2855 C.corindum North_Key_Largo   M 5.95   3.05  8.21 11.33   October 2019
## 2856 C.corindum North_Key_Largo   F 8.85   3.30  8.85 12.36   October 2019
## 2859 C.corindum North_Key_Largo   M 6.66   3.23  8.63 11.63   October 2019
## 2860 C.corindum North_Key_Largo   F 9.35   3.78 10.19 14.01   October 2019
## 2862 C.corindum North_Key_Largo   M 5.69   2.88  7.83 10.83   October 2019
## 2863 C.corindum North_Key_Largo   M 6.17   3.24  8.40 11.61   October 2019
## 2864 C.corindum North_Key_Largo   M 6.49   3.29  8.87 12.41   October 2019
## 2868 C.corindum North_Key_Largo   F 8.61   3.68  9.53 13.47   October 2019
## 2869 C.corindum North_Key_Largo   M 5.73   2.85  7.25 10.10   October 2019
## 2871 C.corindum North_Key_Largo   M 5.94   3.07  7.99 10.94   October 2019
## 2878 C.corindum North_Key_Largo   F 8.43   3.32  8.88 12.02   October 2019
## 2884 C.corindum  Plantation_Key   F 8.50   3.67  9.20 12.91   October 2019
## 2886 C.corindum  Plantation_Key   M 6.01   2.97  7.62 10.51   October 2019
## 2887 C.corindum  Plantation_Key   F 7.76   3.44  9.12 12.56   October 2019
## 2891 C.corindum  Plantation_Key   M 6.36   3.53  9.33 11.98   October 2019
## 2892 C.corindum  Plantation_Key   F 8.10   3.32  8.38 11.68   October 2019
## 2893 C.corindum  Plantation_Key   M 5.87   2.70  7.40 10.53   October 2019
## 2895 C.corindum  Plantation_Key   F 9.08   3.88  9.80 13.68   October 2019
## 2896 C.corindum  Plantation_Key   M 5.72   2.97  7.96 11.05   October 2019
## 2897  K.elegans     Gainesville   M 6.03   3.36  8.90 12.29  February 2020
## 2899  K.elegans     Gainesville   M 5.18   3.05  8.23 11.06  February 2020
## 2900  K.elegans     Gainesville   M 5.65   3.05  8.35 11.34  February 2020
## 2901  K.elegans     Gainesville   M 5.56   3.10  8.23 11.32  February 2020
## 2904  K.elegans     Gainesville   M 5.61   3.31  8.84 11.93  February 2020
## 2905  K.elegans     Gainesville   M 5.65   2.99  7.95 11.06  February 2020
## 2906  K.elegans     Gainesville   M 5.34   2.80  7.67 10.67  February 2020
## 2907  K.elegans     Gainesville   F 6.49   3.22  8.96 12.25  February 2020
## 2908  K.elegans     Gainesville   M 5.67   2.97  8.31 11.47  February 2020
## 2911  K.elegans     Gainesville   M 5.23   3.08  8.14 11.03  February 2020
## 2912  K.elegans     Gainesville   M 5.12   3.03  7.77 10.64  February 2020
## 2914  K.elegans     Gainesville   F 6.65   3.52  9.59 12.99  February 2020
## 2917  K.elegans     Gainesville   M 5.26   3.02  8.11 11.26  February 2020
## 2919  K.elegans     Gainesville   M 5.07   2.90  8.04 10.80  February 2020
## 2921  K.elegans     Gainesville   M 6.11   3.14  7.87 10.81  February 2020
## 2923  K.elegans     Gainesville   M 5.02   2.83  7.44 10.22  February 2020
## 2929  K.elegans     Gainesville   M 6.13   3.44  9.16 12.60  February 2020
## 2930  K.elegans     Gainesville   F 5.25   3.07  8.26 11.03  February 2020
## 2931  K.elegans     Gainesville   M 5.22   3.16  8.30 11.16  February 2020
## 2932  K.elegans     Gainesville   M 5.51   3.08  8.28 11.13  February 2020
## 2933  K.elegans       Homestead   M 5.59   2.84  7.50 10.55  February 2020
## 2934  K.elegans       Homestead   F 7.47   3.82  9.66 13.31  February 2020
## 2935  K.elegans       Homestead   F 7.70   3.53  9.43 12.83  February 2020
## 2936  K.elegans       Homestead   F 6.14   2.95  7.81 11.09  February 2020
## 2937  K.elegans       Homestead   F 7.74   3.38  9.09 12.86  February 2020
## 2939  K.elegans       Homestead   M 5.14   2.55  7.08  9.77  February 2020
## 2940  K.elegans       Homestead   F 7.83   3.40  8.98 12.67  February 2020
## 2944  K.elegans       Homestead   M 5.17   2.69  6.93  9.64  February 2020
## 2945  K.elegans       Homestead   M 5.32   2.57  7.47 10.35  February 2020
## 2947  K.elegans       Homestead   F 7.01   3.25  8.17 11.63  February 2020
## 2948  K.elegans       Homestead   F 6.63   3.15  8.18 11.58  February 2020
## 2949  K.elegans       Homestead   F 7.09   3.13  8.73 12.08  February 2020
## 2950  K.elegans       Homestead   M 5.27   2.55  7.03  9.72  February 2020
## 2951  K.elegans       Homestead   M 5.19   2.75  7.24  9.97  February 2020
## 2952  K.elegans       Homestead   F 6.98   3.15  8.23 11.59  February 2020
## 2953  K.elegans       Homestead   M 5.81   2.80  7.91 10.81  February 2020
## 2954  K.elegans       Homestead   F 7.68   3.76 10.40 14.34  February 2020
## 2955  K.elegans       Homestead   F 6.21   3.04  8.11 11.33  February 2020
## 2956  K.elegans       Homestead   M 5.19   2.61  6.48  9.30  February 2020
## 2957  K.elegans       Homestead   M 5.42   2.78  7.72 10.74  February 2020
## 2958  K.elegans       Homestead   M 5.49   2.65  7.22 10.07  February 2020
## 2959  K.elegans       Homestead   M 5.19   2.68  7.12  9.99  February 2020
## 2960  K.elegans       Homestead   M 4.98   2.49  6.24  8.84  February 2020
## 2964  K.elegans       Homestead   M 5.13   2.89  7.42 10.08  February 2020
## 2965  K.elegans       Homestead   M 5.04   3.25  8.62 11.62  February 2020
## 2970  K.elegans       Homestead   F 7.26   3.06  8.52 11.96  February 2020
## 2971  K.elegans       Homestead   M 5.54   2.84  7.72 10.60  February 2020
## 2972  K.elegans       Homestead   M 5.62   3.04  8.29 11.42  February 2020
## 2973  K.elegans       Homestead   M 5.40   3.29  8.90 11.88  February 2020
## 2974  K.elegans       Homestead   M 5.73   3.11  8.39 11.14  February 2020
## 2975 C.corindum       Key_Largo   M 5.88   3.14  8.39 11.68  February 2020
## 2976 C.corindum       Key_Largo   F 8.79   3.86 10.07 14.00  February 2020
## 2978 C.corindum       Key_Largo   M 5.25   2.72  7.87 10.31  February 2020
## 2979 C.corindum       Key_Largo   M 6.53   3.08  8.08 11.31  February 2020
## 2980 C.corindum       Key_Largo   F 6.33   3.33  8.78 12.13  February 2020
## 2981 C.corindum       Key_Largo   M 6.18   3.03  8.04 10.94  February 2020
## 2982 C.corindum       Key_Largo   M 6.08   2.97  7.80 10.95  February 2020
## 2983 C.corindum       Key_Largo   F 7.54   3.41  8.42 11.99  February 2020
## 2984 C.corindum       Key_Largo   M 8.73   3.59  9.71 13.59  February 2020
## 2985 C.corindum       Key_Largo   F 8.45   3.65  9.24 13.04  February 2020
## 2986 C.corindum       Key_Largo   F 7.94   3.27  8.52 11.96  February 2020
## 2987 C.corindum       Key_Largo   M 5.63   3.01  8.64 11.48  February 2020
## 2988 C.corindum       Key_Largo   M 5.98   3.19  8.32 11.62  February 2020
## 2990 C.corindum       Key_Largo   F 7.57   3.33  8.38 12.11  February 2020
## 2991 C.corindum       Key_Largo   M 5.57   3.01  8.53 11.47  February 2020
## 2992 C.corindum       Key_Largo   F 6.96   3.18  8.31 11.78  February 2020
## 2994 C.corindum       Key_Largo   F 7.70   3.36  9.15 12.65  February 2020
## 2995 C.corindum       Key_Largo   M 6.11   3.01  8.43 11.32  February 2020
## 2997 C.corindum       Key_Largo   F 7.98   3.57  8.95 12.72  February 2020
## 2998 C.corindum       Key_Largo   M 6.16   3.09  8.38 11.50  February 2020
## 2999 C.corindum       Key_Largo   M 6.54   2.99  8.03 11.33  February 2020
## 3000 C.corindum       Key_Largo   F 8.10   3.79  9.83 13.54  February 2020
## 3001 C.corindum       Key_Largo   M 5.94   3.04  8.70 11.56  February 2020
## 3002 C.corindum       Key_Largo   F 7.62   3.14  8.16 11.49  February 2020
## 3004 C.corindum       Key_Largo   M 5.72   3.06  8.40 11.36  February 2020
## 3005 C.corindum       Key_Largo   M 5.63   3.02  8.20 11.33  February 2020
## 3006 C.corindum       Key_Largo   F 7.92   3.47  9.99 13.92  February 2020
## 3007 C.corindum       Key_Largo   M 5.37   3.08  8.01 10.80  February 2020
## 3009 C.corindum       Key_Largo   F 7.51   3.31  9.00 12.27  February 2020
## 3010 C.corindum       Key_Largo   F 7.84   3.37  8.61 12.22  February 2020
## 3011 C.corindum       Key_Largo   M 6.22   3.13  8.02 11.31  February 2020
## 3013 C.corindum       Key_Largo   M 6.69   3.25  8.53 11.76  February 2020
## 3014 C.corindum       Key_Largo   M 5.56   3.35  8.80 12.08  February 2020
## 3015 C.corindum       Key_Largo   M 5.35   3.23  8.61 11.71  February 2020
## 3016 C.corindum       Key_Largo   M 5.98   3.12  8.40 11.48  February 2020
## 3019 C.corindum       Key_Largo   M 5.40   2.63  7.17  9.73  February 2020
## 3020 C.corindum       Key_Largo   M 6.28   3.28  8.80 11.96  February 2020
## 3045 C.corindum       Key_Largo   F 8.83   3.54  9.23 12.92  February 2020
## 3050 C.corindum       Key_Largo   F 7.22   3.60  9.21 12.56  February 2020
## 3052 C.corindum       Key_Largo   M 6.09   2.92  5.42  8.52  February 2020
## 3053 C.corindum       Key_Largo   M 6.48   3.18  8.06 11.20  February 2020
## 3054  K.elegans     Lake_Placid   M 5.46   3.00  8.23 11.57  February 2020
## 3055  K.elegans     Lake_Placid   F 8.31   3.71  9.77 13.61  February 2020
## 3056  K.elegans     Lake_Placid   F 6.44   3.38  9.42 12.99  February 2020
## 3057  K.elegans     Lake_Placid   M 5.85   2.98  8.35 11.53  February 2020
## 3058  K.elegans     Lake_Placid   M 5.31   2.96  7.77 10.89  February 2020
## 3059  K.elegans     Lake_Placid   F 6.06   3.20  9.63 12.74  February 2020
## 3060  K.elegans     Lake_Placid   F 6.55   3.27  9.44 12.93  February 2020
## 3061  K.elegans     Lake_Placid   F 6.38   3.46  9.10 12.75  February 2020
## 3062  K.elegans     Lake_Placid   M 4.77   2.62  6.73  9.41  February 2020
## 3063  K.elegans     Lake_Placid   F 7.38   3.40  9.21 12.73  February 2020
## 3064  K.elegans     Lake_Placid   M 5.88   3.05  9.00 12.01  February 2020
## 3066  K.elegans     Lake_Placid   M 5.41   3.01  8.68 11.48  February 2020
## 3067  K.elegans     Lake_Placid   M 5.41   2.99  8.30 11.21  February 2020
## 3068  K.elegans     Lake_Placid   F 8.01   3.46  9.39 12.63  February 2020
## 3069  K.elegans     Lake_Placid   M 5.18   2.87  7.29 10.06  February 2020
## 3070  K.elegans     Lake_Placid   F 6.44   3.36  8.43 11.86  February 2020
## 3071  K.elegans     Lake_Placid   M 5.17   2.76  7.84 10.65  February 2020
## 3072  K.elegans     Lake_Placid   M 5.56   3.10  8.99 12.33  February 2020
## 3073  K.elegans     Lake_Placid   M 5.58   2.84  7.80 10.96  February 2020
## 3074  K.elegans     Lake_Placid   F 6.98   3.71  9.85 13.50  February 2020
## 3075  K.elegans     Lake_Placid   M 5.43   2.88  7.66 10.56  February 2020
## 3076  K.elegans     Lake_Placid   M 5.37   2.84  7.73 10.82  February 2020
## 3077  K.elegans     Lake_Placid   F 7.92   3.37  9.53 13.16  February 2020
## 3078  K.elegans     Lake_Placid   F 6.96   3.59  9.18 12.80  February 2020
## 3079  K.elegans     Lake_Placid   M 5.56   2.96  7.91 10.89  February 2020
## 3080  K.elegans     Lake_Placid   F 7.61   3.44  9.09 12.74  February 2020
## 3081  K.elegans     Lake_Placid   F 6.51   3.36  8.88 12.00  February 2020
## 3082  K.elegans     Lake_Placid   M 5.14   2.75  6.93  9.83  February 2020
## 3083  K.elegans     Lake_Placid   M 5.45   2.95  7.64 10.72  February 2020
## 3084  K.elegans     Lake_Placid   M 5.72   3.00  8.36 11.56  February 2020
## 3085  K.elegans     Lake_Placid   M 5.46   2.98  7.47 10.46  February 2020
## 3086  K.elegans     Lake_Placid   M 5.24   3.14  8.71 11.91  February 2020
## 3087  K.elegans     Lake_Placid   M 5.26   2.93  7.93 10.82  February 2020
## 3088  K.elegans     Lake_Placid   F 6.88   3.50  9.48 12.92  February 2020
## 3089  K.elegans     Lake_Placid   M 5.37   2.85  7.63 10.52  February 2020
## 3090  K.elegans     Lake_Placid   F 7.67   3.68  9.78 13.35  February 2020
## 3091  K.elegans     Lake_Placid   M 4.97   2.72  7.62 10.18  February 2020
## 3092  K.elegans     Lake_Placid   M 5.34   2.85  8.15 11.03  February 2020
## 3093  K.elegans     Lake_Placid   M 5.14   2.73  6.58  9.23  February 2020
## 3094  K.elegans     Lake_Placid   F 8.05   3.76 10.18 13.84  February 2020
## 3095  K.elegans     Lake_Placid   M 5.30   3.01  8.36 11.44  February 2020
## 3096  K.elegans     Lake_Placid   M 6.31   3.38  8.83 11.96  February 2020
## 3097  K.elegans      Lake_Wales   M 5.41   2.98  8.03 11.18  February 2020
## 3098  K.elegans      Lake_Wales   F 7.75   3.58  9.34 13.26  February 2020
## 3099  K.elegans      Lake_Wales   M 5.46   2.90  8.21 11.14  February 2020
## 3100  K.elegans      Lake_Wales   F 7.44   3.33  8.98 12.36  February 2020
## 3101  K.elegans      Lake_Wales   F 7.50   3.28  8.63 12.08  February 2020
## 3102  K.elegans      Lake_Wales   F 6.99   3.39  8.98 12.65  February 2020
## 3103  K.elegans      Lake_Wales   F 7.59   3.31  9.21 12.82  February 2020
## 3105  K.elegans      Lake_Wales   M 5.31   2.68  7.65 10.44  February 2020
## 3107  K.elegans      Lake_Wales   M 5.27   2.74  8.04 10.94  February 2020
## 3108  K.elegans      Lake_Wales   M 5.73   2.99  7.88 11.13  February 2020
## 3109  K.elegans      Lake_Wales   M 5.96   3.37  8.93 12.11  February 2020
## 3110  K.elegans      Lake_Wales   F 7.02   3.53  9.35 12.62  February 2020
## 3111  K.elegans      Lake_Wales   F 7.16   3.37  9.22 12.66  February 2020
## 3112  K.elegans      Lake_Wales   M 5.54   3.14  8.32 11.48  February 2020
## 3113  K.elegans      Lake_Wales   M 5.16   3.04  7.99 11.03  February 2020
## 3115  K.elegans      Lake_Wales   F 7.25   3.85  9.90 13.48  February 2020
## 3116  K.elegans      Lake_Wales   M 5.47   3.21  8.33 11.21  February 2020
## 3117  K.elegans      Lake_Wales   M 6.26   2.89  8.07 10.93  February 2020
## 3118  K.elegans      Lake_Wales   F 6.44   3.63  9.21 12.82  February 2020
## 3119  K.elegans      Lake_Wales   M 5.40   2.90  8.08 11.02  February 2020
## 3120  K.elegans      Lake_Wales   F 7.60   3.44  9.21 12.52  February 2020
## 3121  K.elegans      Lake_Wales   M 5.05   2.79  7.91 10.82  February 2020
## 3122  K.elegans      Lake_Wales   F 6.44   3.68  9.52 12.91  February 2020
## 3123  K.elegans      Lake_Wales   F 7.58   3.36  9.24 12.63  February 2020
## 3124  K.elegans      Lake_Wales   M 5.54   3.00  7.98 10.91  February 2020
## 3125  K.elegans      Lake_Wales   M 5.29   2.67  7.47 10.23  February 2020
## 3126  K.elegans      Lake_Wales   F 7.28   3.32  9.46 12.61  February 2020
## 3127  K.elegans      Lake_Wales   F 7.68   3.28  9.13 12.48  February 2020
## 3128  K.elegans      Lake_Wales   F 6.61   3.59  9.57 12.89  February 2020
## 3129  K.elegans      Lake_Wales   M 5.56   2.85  7.61 10.46  February 2020
## 3131  K.elegans      Lake_Wales   F 6.74   3.23  8.77 11.70  February 2020
## 3132  K.elegans      Lake_Wales   M 5.85   3.09  8.13 11.21  February 2020
## 3133  K.elegans      Lake_Wales   M 5.87   3.05  8.64 11.58  February 2020
## 3134  K.elegans      Lake_Wales   M 5.51   2.79  7.19  9.69  February 2020
## 3135  K.elegans      Lake_Wales   M 7.41   3.36  9.13 12.34  February 2020
## 3136  K.elegans      Lake_Wales   M 5.73   3.13  8.61 11.54  February 2020
## 3137  K.elegans      Lake_Wales   F 6.47   3.54  9.08 12.37  February 2020
## 3138  K.elegans      Lake_Wales   M 5.48   2.98  8.32 11.23  February 2020
## 3139  K.elegans      Lake_Wales   M 5.22   2.87  7.38 10.01  February 2020
## 3140  K.elegans      Lake_Wales   M 5.37   2.88  8.24 10.93  February 2020
## 3141  K.elegans      Lake_Wales   F 7.85   3.60  9.49 12.76  February 2020
## 3142  K.elegans      Lake_Wales   M 5.02   2.68  8.13 10.86  February 2020
## 3143  K.elegans      Lake_Wales   F 6.70   3.35  8.00 11.37  February 2020
## 3144  K.elegans      Lake_Wales   F 6.50   3.49  8.99 12.20  February 2020
## 3145  K.elegans      Lake_Wales   M 5.64   3.04  8.22 10.85  February 2020
## 3146  K.elegans      Lake_Wales   M 5.04   2.86  7.87 10.61  February 2020
## 3147  K.elegans        Leesburg   M 5.32   2.94  7.39 10.85  February 2020
## 3148  K.elegans        Leesburg   M 5.89   3.32  8.37 11.70  February 2020
## 3149  K.elegans        Leesburg   M 5.11   2.81  7.98 10.98  February 2020
## 3150  K.elegans        Leesburg   M 5.42   2.98  8.49 11.19  February 2020
## 3151  K.elegans        Leesburg   M 5.59   2.99  7.82 11.02  February 2020
## 3152  K.elegans        Leesburg   M 5.35   2.92  7.45 10.24  February 2020
## 3153  K.elegans        Leesburg   F 6.14   3.66  8.79 12.14  February 2020
## 3154  K.elegans        Leesburg   F 6.17   2.97  8.04 11.35  February 2020
## 3155  K.elegans        Leesburg   F 6.07   3.45  8.93 12.33  February 2020
## 3157  K.elegans        Leesburg   M 5.14   2.72  6.94  9.98  February 2020
## 3158  K.elegans        Leesburg   M 5.72   3.10  8.59 11.72  February 2020
## 3159  K.elegans        Leesburg   F 6.47   3.50  9.35 12.66  February 2020
## 3160  K.elegans        Leesburg   M 5.54   2.94  8.29 11.12  February 2020
## 3162  K.elegans        Leesburg   F 6.41   3.00  7.97 11.17  February 2020
## 3164  K.elegans        Leesburg   M 4.87   2.96  7.94 10.68  February 2020
## 3165  K.elegans        Leesburg   M 5.53   3.19  8.56 11.64  February 2020
## 3167  K.elegans        Leesburg   M 5.51   3.31  8.82 12.06  February 2020
## 3168  K.elegans        Leesburg   M 5.05   2.89  8.15 10.94  February 2020
## 3169  K.elegans        Leesburg   M 5.00   2.99  8.36 11.05  February 2020
## 3170  K.elegans        Leesburg   F 6.54   3.46  9.50 13.09  February 2020
## 3171  K.elegans        Leesburg   F 6.31   3.47  9.17 12.53  February 2020
## 3172  K.elegans        Leesburg   M 5.60   3.10  7.95 11.32  February 2020
## 3175  K.elegans        Leesburg   M 5.40   3.05  8.11 10.98  February 2020
## 3176  K.elegans        Leesburg   M 4.99   2.96  7.30 10.28  February 2020
## 3177 C.corindum North_Key_Largo   M 6.03   2.90  7.68 10.67  February 2020
## 3178 C.corindum North_Key_Largo   M 5.75   2.94  8.30 11.40  February 2020
## 3180 C.corindum North_Key_Largo   M 6.07   3.24  8.40 11.40  February 2020
## 3181 C.corindum North_Key_Largo   F 8.03   3.42  9.08 12.77  February 2020
## 3182 C.corindum North_Key_Largo   F 7.15   3.01  7.91 11.29  February 2020
## 3183 C.corindum North_Key_Largo   F 7.58   3.55  8.72 12.28  February 2020
## 3185 C.corindum North_Key_Largo   F 6.24   2.98  7.58 10.98  February 2020
## 3186 C.corindum North_Key_Largo   F 7.56   3.26  8.18 11.71  February 2020
## 3187 C.corindum North_Key_Largo   F 8.12   3.25  8.28 11.71  February 2020
## 3189 C.corindum North_Key_Largo   M 6.05   3.38  8.39 11.52  February 2020
## 3190 C.corindum North_Key_Largo   M 6.21   3.25  8.58 11.64  February 2020
## 3191 C.corindum North_Key_Largo   M 5.99   2.99  7.55 10.80  February 2020
## 3192 C.corindum North_Key_Largo   M 5.95   3.10  8.20 11.48  February 2020
## 3193 C.corindum North_Key_Largo   F 7.44   3.07  7.86 11.20  February 2020
## 3194 C.corindum North_Key_Largo   M 5.72   2.82  7.46 10.43  February 2020
## 3196 C.corindum North_Key_Largo   F 7.85   3.73  9.71 13.20  February 2020
## 3197 C.corindum North_Key_Largo   F 7.19   3.32  8.56 12.21  February 2020
## 3198 C.corindum North_Key_Largo   M 6.30   3.04  8.07 11.40  February 2020
## 3199 C.corindum North_Key_Largo   F 8.18   3.48  8.57 12.28  February 2020
## 3200 C.corindum North_Key_Largo   F 8.45   3.95 10.00 14.16  February 2020
## 3201 C.corindum North_Key_Largo   M 6.23   2.97  7.76 10.83  February 2020
## 3202 C.corindum North_Key_Largo   M 5.58   2.77  7.22 10.02  February 2020
## 3203 C.corindum North_Key_Largo   M 6.41   3.25  8.62 11.65  February 2020
## 3205 C.corindum North_Key_Largo   M 6.13   2.99  7.43 10.56  February 2020
## 3206 C.corindum North_Key_Largo   M 6.44   3.09  8.24 11.42  February 2020
## 3207 C.corindum North_Key_Largo   M 5.91   3.22  8.43 11.41  February 2020
## 3209 C.corindum North_Key_Largo   M 5.94   2.92  7.98 10.85  February 2020
## 3210 C.corindum North_Key_Largo   F 9.02   3.71  9.47 13.43  February 2020
## 3211 C.corindum North_Key_Largo   M 5.93   2.94  8.16 11.08  February 2020
## 3212 C.corindum North_Key_Largo   F 8.29   3.64  9.99 13.81  February 2020
## 3213 C.corindum North_Key_Largo   F 8.44   3.70  9.31 13.44  February 2020
## 3214 C.corindum North_Key_Largo   F 8.64   3.27  8.90 12.61  February 2020
## 3215 C.corindum North_Key_Largo   F 7.58   3.32  8.58 12.21  February 2020
## 3216 C.corindum North_Key_Largo   M 6.07   3.15  8.18 11.15  February 2020
## 3218 C.corindum North_Key_Largo   M 5.75   2.92  7.78 10.93  February 2020
## 3219 C.corindum North_Key_Largo   F 9.08   3.71  9.68 13.81  February 2020
## 3220 C.corindum North_Key_Largo   F 6.91   3.02  7.75 11.25  February 2020
## 3221 C.corindum North_Key_Largo   F 9.87   4.14 10.47 14.34  February 2020
## 3222 C.corindum North_Key_Largo   M 5.78   2.83  7.38 10.46  February 2020
## 3223 C.corindum North_Key_Largo   M 6.09   2.90  8.08 10.86  February 2020
## 3224 C.corindum North_Key_Largo   M 6.88   3.16  8.84 12.06  February 2020
## 3226 C.corindum North_Key_Largo   F 8.04   3.32  8.36 11.72  February 2020
## 3227 C.corindum North_Key_Largo   F 7.41   3.79  9.98 13.66  February 2020
## 3229 C.corindum North_Key_Largo   F 7.61   3.82  9.80 13.86  February 2020
## 3230 C.corindum North_Key_Largo   M 5.72   3.06  7.80 10.72  February 2020
## 3231 C.corindum North_Key_Largo   M 6.85   3.08  8.92 11.99  February 2020
## 3232 C.corindum North_Key_Largo   M 5.34   2.93  7.63 10.63  February 2020
## 3234 C.corindum North_Key_Largo   F 7.90   3.33  8.50 12.37  February 2020
## 3235 C.corindum North_Key_Largo   M 6.39   3.18  8.41 11.86  February 2020
## 3236 C.corindum North_Key_Largo   F 8.17   3.48  9.37 13.09  February 2020
## 3237 C.corindum North_Key_Largo   M 5.78   2.94  7.97 11.14  February 2020
## 3238 C.corindum North_Key_Largo   M 5.94   2.89  7.83 11.00  February 2020
## 3239 C.corindum North_Key_Largo   M 6.40   3.08  8.37 11.69  February 2020
## 3240 C.corindum North_Key_Largo   F 6.39   2.88  7.56 10.70  February 2020
## 3241 C.corindum North_Key_Largo   F 7.35   3.74  9.77 13.20  February 2020
## 3242 C.corindum North_Key_Largo   M 5.58   3.11  8.65 11.52  February 2020
## 3243 C.corindum North_Key_Largo   M 6.17   2.61  8.01 10.53  February 2020
## 3244 C.corindum North_Key_Largo   F 8.51   3.67  9.15 12.95  February 2020
## 3246 C.corindum North_Key_Largo   M 5.42   2.82  7.60 10.59  February 2020
## 3247 C.corindum North_Key_Largo   M 6.16   3.20  8.37 11.71  February 2020
## 3248 C.corindum North_Key_Largo   M 6.15   3.04  8.24 11.48  February 2020
## 3249 C.corindum North_Key_Largo   F 7.99   3.50  8.71 12.31  February 2020
## 3250 C.corindum North_Key_Largo   M 6.38   2.99  7.66 10.66  February 2020
## 3251 C.corindum North_Key_Largo   M 5.77   2.91  7.40 10.49  February 2020
## 3252 C.corindum North_Key_Largo   M 6.35   3.17  8.53 11.52  February 2020
## 3253 C.corindum North_Key_Largo   M 5.95   3.11  8.26 11.56  February 2020
## 3254 C.corindum North_Key_Largo   M 5.79   3.06  8.16 11.14  February 2020
## 3255 C.corindum North_Key_Largo   F 8.15   4.04 10.52 14.50  February 2020
## 3256 C.corindum North_Key_Largo   F 9.17   3.73  9.38 12.86  February 2020
## 3257 C.corindum North_Key_Largo   F 8.28   3.46  8.71 12.32  February 2020
## 3258 C.corindum North_Key_Largo   M 6.41   3.02  8.13 11.12  February 2020
## 3259 C.corindum North_Key_Largo   M 6.67   3.20  8.46 11.40  February 2020
## 3260 C.corindum North_Key_Largo   M 5.71   3.34  8.49 11.61  February 2020
## 3261 C.corindum North_Key_Largo   F 9.44   4.00 10.17 14.13  February 2020
## 3262 C.corindum North_Key_Largo   F 6.90   3.05  7.79 11.22  February 2020
## 3263 C.corindum North_Key_Largo   F 8.04   3.53  9.18 12.63  February 2020
## 3264 C.corindum North_Key_Largo   F 8.49   3.25  8.52 12.17  February 2020
## 3265 C.corindum North_Key_Largo   F 8.54   3.50  9.35 13.05  February 2020
## 3266 C.corindum North_Key_Largo   M 5.97   2.88  7.99 10.86  February 2020
## 3267 C.corindum North_Key_Largo   M 5.84   2.87  7.55 10.62  February 2020
## 3268 C.corindum North_Key_Largo   M 5.78   2.85  7.10 10.18  February 2020
## 3269 C.corindum North_Key_Largo   F 8.32   3.39  9.09 12.47  February 2020
## 3270 C.corindum North_Key_Largo   M 5.54   3.01  7.68 10.57  February 2020
## 3271 C.corindum North_Key_Largo   F 7.84   3.49  9.01 12.59  February 2020
## 3273 C.corindum North_Key_Largo   F 7.53   3.27  8.13 12.13  February 2020
## 3274 C.corindum North_Key_Largo   M 6.05   3.03  8.31 11.52  February 2020
## 3279 C.corindum North_Key_Largo   M 5.47   2.92  8.29 11.29  February 2020
## 3280 C.corindum North_Key_Largo   M 5.84   2.98  7.83 10.88  February 2020
## 3281 C.corindum North_Key_Largo   M 6.16   3.01  7.88 10.90  February 2020
## 3282 C.corindum North_Key_Largo   M 5.51   2.75  7.11  9.94  February 2020
## 3283 C.corindum North_Key_Largo   M 6.43   3.27  8.85 11.84  February 2020
## 3285 C.corindum North_Key_Largo   M 5.69   2.94  7.27 10.38  February 2020
## 3287 C.corindum North_Key_Largo   M 5.98   2.76  7.15 10.13  February 2020
## 3288 C.corindum North_Key_Largo   M 5.24   2.49  6.06  8.89  February 2020
## 3289 C.corindum North_Key_Largo   M 5.52   2.64  7.17  9.95  February 2020
## 3290 C.corindum North_Key_Largo   F 8.50   3.28  8.65 12.35  February 2020
## 3291 C.corindum North_Key_Largo   M 6.08   2.98  7.63 10.70  February 2020
## 3292 C.corindum North_Key_Largo   M 5.77   2.77  7.30 10.22  February 2020
## 3293 C.corindum North_Key_Largo   M 5.99   3.26  8.25 11.39  February 2020
## 3294 C.corindum North_Key_Largo   M 6.12   3.10  8.56 11.66  February 2020
## 3295 C.corindum North_Key_Largo   M 5.78   3.00  8.35 11.27  February 2020
## 3296 C.corindum North_Key_Largo   M 6.07   2.82  7.53 10.73  February 2020
## 3297 C.corindum North_Key_Largo   M 6.56   2.91  8.02 11.22  February 2020
## 3300 C.corindum North_Key_Largo   M 6.65   3.31  8.30 11.50  February 2020
## 3301 C.corindum North_Key_Largo   M 5.83   2.69  7.11 10.03  February 2020
## 3302 C.corindum North_Key_Largo   F 7.32   3.05  8.34 11.68  February 2020
## 3303 C.corindum North_Key_Largo   M 6.17   2.91  7.57 10.44  February 2020
## 3304 C.corindum North_Key_Largo   M 6.03   3.05  8.01 11.00  February 2020
## 3305 C.corindum North_Key_Largo   M 5.81   2.78  7.32 10.12  February 2020
## 3306 C.corindum North_Key_Largo   F 6.35   3.03  7.38 10.93  February 2020
## 3307 C.corindum North_Key_Largo   F 7.51   3.09  7.91 11.42  February 2020
## 3308 C.corindum North_Key_Largo   M 6.13   3.22  8.68 11.83  February 2020
## 3309 C.corindum North_Key_Largo   M 6.59   2.96  7.87 11.05  February 2020
## 3311 C.corindum North_Key_Largo   M 6.30   2.99  7.93 11.11  February 2020
## 3312 C.corindum North_Key_Largo   M 5.93   3.03  7.89 10.85  February 2020
## 3313 C.corindum North_Key_Largo   M 5.92   3.35  8.93 12.04  February 2020
## 3314 C.corindum North_Key_Largo   F 6.79   3.61  9.77 13.39  February 2020
## 3315 C.corindum North_Key_Largo   M 5.68   2.78  7.72 10.29  February 2020
## 3316 C.corindum North_Key_Largo   M 6.23   3.34  8.89 12.04  February 2020
## 3317 C.corindum North_Key_Largo   M 5.86   2.91  7.99 11.06  February 2020
## 3318 C.corindum North_Key_Largo   M 5.56   3.24  8.16 11.42  February 2020
## 3319 C.corindum North_Key_Largo   M 6.29   2.90  7.78 10.89  February 2020
## 3320 C.corindum North_Key_Largo   M 5.33   2.95  7.70 10.75  February 2020
## 3321 C.corindum North_Key_Largo   M 5.97   2.92  8.10 10.84  February 2020
## 3322 C.corindum North_Key_Largo   F 7.71   3.47  8.42 11.78  February 2020
## 3323 C.corindum North_Key_Largo   F 8.23   3.76  9.40 13.00  February 2020
## 3325 C.corindum North_Key_Largo   F 8.59   3.68  9.92 13.59  February 2020
## 3327 C.corindum North_Key_Largo   M 5.50   3.02  8.18 11.11  February 2020
## 3332 C.corindum North_Key_Largo   F 8.79   3.65  9.15 12.49  February 2020
## 3339 C.corindum North_Key_Largo   M 5.76   2.86  7.33 10.26  February 2020
## 3340 C.corindum North_Key_Largo   F 8.53   3.58  8.92 12.60  February 2020
## 3341 C.corindum North_Key_Largo   F 8.21   3.60  9.06 12.65  February 2020
## 3342 C.corindum North_Key_Largo   M 5.89   3.00  7.67 10.66  February 2020
## 3343 C.corindum North_Key_Largo   M 5.36   2.69  7.59 10.46  February 2020
## 3348 C.corindum North_Key_Largo   F 7.97   3.67  9.36 12.93  February 2020
## 3350 C.corindum North_Key_Largo   M 5.41   3.18  8.00 11.02  February 2020
## 3351 C.corindum North_Key_Largo   F 8.51   3.69  9.63 13.47  February 2020
## 3379 C.corindum North_Key_Largo   F 8.22   3.70  9.58 13.14  February 2020
## 3391 C.corindum North_Key_Largo   F 7.32   3.25  8.61 11.88  February 2020
## 3394 C.corindum North_Key_Largo   F 6.57   3.20  8.36 11.92  February 2020
## 3396 C.corindum North_Key_Largo   M 6.48   3.19  8.69 11.99  February 2020
## 3398 C.corindum North_Key_Largo   F 7.53   3.25  8.75 12.00  February 2020
## 3399 C.corindum North_Key_Largo   F 8.37   3.85 10.09 14.09  February 2020
## 3400 C.corindum North_Key_Largo   M 5.85   2.83  6.92  9.83  February 2020
## 3401 C.corindum North_Key_Largo   F 8.25   3.54  8.75 12.44  February 2020
## 3402 C.corindum North_Key_Largo   M 5.40   3.19  8.22 11.20  February 2020
## 3404 C.corindum  Plantation_Key   M 5.64   3.12  7.88 11.09  February 2020
## 3405 C.corindum  Plantation_Key   M 5.75   3.36  8.48 11.90  February 2020
## 3406 C.corindum  Plantation_Key   M 6.21   2.97  7.87 10.90  February 2020
## 3407 C.corindum  Plantation_Key   F 7.47   3.32  8.33 11.89  February 2020
## 3408 C.corindum  Plantation_Key   M 5.76   3.04  8.03 11.00  February 2020
## 3409 C.corindum  Plantation_Key   F 8.19   3.64  9.30 13.02  February 2020
## 3410 C.corindum  Plantation_Key   F 8.39   3.54  9.38 13.09  February 2020
## 3411 C.corindum  Plantation_Key   M 6.10   3.39  9.06 12.14  February 2020
## 3412 C.corindum  Plantation_Key   M 6.09   3.28  8.56 12.21  February 2020
## 3414 C.corindum  Plantation_Key   M 5.69   3.11  8.41 11.60  February 2020
## 3415 C.corindum  Plantation_Key   F 8.26   3.53  9.00 12.53  February 2020
## 3418 C.corindum  Plantation_Key   F 7.29   3.16  8.15 11.51  February 2020
## 3419 C.corindum  Plantation_Key   M 5.67   3.13  8.17 11.13  February 2020
## 3420 C.corindum  Plantation_Key   M 6.06   3.26  8.50 11.93  February 2020
## 3421 C.corindum  Plantation_Key   F 6.76   3.59  9.29 12.87  February 2020
## 3422 C.corindum  Plantation_Key   M 5.61   2.70  7.20  9.96  February 2020
## 3423 C.corindum  Plantation_Key   M 5.72   3.05  8.13 11.52  February 2020
## 3424 C.corindum  Plantation_Key   M 5.59   3.13  8.35 11.45  February 2020
## 3425 C.corindum  Plantation_Key   M 5.82   3.34  8.52 11.93  February 2020
## 3426 C.corindum  Plantation_Key   M 5.79   2.70  7.65 10.51  February 2020
## 3428 C.corindum  Plantation_Key   M 5.51   2.82  7.41 10.82  February 2020
## 3429 C.corindum  Plantation_Key   M 5.77   2.86  8.00 11.06  February 2020
## 3430 C.corindum  Plantation_Key   M 5.99   2.96  7.84 10.83  February 2020
## 3431 C.corindum  Plantation_Key   F 9.02   3.45  9.36 13.06  February 2020
## 3432 C.corindum  Plantation_Key   M 6.20   3.15  8.75 11.74  February 2020
## 3433 C.corindum  Plantation_Key   M 5.54   3.20  8.52 11.64  February 2020
## 3434 C.corindum  Plantation_Key   M 5.53   2.95  8.12 10.90  February 2020
## 3435 C.corindum  Plantation_Key   M 6.25   3.16  8.57 11.73  February 2020
## 3436 C.corindum  Plantation_Key   M 5.52   2.88  7.48 10.51  February 2020
## 3437 C.corindum  Plantation_Key   F 8.04   3.40  9.11 12.60  February 2020
## 3438 C.corindum  Plantation_Key   M 5.84   2.93  7.77 10.76  February 2020
## 3439 C.corindum  Plantation_Key   M 6.12   2.94  8.00 11.00  February 2020
## 3440 C.corindum  Plantation_Key   M 5.63   2.77  7.55 10.32  February 2020
## 3441 C.corindum  Plantation_Key   M 6.30   3.31  8.78 11.97  February 2020
## 3442 C.corindum  Plantation_Key   M 5.70   2.91  7.79 10.77  February 2020
## 3443 C.corindum  Plantation_Key   F 7.77   3.30  9.02 12.44  February 2020
## 3444 C.corindum  Plantation_Key   F 6.58   3.21  8.32 11.70  February 2020
## 3445 C.corindum  Plantation_Key   M 6.23   3.11  8.31 11.45  February 2020
## 3448 C.corindum  Plantation_Key   F 8.53   3.30  8.48 11.98  February 2020
## 3451 C.corindum  Plantation_Key   M 6.09   2.68  7.57 10.67  February 2020
## 3452 C.corindum  Plantation_Key   F 9.01   3.77 10.53 13.86  February 2020
## 3453 C.corindum  Plantation_Key   M 6.17   3.16  8.55 11.85  February 2020
## 3454 C.corindum  Plantation_Key   M 5.45   2.65  7.20 10.09  February 2020
## 3461 C.corindum  Plantation_Key   F 6.48   3.33  9.03 12.18  February 2020
## 3462 C.corindum  Plantation_Key   M 6.22   3.44  8.17 11.65  February 2020
## 3466 C.corindum  Plantation_Key   M 5.77   2.75  7.82 10.62  February 2020
## 3473 C.corindum  Plantation_Key   F 7.50   3.86 10.09 13.60  February 2020
## 3476 C.corindum  Plantation_Key   M 6.08   3.05  8.06 11.28   October 2019
## 3477 C.corindum  Plantation_Key   F 6.43   3.18  8.05 11.22   October 2019
## 3478 C.corindum  Plantation_Key   F 8.59   3.73  9.18 12.82   October 2019
## 3479 C.corindum  Plantation_Key   M 6.60   3.33  8.48 11.61   October 2019
## 3480 C.corindum  Plantation_Key   M 6.23   3.25  8.48 11.67   October 2019
## 3481 C.corindum  Plantation_Key   F 8.12   3.36  8.71 12.20   October 2019
## 3482 C.corindum  Plantation_Key   F 9.33   4.06 10.48 14.57   October 2019
## 3483 C.corindum  Plantation_Key   M 5.97   2.89  7.70 10.97   October 2019
## 3485 C.corindum  Plantation_Key   F 8.02   3.60  9.55 13.19   October 2019
## 3486 C.corindum  Plantation_Key   M 6.04   3.00  7.99 11.01   October 2019
## 3487 C.corindum  Plantation_Key   M 6.36   2.93  7.71 10.62   October 2019
## 3488 C.corindum  Plantation_Key   M 6.19   2.91  7.95 10.87   October 2019
## 3489 C.corindum  Plantation_Key   M 6.17   3.13  8.38 11.48   October 2019
## 3492 C.corindum  Plantation_Key   M 6.10   3.07  7.85 11.02   October 2019
## 3493 C.corindum  Plantation_Key   F 8.14   3.67  9.15 12.75   October 2019
## 3496 C.corindum  Plantation_Key   F 8.54   3.62  9.27 12.71   October 2019
## 3498 C.corindum  Plantation_Key   M 5.76   2.90  8.39 11.18   October 2019
## 3499 C.corindum  Plantation_Key   M 5.98   2.93  8.01 10.81   October 2019
## 3500 C.corindum  Plantation_Key   M 5.96   3.02  8.10 11.24   October 2019
## 3501 C.corindum  Plantation_Key   F 8.37   3.51  9.58 13.02   October 2019
## 3502 C.corindum  Plantation_Key   F 8.33   3.28  8.90 12.08   October 2019
## 3503  K.elegans       Homestead   M 5.64   3.25  8.64 11.54   October 2019
## 3504  K.elegans       Homestead   M 5.50   3.10  8.11 11.09   October 2019
## 3505  K.elegans       Homestead   F 8.16   3.69  9.64 12.97   October 2019
## 3506  K.elegans       Homestead   M 5.85   2.98  8.39 11.44   October 2019
## 3507  K.elegans       Homestead   F 7.62   3.62  9.65 12.95   October 2019
## 3508  K.elegans       Homestead   F 7.69   3.55  9.52 12.94   October 2019
## 3509  K.elegans       Homestead   M 6.07   3.36  9.52 12.53   October 2019
## 3510  K.elegans       Homestead   F 7.76   3.68  9.58 13.12   October 2019
## 3511  K.elegans       Homestead   F 7.57   3.65  9.37 12.73   October 2019
## 3513  K.elegans       Homestead   M 5.51   2.98  7.68 10.54   October 2019
## 3514  K.elegans       Homestead   F 7.96   3.62 10.02 13.60   October 2019
## 3515 C.corindum North_Key_Largo   F 8.72   3.85 10.29 14.16   October 2019
## 3516 C.corindum North_Key_Largo   F 9.02   3.76  9.98 13.29   October 2019
## 3517 C.corindum North_Key_Largo   F 7.97   3.42  9.15 12.72   October 2019
## 3518 C.corindum North_Key_Largo   F 9.67   3.81 10.21 13.96   October 2019
## 3519 C.corindum North_Key_Largo   M 6.80   3.32  9.09 12.43   October 2019
## 3520 C.corindum North_Key_Largo   F 8.52   3.59 10.04 13.44   October 2019
## 3521 C.corindum North_Key_Largo   M 6.20   3.31  8.93 12.10   October 2019
## 3522 C.corindum North_Key_Largo   F 8.45   3.45  9.00 12.28   October 2019
## 3523 C.corindum North_Key_Largo   F 8.73   3.71  9.92 13.28   October 2019
## 3524 C.corindum North_Key_Largo   F   NA   3.45  9.02 12.58   October 2019
## 3525 C.corindum North_Key_Largo   M 6.18   3.06  8.37 11.44   October 2019
## 3526 C.corindum North_Key_Largo   F 7.95   3.51  8.96 12.38   October 2019
## 3528 C.corindum North_Key_Largo   M 6.01   2.98  8.15 11.23   October 2019
## 3529 C.corindum North_Key_Largo   F 8.05   3.68  9.00 12.68   October 2019
## 3530 C.corindum North_Key_Largo   M 5.93   2.90  7.74 10.61   October 2019
## 3531 C.corindum North_Key_Largo   F 8.69   3.65  9.30 12.76   October 2019
## 3532 C.corindum North_Key_Largo   M 5.67   2.75  7.22 10.06   October 2019
## 3533 C.corindum North_Key_Largo   F 8.75   3.69  9.63 13.05   October 2019
## 3534 C.corindum North_Key_Largo   M 5.65   2.94  7.89 10.77   October 2019
## 3535 C.corindum North_Key_Largo   F 8.89   3.68  9.26 12.64   October 2019
## 3536 C.corindum North_Key_Largo   M 6.10   3.19  8.48 11.62   October 2019
## 3537 C.corindum North_Key_Largo   F 8.13   3.38  8.78 12.31   October 2019
## 3538 C.corindum North_Key_Largo   M 5.90   3.13  8.31 11.15   October 2019
## 3539 C.corindum North_Key_Largo   M 6.95   3.66  9.36 12.42   October 2019
## 3540 C.corindum North_Key_Largo   M 6.87   3.50  9.37 12.72   October 2019
## 3541  K.elegans     Lake_Placid   M 5.16   2.59  7.27 10.03   October 2019
## 3542  K.elegans     Lake_Placid   F 8.19   3.88 10.19 13.56   October 2019
## 3543  K.elegans     Lake_Placid   M 5.65   2.90  7.59 10.56   October 2019
## 3544  K.elegans     Lake_Placid   M 5.73   3.19  9.15 12.22   October 2019
## 3545  K.elegans     Lake_Placid   F 7.96   3.55 10.10 13.72   October 2019
## 3546  K.elegans     Lake_Placid   F 7.61   3.35  9.04 12.49   October 2019
## 3547  K.elegans     Lake_Placid   F 8.55   3.51  9.41 13.04   October 2019
## 3549  K.elegans     Lake_Placid   M 5.34   3.29  8.27 11.53   October 2019
## 3550  K.elegans     Lake_Placid   F 8.58   4.01 10.29 14.13   October 2019
## 3551  K.elegans     Lake_Placid   M 5.67   3.13  8.83 11.97   October 2019
## 3552  K.elegans     Lake_Placid   F 7.28   3.39  9.20 12.70   October 2019
## 3553  K.elegans     Lake_Placid   M 5.45   2.73  7.55 10.53   October 2019
## 3554  K.elegans     Lake_Placid   F 7.77   3.57  9.38 13.25   October 2019
## 3555  K.elegans     Lake_Placid   M 5.60   3.18  8.56 11.45   October 2019
## 3556  K.elegans     Lake_Placid   F 7.01   3.26  8.98 12.27   October 2019
## 3557  K.elegans     Lake_Placid   F 8.30   3.56  9.82 13.30   October 2019
## 3558  K.elegans     Lake_Placid   M 5.52   3.03  8.63 11.83   October 2019
## 3559  K.elegans     Lake_Placid   F 8.05   3.98 10.30 13.68   October 2019
## 3560  K.elegans     Lake_Placid   M 5.45   2.98  8.20 11.36   October 2019
## 3561  K.elegans     Lake_Placid   M 5.23   2.70  7.29 10.23   October 2019
## 3562 C.corindum North_Key_Largo   M 6.13   3.31  8.68 11.69   October 2019
## 3563 C.corindum North_Key_Largo   F 7.86   3.39  8.71 12.27   October 2019
## 3564 C.corindum North_Key_Largo   M 6.32   2.97  8.00 11.25   October 2019
## 3565 C.corindum North_Key_Largo   M 5.96   3.11  8.01 11.00   October 2019
## 3566  K.elegans       Homestead   F 6.67   3.83 10.20 13.74  December 2016
## 3570 C.corindum       Key_Largo   M 6.63   3.48  9.29 12.39   October 2019
## 3571 C.corindum       Key_Largo   M 5.74   3.33  9.12 12.96   October 2019
## 3572 C.corindum       Key_Largo   F 7.99   3.39  8.82 12.51   October 2019
## 3573 C.corindum       Key_Largo   M 6.48   3.08  8.66 11.97   October 2019
## 3574 C.corindum       Key_Largo   F 9.08   3.80  9.96 13.69   October 2019
## 3575 C.corindum       Key_Largo   F 8.51   3.39  8.87 12.56   October 2019
## 3576 C.corindum       Key_Largo   F 8.10   3.33  8.81 12.46   October 2019
## 3577 C.corindum North_Key_Largo   M 6.46   3.17  8.67 11.75   October 2019
## 3578 C.corindum North_Key_Largo   F 9.38   3.79  9.78 13.51   October 2019
## 3579 C.corindum North_Key_Largo   F 7.63   3.31  8.50 11.85   October 2019
## 3581 C.corindum North_Key_Largo   M 6.08   3.08  8.26 11.10   October 2019
## 3583 C.corindum       Key_Largo   M 6.24   3.11  8.16 10.98   October 2019
## 3584 C.corindum       Key_Largo   F 7.62   3.56 10.13 13.24   October 2019
## 3585 C.corindum       Key_Largo   M 6.21   2.72  7.57 10.43   October 2019
## 3586 C.corindum North_Key_Largo   F 8.70   3.65  8.90 12.61   October 2019
## 3587 C.corindum North_Key_Largo   F 6.85   3.46  8.84 12.45   October 2019
## 3588 C.corindum North_Key_Largo   M 6.29   3.17  8.33 11.61   October 2019
## 3589 C.corindum North_Key_Largo   F 9.20   3.71  9.88 13.59   October 2019
## 3590 C.corindum North_Key_Largo   M 6.10   2.79  7.52 10.50   October 2019
## 3591 C.corindum North_Key_Largo   F 8.19   3.33  8.56 12.04   October 2019
## 3592  K.elegans      Lake_Wales   F 7.30   3.55  8.87 12.19       May 2019
## 3594  K.elegans      Lake_Wales   F 5.39   3.24  9.04 11.42       May 2019
## 3595  K.elegans      Lake_Wales   F 8.77   3.47  9.86 13.11       May 2019
## 3596  K.elegans      Lake_Wales   F 5.54   3.56  9.36 11.96       May 2019
## 3597  K.elegans      Lake_Wales   F 5.61   2.90  7.85 10.94       May 2019
## 3598  K.elegans      Lake_Wales   F 5.41   3.07  8.31 11.49       May 2019
## 3599  K.elegans      Lake_Wales   F 5.38   2.85  7.73 10.62       May 2019
## 3600  K.elegans      Lake_Wales   F 5.30   2.84  7.11 10.18       May 2019
## 3601  K.elegans      Lake_Wales   M 5.53   3.19  8.23 11.62       May 2019
## 3602  K.elegans      Lake_Wales   F 7.60   3.42  9.66 12.71       May 2019
## 3603  K.elegans      Lake_Wales   M 6.16   3.20  8.74 11.26       May 2019
## 3604  K.elegans      Lake_Wales   F 5.68   3.02  8.76 11.36       May 2019
## 3605  K.elegans      Lake_Wales   F 5.81   3.44  7.86 10.52       May 2019
## 3606  K.elegans      Lake_Wales   F 7.61   3.63  9.68 13.46       May 2019
## 3607  K.elegans      Lake_Wales   F 5.33   3.25  8.99 11.19       May 2019
## 3608  K.elegans      Lake_Wales   F 8.11   3.81 10.20 13.80       May 2019
## 3609  K.elegans      Lake_Wales   F 5.83   2.75  7.85 10.90       May 2019
## 3610  K.elegans      Lake_Wales   F 5.58   3.06  7.93 10.52       May 2019
## 3611  K.elegans      Lake_Wales   F 6.99   3.29  7.65 11.30       May 2019
## 3612  K.elegans      Lake_Wales   F 5.63   3.27  8.88 12.22       May 2019
## 3613  K.elegans      Lake_Wales   F 5.45   3.13  7.90 11.27       May 2019
## 3614  K.elegans      Lake_Wales   M 5.93   3.02  8.30 10.91       May 2019
## 3615  K.elegans      Lake_Wales   M 5.55   2.82  9.16 12.70       May 2019
## 3616  K.elegans      Lake_Wales   F 7.93   3.35  9.39 12.66       May 2019
## 3617  K.elegans      Lake_Wales   F 7.61   3.43  9.91 13.19       May 2019
## 3618  K.elegans      Lake_Wales   F 7.29   3.83  9.95 12.89       May 2019
## 3619  K.elegans      Lake_Wales   F 8.09   3.91  9.54 13.15       May 2019
## 3620  K.elegans      Lake_Wales   M 7.90   3.83 10.57 13.70       May 2019
## 3621  K.elegans      Lake_Wales   M 6.01   3.05  8.95 11.03       May 2019
## 3622  K.elegans      Lake_Wales   F 8.21   3.66  9.95 13.04       May 2019
## 3623  K.elegans      Lake_Wales   F 5.89   3.32  8.94 11.76       May 2019
## 3624  K.elegans      Lake_Wales   F 5.76   3.15  8.24 10.60       May 2019
## 3625  K.elegans      Lake_Wales   M 5.91   2.96  8.98 11.53       May 2019
## 3626  K.elegans      Lake_Wales   F 6.94   3.15  8.86 11.75       May 2019
## 3627  K.elegans      Lake_Wales   M 5.98   3.23  8.82 12.13       May 2019
## 3628  K.elegans      Lake_Wales   F 5.72   3.30  7.89 11.83       May 2019
## 3629  K.elegans      Lake_Wales   F 6.52   3.07  8.38 11.57       May 2019
## 3630  K.elegans      Lake_Wales   F 7.74   3.78 10.61 14.29       May 2019
## 3631  K.elegans      Lake_Wales   M 8.29   3.87  9.00 13.42       May 2019
## 3632  K.elegans      Lake_Wales   M 6.01   3.20  8.47 11.67       May 2019
## 3633  K.elegans      Lake_Wales   F 7.97   3.77 10.33 13.31       May 2019
## 3634  K.elegans      Lake_Wales   M 4.91   2.50  5.52  8.20       May 2019
## 3635  K.elegans      Lake_Wales   F 5.38   2.41  5.35  7.90       May 2019
## 3636  K.elegans      Lake_Wales   F 7.94   3.46 10.47 13.06       May 2019
## 3637  K.elegans      Lake_Wales   F 5.03   3.33  9.30 11.71       May 2019
## 3638  K.elegans      Lake_Wales   M 7.70   3.75  9.54 14.35       May 2019
## 3639  K.elegans      Lake_Wales   F 8.74   3.83 10.33 13.42       May 2019
## 3640  K.elegans      Lake_Wales   M 5.27   2.82  7.38 11.04       May 2019
## 3641  K.elegans      Lake_Wales   F 8.03   4.02 10.32 14.91       May 2019
## 3642  K.elegans      Lake_Wales   F 5.89   3.16  7.98 11.63       May 2019
## 3643  K.elegans      Lake_Wales   F 7.58   3.31  9.31 12.52       May 2019
## 3644  K.elegans      Lake_Wales   F 6.15   2.68  8.15 10.95       May 2019
## 3645  K.elegans      Lake_Wales   M 5.86   3.10  9.14 13.17       May 2019
## 3646  K.elegans        Leesburg   M 4.95   2.94  8.49 11.75       May 2019
## 3647  K.elegans        Leesburg   F 7.61   3.69  9.49 12.75       May 2019
## 3648  K.elegans        Leesburg   F 6.04   3.38  8.12 11.15       May 2019
## 3649  K.elegans        Leesburg   F 8.20   3.76 10.23 13.56       May 2019
## 3650  K.elegans        Leesburg   F 5.63   3.00  7.86 11.44       May 2019
## 3651  K.elegans        Leesburg   M 6.32   3.07  9.06 12.65       May 2019
## 3652  K.elegans        Leesburg   F 5.98   3.14  9.34 11.99       May 2019
## 3653  K.elegans        Leesburg   F 5.64   2.64  7.54 11.01       May 2019
## 3655  K.elegans        Leesburg   F 6.80   3.26  9.16 12.20       May 2019
## 3656  K.elegans        Leesburg   M 8.02   4.11 10.30 13.75       May 2019
## 3658  K.elegans        Leesburg   M 8.45   3.79  9.95 13.41       May 2019
## 3659  K.elegans        Leesburg   F 5.74   2.78  7.73 10.04       May 2019
## 3660  K.elegans        Leesburg   F 8.01   3.75  9.69 13.09       May 2019
## 3661  K.elegans        Leesburg   F 5.52   3.02  8.25 11.29       May 2019
## 3662  K.elegans        Leesburg   F 5.72   3.07  8.20 10.99       May 2019
## 3663  K.elegans        Leesburg   M 5.92   3.40  8.73 11.31       May 2019
## 3664  K.elegans        Leesburg   F 5.49   3.13  9.05 11.96       May 2019
## 3665  K.elegans        Leesburg   F 5.65   3.09  9.00 11.77       May 2019
## 3666  K.elegans        Leesburg   M 5.69   3.09  8.69 11.57       May 2019
## 3667  K.elegans        Leesburg   M 6.63   3.60  7.98 11.85       May 2019
## 3668  K.elegans        Leesburg   F 6.15   3.32  9.87 11.65       May 2019
## 3669  K.elegans        Leesburg   F 6.59   3.46  8.66 12.22       May 2019
## 3670  K.elegans        Leesburg   F 6.45   2.89  8.35 11.29       May 2019
## 3671  K.elegans        Leesburg   F 8.15   3.58  9.72 12.69       May 2019
## 3672  K.elegans        Leesburg   F 6.74   2.99  7.77 11.37       May 2019
## 3673  K.elegans        Leesburg   F 7.56   3.68  8.50 11.51       May 2019
## 3674  K.elegans        Leesburg   F 6.49   3.46  8.32 11.53       May 2019
## 3675  K.elegans        Leesburg   F 5.46   2.75  7.71 10.50       May 2019
## 3676  K.elegans        Leesburg   F 6.77   3.49  8.87 11.43       May 2019
## 3677  K.elegans        Leesburg   F 7.32   3.86  9.21 12.80       May 2019
## 3678  K.elegans        Leesburg   F 6.26   3.33  8.34 11.48       May 2019
## 3680  K.elegans        Leesburg   F 5.73   3.29  8.17 10.88       May 2019
## 3681  K.elegans        Leesburg   F 8.16   3.80  8.72 12.91       May 2019
## 3682  K.elegans        Leesburg   M 7.92   3.68  9.96 13.18       May 2019
## 3683  K.elegans        Leesburg   F 5.22   2.56  4.47  7.37       May 2019
## 3684  K.elegans        Leesburg   F 6.61   3.47  8.06 11.23       May 2019
## 3685  K.elegans        Leesburg   M 7.55   3.34  9.36 12.18       May 2019
## 3686  K.elegans        Leesburg   F 5.68   3.12  8.47 11.10       May 2019
## 3687  K.elegans        Leesburg   F 6.65   3.31  9.43 12.84       May 2019
## 3688  K.elegans        Leesburg   F 7.11   3.62  8.37 11.98       May 2019
## 3689  K.elegans        Leesburg   F 5.72   3.26  8.98 11.43       May 2019
## 3690  K.elegans        Leesburg   F 6.46   3.28  9.18 12.11       May 2019
## 3691  K.elegans        Leesburg   M 5.84   3.46  8.42 11.28       May 2019
## 3692  K.elegans        Leesburg   F 4.99   3.36  8.48 11.44       May 2019
## 3693  K.elegans        Leesburg   F 6.26   3.31  8.11 11.90       May 2019
## 3694  K.elegans        Leesburg   M 5.64   3.66  9.15 11.84       May 2019
## 3695  K.elegans        Leesburg   F 6.78   3.90  9.55 13.74       May 2019
## 3696  K.elegans        Leesburg   F 6.17   3.85  8.72 12.44       May 2019
## 3698  K.elegans        Leesburg   M 6.20   3.92  8.52 12.01       May 2019
## 3700  K.elegans       Homestead   F 5.97   2.82  8.06 11.43       May 2019
## 3701  K.elegans       Homestead   F 7.89   3.57  9.70 13.07       May 2019
## 3703  K.elegans       Homestead   M 5.85   3.24  8.51 11.42       May 2019
## 3704  K.elegans       Homestead   F 6.26   3.40  8.65 11.52       May 2019
## 3705  K.elegans       Homestead   F 5.87   2.82  6.98 10.15       May 2019
## 3706  K.elegans       Homestead   M 9.11   3.93 10.39 14.08       May 2019
## 3707  K.elegans       Homestead   F 6.68   3.31  9.11 12.02       May 2019
## 3708  K.elegans       Homestead   M 7.33   3.56  9.04 11.92       May 2019
## 3709  K.elegans       Homestead   F 8.31   3.92 10.68 13.36       May 2019
## 3711  K.elegans       Homestead   F 8.65   3.71  9.41 12.93       May 2019
## 3712  K.elegans       Homestead   M 6.38   3.33  9.22 11.87       May 2019
## 3713  K.elegans       Homestead   F 5.57   2.98  7.95 10.96       May 2019
## 3714  K.elegans       Homestead   F 8.83   3.82  9.42 13.32       May 2019
## 3715  K.elegans       Homestead   F 8.02   3.76  9.93 13.00       May 2019
## 3716  K.elegans       Homestead   M 8.26   3.62  9.38 13.29       May 2019
## 3717  K.elegans       Homestead   M 7.27   3.95 10.48 13.81       May 2019
## 3718  K.elegans       Homestead   F 5.68   3.21  8.18 11.29       May 2019
## 3719  K.elegans       Homestead   M 6.41   3.64  9.17 11.88       May 2019
## 3720  K.elegans       Homestead   F 7.55   3.96 10.06 12.79       May 2019
## 3721  K.elegans       Homestead   F 8.43   3.61  9.64 12.68       May 2019
## 3722  K.elegans       Homestead   F 6.31   3.24  8.86 11.51       May 2019
## 3723  K.elegans       Homestead   F 7.20   3.65  9.93 12.99       May 2019
## 3724  K.elegans       Homestead   F 6.01   3.08  7.59 10.56       May 2019
## 3725  K.elegans       Homestead   F 5.78   3.37  8.62 10.77       May 2019
## 3726  K.elegans       Homestead   F 7.67   3.36  8.16 11.81       May 2019
## 3727  K.elegans       Homestead   F 6.60   3.31  9.31 12.23       May 2019
## 3728  K.elegans       Homestead   M 7.90   3.87 10.74 14.19       May 2019
## 3729  K.elegans       Homestead   F 5.82   3.25  9.40 11.46       May 2019
## 3731  K.elegans       Homestead   F 7.77   3.99  9.87 12.55       May 2019
## 3734  K.elegans       Homestead   M 5.70   3.04  8.01 11.09       May 2019
## 3735  K.elegans       Homestead   F 5.47   3.06  7.21 10.23       May 2019
## 3736  K.elegans       Homestead   F 4.67   3.18  7.20 10.56       May 2019
##      months_since_start season w_morph      lat      long
## 1                     0 spring       L 26.63387 -81.87980
## 2                     0 spring       L 26.63387 -81.87980
## 3                     0 spring       L 26.63387 -81.87980
## 4                     0 spring       L 26.63387 -81.87980
## 5                     0 spring       L 26.63387 -81.87980
## 6                     0 spring       L 26.63387 -81.87980
## 7                     0 spring       L 26.63387 -81.87980
## 8                     0 spring       L 26.63387 -81.87980
## 9                     0 spring       L 26.63387 -81.87980
## 10                    0 spring       L 26.63387 -81.87980
## 11                    0 spring       L 26.63387 -81.87980
## 12                    0 spring       L 26.63387 -81.87980
## 13                    0 spring       L 26.63387 -81.87980
## 14                    0 spring       L 26.63387 -81.87980
## 16                    0 spring       L 26.63387 -81.87980
## 17                    0 spring       L 26.63387 -81.87980
## 18                    0 spring       L 26.63387 -81.87980
## 19                    0 spring       L 26.63387 -81.87980
## 20                    0 spring       L 26.63387 -81.87980
## 21                    0 spring       L 26.63387 -81.87980
## 22                    0 spring       L 26.63387 -81.87980
## 23                    0 spring       L 26.63387 -81.87980
## 24                    0 spring       L 26.63387 -81.87980
## 25                    0 spring       L 26.63387 -81.87980
## 26                    0 spring       L 26.63387 -81.87980
## 104                   0 spring       L 25.57106 -80.45500
## 105                   0 spring       L 25.57106 -80.45500
## 106                   0 spring       L 25.57106 -80.45500
## 107                   0 spring       L 25.57106 -80.45500
## 109                   0 spring       L 25.57106 -80.45500
## 110                   0 spring       L 25.57106 -80.45500
## 111                   0 spring       L 25.57106 -80.45500
## 112                   0 spring       L 25.57106 -80.45500
## 114                   0 spring       L 25.57106 -80.45500
## 141                   0 spring       L 25.19515 -80.34592
## 142                   0 spring       L 25.19515 -80.34592
## 143                   0 spring       L 25.19515 -80.34592
## 144                   0 spring       L 25.19515 -80.34592
## 146                   0 spring       L 25.19515 -80.34592
## 147                   0 spring       L 25.19515 -80.34592
## 148                   0 spring       L 25.19515 -80.34592
## 149                   0 spring       L 25.19515 -80.34592
## 150                   0 spring       L 25.19515 -80.34592
## 152                   0 spring       L 25.19515 -80.34592
## 153                   0 spring       L 25.19515 -80.34592
## 202                   0 spring       L 27.93615 -81.57455
## 203                   0 spring       L 27.93615 -81.57455
## 204                   0 spring       L 27.93615 -81.57455
## 205                   0 spring       L 27.93615 -81.57455
## 206                   0 spring       L 27.93615 -81.57455
## 207                   0 spring       L 27.93615 -81.57455
## 208                   0 spring       L 27.93615 -81.57455
## 209                   0 spring       L 27.93615 -81.57455
## 210                   0 spring       L 27.93615 -81.57455
## 211                   0 spring       L 27.93615 -81.57455
## 213                   0 spring       L 27.93615 -81.57455
## 214                   0 spring       L 27.93615 -81.57455
## 215                   0 spring       L 27.93615 -81.57455
## 217                   0 spring       L 27.93615 -81.57455
## 219                   0 spring       L 27.93615 -81.57455
## 221                   0 spring       L 27.93615 -81.57455
## 222                   0 spring       L 27.93615 -81.57455
## 223                   0 spring       L 27.93615 -81.57455
## 224                   0 spring       L 27.93615 -81.57455
## 225                   0 spring       L 27.93615 -81.57455
## 226                   0 spring       L 27.93615 -81.57455
## 228                   0 spring       L 27.93615 -81.57455
## 229                   0 spring       L 27.93615 -81.57455
## 230                   0 spring       L 27.93615 -81.57455
## 837                  11 spring       L 25.12308 -80.41528
## 839                  11 spring       L 25.12308 -80.41528
## 840                  11 spring       L 25.12308 -80.41528
## 841                  11 spring       L 25.12308 -80.41528
## 844                  11 spring       L 25.12308 -80.41528
## 845                  11 spring       L 25.12308 -80.41528
## 847                  11 spring       L 27.90335 -81.58946
## 848                  11 spring       L 27.90335 -81.58946
## 849                  11 spring       L 27.90335 -81.58946
## 850                  11 spring       L 27.90335 -81.58946
## 851                  11 spring       L 27.90335 -81.58946
## 852                  11 spring       L 27.90335 -81.58946
## 853                  11 spring       L 27.90335 -81.58946
## 854                  11 spring       L 27.90335 -81.58946
## 856                  11 spring       L 27.90335 -81.58946
## 857                  11 spring       L 27.90335 -81.58946
## 858                  11 spring       L 27.90335 -81.58946
## 859                  11 spring       L 27.90335 -81.58946
## 860                  11 spring       L 27.90335 -81.58946
## 861                  11 spring       L 27.90335 -81.58946
## 862                  11 spring       L 27.90335 -81.58946
## 863                  11 spring       L 27.90335 -81.58946
## 865                  11 spring       L 27.90335 -81.58946
## 866                  11 spring       L 27.90335 -81.58946
## 867                  11 spring       L 27.90335 -81.58946
## 868                  11 spring       L 27.90335 -81.58946
## 870                  11 spring       L 27.90335 -81.58946
## 871                  11 spring       L 27.90335 -81.58946
## 872                  11 spring       L 27.90335 -81.58946
## 873                  11 spring       L 27.90335 -81.58946
## 874                  11 spring       L 27.90335 -81.58946
## 875                  11 spring       L 27.90335 -81.58946
## 877                  11 spring       L 27.90335 -81.58946
## 878                  11 spring       L 27.90335 -81.58946
## 879                  11 spring       L 27.90335 -81.58946
## 880                  11 spring       L 27.90335 -81.58946
## 881                  11 spring       L 27.90335 -81.58946
## 882                  11 spring       L 27.90335 -81.58946
## 883                  11 spring       L 27.90335 -81.58946
## 884                  11 spring       L 27.90335 -81.58946
## 886                  11 spring       L 27.90335 -81.58946
## 887                  11 spring       L 27.90335 -81.58946
## 888                  11 spring       L 27.90335 -81.58946
## 889                  11 spring       L 27.90335 -81.58946
## 890                  11 spring       L 27.90335 -81.58946
## 905                  11 spring       L 24.96448 -80.56739
## 907                  11 spring       L 24.96448 -80.56739
## 911                  11 spring       L 24.96448 -80.56739
## 912                  11 spring       L 24.96448 -80.56739
## 915                  11 spring       L 24.96448 -80.56739
## 917                  11 spring       L 24.96448 -80.56739
## 918                  11 spring       L 24.96448 -80.56739
## 975                  23 spring       L 25.12308 -80.41528
## 978                  23 spring       L 25.12308 -80.41528
## 986                  23 spring       L 25.12308 -80.41528
## 990                  23 spring       L 25.12308 -80.41528
## 993                  23 spring       L 25.12308 -80.41528
## 995                  23 spring       L 25.12308 -80.41528
## 996                  23 spring       L 25.12308 -80.41528
## 997                  23 spring       L 25.12308 -80.41528
## 1001                 23 spring       L 25.12308 -80.41528
## 1012                 23 spring       L 25.12308 -80.41528
## 1017                 23 spring       L 25.12308 -80.41528
## 1023                 23 spring       L 27.90335 -81.58946
## 1024                 23 spring       L 27.90335 -81.58946
## 1025                 23 spring       L 27.90335 -81.58946
## 1026                 23 spring       L 27.90335 -81.58946
## 1027                 23 spring       L 27.90335 -81.58946
## 1028                 23 spring       L 27.90335 -81.58946
## 1029                 23 spring       L 27.90335 -81.58946
## 1030                 23 spring       L 27.90335 -81.58946
## 1031                 23 spring       L 27.90335 -81.58946
## 1032                 23 spring       L 27.90335 -81.58946
## 1033                 23 spring       L 27.90335 -81.58946
## 1034                 23 spring       L 27.90335 -81.58946
## 1035                 23 spring       L 27.90335 -81.58946
## 1036                 23 spring       L 27.90335 -81.58946
## 1037                 23 spring       L 27.90335 -81.58946
## 1038                 23 spring       L 27.90335 -81.58946
## 1039                 23 spring       L 27.90335 -81.58946
## 1040                 23 spring       L 27.90335 -81.58946
## 1041                 23 spring       L 27.90335 -81.58946
## 1042                 23 spring       L 27.90335 -81.58946
## 1043                 23 spring       L 27.90335 -81.58946
## 1044                 23 spring       L 27.90335 -81.58946
## 1045                 23 spring       L 27.90335 -81.58946
## 1046                 23 spring       L 27.90335 -81.58946
## 1047                 23 spring       L 27.90335 -81.58946
## 1048                 23 spring       L 27.90335 -81.58946
## 1049                 23 spring       L 27.90335 -81.58946
## 1050                 23 spring       L 27.90335 -81.58946
## 1051                 23 spring       L 27.90335 -81.58946
## 1052                 23 spring       L 27.90335 -81.58946
## 1054                 23 spring       L 27.90335 -81.58946
## 1055                 23 spring       L 27.90335 -81.58946
## 1056                 23 spring       L 27.90335 -81.58946
## 1057                 23 spring       L 27.90335 -81.58946
## 1058                 23 spring       L 27.90335 -81.58946
## 1059                 23 spring       L 27.90335 -81.58946
## 1060                 23 spring       L 27.90335 -81.58946
## 1061                 23 spring       L 27.90335 -81.58946
## 1062                 23 spring       L 27.90335 -81.58946
## 1063                 23 spring       L 27.90335 -81.58946
## 1064                 23 spring       L 27.90335 -81.58946
## 1065                 23 spring       L 27.90335 -81.58946
## 1066                 23 spring       L 27.90335 -81.58946
## 1067                 23 spring       L 27.90335 -81.58946
## 1068                 23 spring       L 27.90335 -81.58946
## 1069                 23 spring       L 27.90335 -81.58946
## 1070                 23 spring       L 27.90335 -81.58946
## 1071                 23 spring       L 27.90335 -81.58946
## 1072                 23 spring       L 27.90335 -81.58946
## 1073                 23 spring       L 27.90335 -81.58946
## 1074                 23 spring       L 27.90335 -81.58946
## 1075                 23 spring       L 27.90335 -81.58946
## 1076                 23 spring       L 27.90335 -81.58946
## 1077                 23 spring       L 28.79602 -81.87777
## 1078                 23 spring       L 28.79602 -81.87777
## 1079                 23 spring       L 28.79602 -81.87777
## 1080                 23 spring       L 28.79602 -81.87777
## 1081                 23 spring       L 28.79602 -81.87777
## 1082                 23 spring       L 28.79602 -81.87777
## 1083                 23 spring       L 28.79602 -81.87777
## 1084                 23 spring       L 28.79602 -81.87777
## 1085                 23 spring       L 28.79602 -81.87777
## 1086                 23 spring       L 28.79602 -81.87777
## 1088                 23 spring       L 28.79602 -81.87777
## 1089                 23 spring       L 28.79602 -81.87777
## 1090                 23 spring       L 28.79602 -81.87777
## 1091                 23 spring       L 28.79602 -81.87777
## 1092                 23 spring       L 28.79602 -81.87777
## 1093                 23 spring       L 28.79602 -81.87777
## 1094                 23 spring       L 28.79602 -81.87777
## 1095                 23 spring       L 28.79602 -81.87777
## 1096                 23 spring       L 28.79602 -81.87777
## 1097                 23 spring       L 28.79602 -81.87777
## 1098                 23 spring       L 28.79602 -81.87777
## 1099                 23 spring       L 28.79602 -81.87777
## 1100                 23 spring       L 28.79602 -81.87777
## 1101                 23 spring       L 28.79602 -81.87777
## 1103                 23 spring       L 28.79602 -81.87777
## 1104                 23 spring       L 28.79602 -81.87777
## 1105                 23 spring       L 28.79602 -81.87777
## 1106                 23 spring       L 28.79602 -81.87777
## 1107                 23 spring       L 28.79602 -81.87777
## 1108                 23 spring       L 28.79602 -81.87777
## 1110                 23 spring       L 28.79602 -81.87777
## 1111                 23 spring       L 28.79602 -81.87777
## 1112                 23 spring       L 28.79602 -81.87777
## 1117                 23 spring       L 24.96448 -80.56739
## 1118                 23 spring       L 24.96448 -80.56739
## 1119                 23 spring       L 24.96448 -80.56739
## 1121                 23 spring       L 24.96448 -80.56739
## 1122                 23 spring       L 24.96448 -80.56739
## 1124                 23 spring       L 24.96448 -80.56739
## 1125                 43 winter       L 29.66374 -82.36091
## 1126                 43 winter       L 29.66374 -82.36091
## 1127                 43 winter       L 29.66374 -82.36091
## 1128                 43 winter       L 29.66374 -82.36091
## 1129                 43 winter       L 29.66374 -82.36091
## 1130                 43 winter       L 29.66374 -82.36091
## 1131                 43 winter       L 29.66374 -82.36091
## 1132                 43 winter       L 29.66374 -82.36091
## 1133                 43 winter       L 29.66374 -82.36091
## 1134                 43 winter       L 29.66374 -82.36091
## 1135                 43 winter       L 29.66374 -82.36091
## 1136                 43 winter       L 29.66374 -82.36091
## 1137                 43 winter       L 29.66374 -82.36091
## 1138                 43 winter       L 29.66374 -82.36091
## 1142                 43 winter       L 29.66374 -82.36091
## 1143                 43 winter       L 29.66374 -82.36091
## 1144                 43 winter       L 29.66374 -82.36091
## 1146                 43 winter       L 29.66374 -82.36091
## 1148                 43 winter       L 29.66374 -82.36091
## 1155                 43 winter       L 29.66374 -82.36091
## 1156                 43 winter       L 29.66374 -82.36091
## 1158                 43 winter       L 29.66374 -82.36091
## 1160                 43 winter       L 29.66374 -82.36091
## 1161                 43 winter       L 29.66374 -82.36091
## 1162                 43 winter       L 29.66374 -82.36091
## 1164                 43 winter       L 29.66374 -82.36091
## 1166                 43 winter       L 29.66374 -82.36091
## 1167                 43 winter       L 29.66374 -82.36091
## 1170                 43 winter       L 29.66374 -82.36091
## 1174                 43 winter       L 29.66374 -82.36091
## 1176                 43 winter       L 29.66374 -82.36091
## 1177                 43 winter       L 29.66374 -82.36091
## 1178                 43 winter       L 29.66374 -82.36091
## 1179                 43 winter       L 29.66374 -82.36091
## 1180                 43 winter       L 29.66374 -82.36091
## 1181                 43 winter       L 29.66374 -82.36091
## 1182                 43 winter       L 25.49172 -80.48586
## 1185                 43 winter       L 25.49172 -80.48586
## 1186                 43 winter       L 25.49172 -80.48586
## 1188                 43 winter       L 25.49172 -80.48586
## 1189                 43 winter       L 25.49172 -80.48586
## 1191                 43 winter       L 25.49172 -80.48586
## 1192                 43 winter       L 25.49172 -80.48586
## 1193                 43 winter       L 25.49172 -80.48586
## 1194                 43 winter       L 25.49172 -80.48586
## 1203                 43 winter       L 25.19515 -80.34592
## 1204                 43 winter       L 25.19515 -80.34592
## 1205                 43 winter       L 25.19515 -80.34592
## 1208                 43 winter       L 25.19515 -80.34592
## 1209                 43 winter       L 25.19515 -80.34592
## 1210                 43 winter       L 25.19515 -80.34592
## 1213                 43 winter       L 25.19515 -80.34592
## 1215                 43 winter       L 25.19515 -80.34592
## 1217                 43 winter       L 25.19515 -80.34592
## 1219                 43 winter       L 25.19515 -80.34592
## 1221                 43 winter       L 25.19515 -80.34592
## 1222                 43 winter       L 25.19515 -80.34592
## 1225                 43 winter       L 25.19515 -80.34592
## 1228                 43 winter       L 25.19515 -80.34592
## 1230                 43 winter       L 25.19515 -80.34592
## 1235                 43 winter       L 25.19515 -80.34592
## 1238                 43 winter       L 25.19515 -80.34592
## 1239                 43 winter       L 25.19515 -80.34592
## 1241                 43 winter       L 25.19515 -80.34592
## 1246                 43 winter       L 25.19515 -80.34592
## 1247                 43 winter       L 25.19515 -80.34592
## 1248                 43 winter       L 25.12308 -80.41528
## 1249                 43 winter       L 25.12308 -80.41528
## 1250                 43 winter       L 25.12308 -80.41528
## 1252                 43 winter       L 25.12308 -80.41528
## 1253                 43 winter       L 25.12308 -80.41528
## 1255                 43 winter       L 25.12308 -80.41528
## 1257                 43 winter       L 25.12308 -80.41528
## 1258                 43 winter       L 25.12308 -80.41528
## 1268                 43 winter       L 27.93574 -81.57414
## 1272                 43 winter       L 27.93574 -81.57414
## 1276                 43 winter       L 28.80523 -81.88178
## 1281                 43 winter       L 28.80523 -81.88178
## 1285                 43 winter       L 28.80523 -81.88178
## 1289                 43 winter       L 28.80523 -81.88178
## 1290                 43 winter       L 28.80523 -81.88178
## 1291                 43 winter       L 28.80523 -81.88178
## 1292                 43 winter       L 28.80523 -81.88178
## 1294                 43 winter       L 28.79602 -81.87777
## 1295                 43 winter       L 28.79602 -81.87777
## 1296                 43 winter       L 28.79602 -81.87777
## 1297                 43 winter       L 28.79602 -81.87777
## 1298                 43 winter       L 28.79602 -81.87777
## 1299                 43 winter       L 28.79602 -81.87777
## 1300                 43 winter       L 28.79602 -81.87777
## 1301                 43 winter       L 28.79602 -81.87777
## 1302                 43 winter       L 28.79602 -81.87777
## 1303                 43 winter       L 28.79602 -81.87777
## 1304                 43 winter       L 28.79602 -81.87777
## 1306                 43 winter       L 28.79602 -81.87777
## 1307                 43 winter       L 28.79602 -81.87777
## 1308                 43 winter       L 28.79602 -81.87777
## 1309                 43 winter       L 28.79602 -81.87777
## 1310                 43 winter       L 28.79602 -81.87777
## 1311                 43 winter       L 28.79602 -81.87777
## 1312                 43 winter       L 28.79602 -81.87777
## 1313                 43 winter       L 28.79602 -81.87777
## 1315                 43 winter       L 28.79602 -81.87777
## 1316                 43 winter       L 28.79602 -81.87777
## 1317                 43 winter       L 28.79602 -81.87777
## 1318                 43 winter       L 28.79602 -81.87777
## 1319                 43 winter       L 28.79602 -81.87777
## 1320                 43 winter       L 28.79602 -81.87777
## 1321                 43 winter       L 28.79602 -81.87777
## 1322                 43 winter       L 28.79602 -81.87777
## 1323                 43 winter       L 28.79602 -81.87777
## 1324                 43 winter       L 28.79602 -81.87777
## 1325                 43 winter       L 28.79602 -81.87777
## 1326                 43 winter       L 28.79602 -81.87777
## 1327                 43 winter       L 28.79602 -81.87777
## 1328                 43 winter       L 28.79602 -81.87777
## 1329                 43 winter       L 28.79602 -81.87777
## 1330                 43 winter       L 28.79602 -81.87777
## 1331                 43 winter       L 28.79602 -81.87777
## 1332                 43 winter       L 28.79602 -81.87777
## 1333                 43 winter       L 28.79602 -81.87777
## 1334                 43 winter       L 28.79602 -81.87777
## 1335                 43 winter       L 28.79602 -81.87777
## 1336                 43 winter       L 28.79602 -81.87777
## 1337                 43 winter       L 28.79602 -81.87777
## 1338                 43 winter       L 28.79602 -81.87777
## 1340                 43 winter       L 24.97998 -80.54862
## 1341                 43 winter       L 24.97998 -80.54862
## 1343                 43 winter       L 24.97998 -80.54862
## 1344                 43 winter       L 24.97998 -80.54862
## 1346                 43 winter       L 24.97998 -80.54862
## 1347                 43 winter       L 24.97998 -80.54862
## 1349                 43 winter       L 24.97998 -80.54862
## 1354                 43 winter       L 24.97998 -80.54862
## 1355                 43 winter       L 24.97998 -80.54862
## 1356                 43 winter       L 24.97998 -80.54862
## 1357                 43 winter       L 24.97998 -80.54862
## 1358                 43 winter       L 24.97998 -80.54862
## 1361                 43 winter       L 24.97998 -80.54862
## 1364                 43 winter       L 24.97998 -80.54862
## 1365                 43 winter       L 24.97998 -80.54862
## 1367                 43 winter       L 24.97998 -80.54862
## 1368                 43 winter       L 24.97998 -80.54862
## 1369                 43 winter       L 24.97998 -80.54862
## 1370                 43 winter       L 24.97998 -80.54862
## 1371                 43 winter       L 24.97998 -80.54862
## 1372                 43 winter       L 24.97998 -80.54862
## 1375                 43 winter       L 24.97998 -80.54862
## 1545                 51 summer       L 29.66668 -82.35574
## 1546                 51 summer       L 29.66668 -82.35574
## 1547                 51 summer       L 29.66668 -82.35574
## 1549                 51 summer       L 29.66668 -82.35574
## 1550                 51 summer       L 29.66668 -82.35574
## 1552                 51 summer       L 29.66668 -82.35574
## 1553                 51 summer       L 29.66668 -82.35574
## 1554                 51 summer       L 29.66668 -82.35574
## 1555                 51 summer       L 29.66668 -82.35574
## 1556                 51 summer       L 29.66668 -82.35574
## 1557                 51 summer       L 29.66668 -82.35574
## 1558                 51 summer       L 29.66668 -82.35574
## 1559                 51 summer       L 29.66668 -82.35574
## 1560                 51 summer       L 29.66668 -82.35574
## 1562                 51 summer       L 29.66668 -82.35574
## 1563                 51 summer       L 29.66668 -82.35574
## 1565                 51 summer       L 29.66668 -82.35574
## 1566                 51 summer       L 29.66668 -82.35574
## 1567                 51 summer       L 29.66668 -82.35574
## 1568                 51 summer       L 29.66668 -82.35574
## 1569                 51 summer       L 29.66668 -82.35574
## 1571                 51 summer       L 29.66668 -82.35574
## 1572                 51 summer       L 29.66668 -82.35574
## 1573                 51 summer       L 29.66668 -82.35574
## 1574                 51 summer       L 29.66668 -82.35574
## 1575                 51 summer       L 29.66668 -82.35574
## 1576                 51 summer       L 29.66668 -82.35574
## 1577                 51 summer       L 29.66668 -82.35574
## 1578                 51 summer       L 29.66668 -82.35574
## 1579                 51 summer       L 29.66668 -82.35574
## 1580                 51 summer       L 29.66668 -82.35574
## 1581                 51 summer       L 29.66668 -82.35574
## 1582                 51 summer       L 29.66668 -82.35574
## 1583                 51 summer       L 29.66668 -82.35574
## 1584                 51 summer       L 29.66668 -82.35574
## 1585                 51 summer       L 29.66668 -82.35574
## 1586                 51 summer       L 29.66668 -82.35574
## 1587                 51 summer       L 29.66668 -82.35574
## 1589                 51 summer       L 29.66668 -82.35574
## 1590                 51 summer       L 29.66668 -82.35574
## 1591                 51 summer       L 29.66668 -82.35574
## 1592                 51 summer       L 29.66668 -82.35574
## 1593                 51 summer       L 29.66668 -82.35574
## 1594                 51 summer       L 29.66668 -82.35574
## 1595                 51 summer       L 29.66668 -82.35574
## 1596                 51 summer       L 29.66668 -82.35574
## 1597                 51 summer       L 29.66668 -82.35574
## 1598                 51 summer       L 29.66668 -82.35574
## 1599                 51 summer       L 29.66668 -82.35574
## 1600                 51 summer       L 29.66668 -82.35574
## 1601                 51 summer       L 29.66668 -82.35574
## 1602                 51 summer       L 29.66668 -82.35574
## 1603                 51 summer       L 29.66668 -82.35574
## 1605                 51 summer       L 25.49157 -80.48569
## 1607                 51 summer       L 25.49157 -80.48569
## 1608                 51 summer       L 25.49157 -80.48569
## 1610                 51 summer       L 25.49157 -80.48569
## 1611                 51 summer       L 25.49157 -80.48569
## 1612                 51 summer       L 25.49157 -80.48569
## 1613                 51 summer       L 25.49157 -80.48569
## 1614                 51 summer       L 25.49157 -80.48569
## 1615                 51 summer       L 25.49157 -80.48569
## 1616                 51 summer       L 25.49157 -80.48569
## 1617                 51 summer       L 25.49157 -80.48569
## 1618                 51 summer       L 25.49157 -80.48569
## 1620                 51 summer       L 25.49157 -80.48569
## 1621                 51 summer       L 25.49157 -80.48569
## 1622                 51 summer       L 25.49157 -80.48569
## 1624                 51 summer       L 25.49157 -80.48569
## 1625                 51 summer       L 25.49157 -80.48569
## 1626                 51 summer       L 25.49157 -80.48569
## 1627                 51 summer       L 25.49157 -80.48569
## 1628                 51 summer       L 25.49157 -80.48569
## 1629                 51 summer       L 25.49157 -80.48569
## 1630                 51 summer       L 25.49157 -80.48569
## 1631                 51 summer       L 25.49157 -80.48569
## 1632                 51 summer       L 25.49157 -80.48569
## 1634                 51 summer       L 25.49157 -80.48569
## 1635                 51 summer       L 25.49157 -80.48569
## 1636                 51 summer       L 25.49157 -80.48569
## 1641                 51 summer       L 25.49157 -80.48569
## 1642                 51 summer       L 25.49157 -80.48569
## 1643                 51 summer       L 25.49157 -80.48569
## 1644                 51 summer       L 25.49157 -80.48569
## 1645                 51 summer       L 25.49157 -80.48569
## 1646                 51 summer       L 25.49157 -80.48569
## 1647                 51 summer       L 25.49157 -80.48569
## 1648                 51 summer       L 25.49157 -80.48569
## 1651                 51 summer       L 25.49157 -80.48569
## 1652                 51 summer       L 25.49157 -80.48569
## 1654                 51 summer       L 25.49157 -80.48569
## 1655                 51 summer       L 25.49157 -80.48569
## 1656                 51 summer       L 25.49157 -80.48569
## 1657                 51 summer       L 25.49157 -80.48569
## 1658                 51 summer       L 25.49157 -80.48569
## 1659                 51 summer       L 25.49157 -80.48569
## 1660                 51 summer       L 25.49157 -80.48569
## 1661                 51 summer       L 25.49157 -80.48569
## 1662                 51 summer       L 25.49157 -80.48569
## 1663                 51 summer       L 25.49157 -80.48569
## 1664                 51 summer       L 25.49157 -80.48569
## 1665                 51 summer       L 25.49157 -80.48569
## 1666                 51 summer       L 25.49157 -80.48569
## 1667                 51 summer       L 25.49157 -80.48569
## 1668                 51 summer       L 25.49157 -80.48569
## 1669                 51 summer       L 25.49157 -80.48569
## 1670                 51 summer       L 25.49157 -80.48569
## 1671                 51 summer       L 25.49157 -80.48569
## 1672                 51 summer       L 25.49157 -80.48569
## 1673                 51 summer       L 25.49157 -80.48569
## 1674                 51 summer       L 25.49157 -80.48569
## 1675                 51 summer       L 25.49157 -80.48569
## 1676                 51 summer       L 25.49157 -80.48569
## 1677                 51 summer       L 25.49157 -80.48569
## 1678                 51 summer       L 25.49157 -80.48569
## 1679                 51 summer       L 25.49157 -80.48569
## 1680                 51 summer       L 25.49157 -80.48569
## 1681                 51 summer       L 25.49157 -80.48569
## 1682                 51 summer       L 25.49157 -80.48569
## 1683                 51 summer       L 25.49157 -80.48569
## 1684                 51 summer       L 25.49157 -80.48569
## 1685                 51 summer       L 25.49157 -80.48569
## 1686                 51 summer       L 25.49157 -80.48569
## 1687                 51 summer       L 25.49157 -80.48569
## 1688                 51 summer       L 25.49157 -80.48569
## 1689                 51 summer       L 25.49157 -80.48569
## 1690                 51 summer       L 25.49157 -80.48569
## 1691                 51 summer       L 25.49157 -80.48569
## 1692                 51 summer       L 25.49157 -80.48569
## 1693                 51 summer       L 25.49157 -80.48569
## 1694                 51 summer       L 25.49157 -80.48569
## 1695                 51 summer       L 25.49157 -80.48569
## 1696                 51 summer       L 25.49157 -80.48569
## 1697                 51 summer       L 25.49157 -80.48569
## 1698                 51 summer       L 25.49157 -80.48569
## 1699                 51 summer       L 25.49157 -80.48569
## 1700                 51 summer       L 25.49157 -80.48569
## 1701                 51 summer       L 25.49157 -80.48569
## 1702                 51 summer       L 25.49157 -80.48569
## 1703                 51 summer       L 25.49157 -80.48569
## 1704                 51 summer       L 25.49157 -80.48569
## 1705                 51 summer       L 25.49157 -80.48569
## 1706                 51 summer       L 25.49157 -80.48569
## 1707                 51 summer       L 25.49157 -80.48569
## 1708                 51 summer       L 25.49157 -80.48569
## 1709                 51 summer       L 25.49157 -80.48569
## 1710                 51 summer       L 25.49157 -80.48569
## 1711                 51 summer       L 25.49157 -80.48569
## 1712                 51 summer       L 25.49157 -80.48569
## 1713                 51 summer       L 25.49157 -80.48569
## 1714                 51 summer       L 25.49157 -80.48569
## 1715                 51 summer       L 25.49157 -80.48569
## 1716                 51 summer       L 25.49157 -80.48569
## 1717                 51 summer       L 25.49157 -80.48569
## 1718                 51 summer       L 25.49157 -80.48569
## 1719                 51 summer       L 25.49157 -80.48569
## 1720                 51 summer       L 25.49157 -80.48569
## 1721                 51 summer       L 25.49157 -80.48569
## 1722                 51 summer       L 25.49157 -80.48569
## 1723                 51 summer       L 25.49157 -80.48569
## 1724                 51 summer       L 25.49157 -80.48569
## 1725                 51 summer       L 25.49157 -80.48569
## 1726                 51 summer       L 25.49157 -80.48569
## 1727                 51 summer       L 25.49157 -80.48569
## 1728                 51 summer       L 25.49157 -80.48569
## 1729                 51 summer       L 25.49157 -80.48569
## 1730                 51 summer       L 25.49157 -80.48569
## 1731                 51 summer       L 25.49157 -80.48569
## 1732                 51 summer       L 25.49157 -80.48569
## 1733                 51 summer       L 25.49157 -80.48569
## 1734                 51 summer       L 25.12811 -80.40805
## 1735                 51 summer       L 25.12811 -80.40805
## 1736                 51 summer       L 25.12811 -80.40805
## 1738                 51 summer       L 25.12811 -80.40805
## 1739                 51 summer       L 25.12811 -80.40805
## 1740                 51 summer       L 25.12811 -80.40805
## 1741                 51 summer       L 25.12811 -80.40805
## 1742                 51 summer       L 25.12811 -80.40805
## 1743                 51 summer       L 25.12811 -80.40805
## 1744                 51 summer       L 25.12811 -80.40805
## 1746                 51 summer       L 25.12811 -80.40805
## 1747                 51 summer       L 25.12811 -80.40805
## 1748                 51 summer       L 25.12811 -80.40805
## 1749                 51 summer       L 25.12811 -80.40805
## 1750                 51 summer       L 25.12811 -80.40805
## 1751                 51 summer       L 25.12800 -80.40808
## 1752                 51 summer       L 25.12800 -80.40808
## 1753                 51 summer       L 25.12800 -80.40808
## 1754                 51 summer       L 25.12800 -80.40808
## 1755                 51 summer       L 25.12800 -80.40808
## 1758                 51 summer       L 25.12800 -80.40808
## 1759                 51 summer       L 25.12800 -80.40808
## 1760                 51 summer       L 25.12800 -80.40808
## 1761                 51 summer       L 25.12800 -80.40808
## 1762                 51 summer       L 25.12800 -80.40808
## 1763                 51 summer       L 25.12800 -80.40808
## 1764                 51 summer       L 25.12800 -80.40808
## 1765                 51 summer       L 25.12800 -80.40808
## 1766                 51 summer       L 25.12800 -80.40808
## 1768                 51 summer       L 25.12800 -80.40808
## 1769                 51 summer       L 25.19515 -80.34592
## 1770                 51 summer       L 25.19515 -80.34592
## 1771                 51 summer       L 25.19515 -80.34592
## 1772                 51 summer       L 25.19515 -80.34592
## 1774                 51 summer       L 25.19515 -80.34592
## 1775                 51 summer       L 25.19515 -80.34592
## 1776                 51 summer       L 25.19515 -80.34592
## 1779                 51 summer       L 25.19515 -80.34592
## 1780                 51 summer       L 25.19515 -80.34592
## 1782                 51 summer       L 25.19515 -80.34592
## 1785                 51 summer       L 25.19515 -80.34592
## 1786                 51 summer       L 25.19515 -80.34592
## 1788                 51 summer       L 25.19515 -80.34592
## 1789                 51 summer       L 25.19515 -80.34592
## 1790                 51 summer       L 25.19515 -80.34592
## 1791                 51 summer       L 25.19515 -80.34592
## 1793                 51 summer       L 25.19515 -80.34592
## 1800                 51 summer       L 25.19515 -80.34592
## 1802                 51 summer       L 25.19515 -80.34592
## 1805                 51 summer       L 25.19515 -80.34592
## 1806                 51 summer       L 25.19515 -80.34592
## 1807                 51 summer       L 25.19515 -80.34592
## 1808                 51 summer       L 25.19515 -80.34592
## 1809                 51 summer       L 25.19515 -80.34592
## 1810                 51 summer       L 25.19515 -80.34592
## 1811                 51 summer       L 25.19515 -80.34592
## 1812                 51 summer       L 25.19515 -80.34592
## 1813                 51 summer       L 25.19515 -80.34592
## 1814                 51 summer       L 25.19515 -80.34592
## 1815                 51 summer       L 25.19515 -80.34592
## 1816                 51 summer       L 25.19515 -80.34592
## 1817                 51 summer       L 25.19515 -80.34592
## 1819                 51 summer       L 25.19515 -80.34592
## 1821                 51 summer       L 25.19515 -80.34592
## 1822                 51 summer       L 25.19515 -80.34592
## 1823                 51 summer       L 25.19515 -80.34592
## 1824                 51 summer       L 25.19515 -80.34592
## 1826                 51 summer       L 27.93573 -81.57409
## 1827                 51 summer       L 27.93573 -81.57409
## 1828                 51 summer       L 27.93573 -81.57409
## 1829                 51 summer       L 27.93573 -81.57409
## 1831                 51 summer       L 27.93573 -81.57409
## 1832                 51 summer       L 27.93573 -81.57409
## 1833                 51 summer       L 27.93573 -81.57409
## 1834                 51 summer       L 27.93573 -81.57409
## 1835                 51 summer       L 27.93573 -81.57409
## 1836                 51 summer       L 27.93573 -81.57409
## 1837                 51 summer       L 27.93573 -81.57409
## 1838                 51 summer       L 27.93573 -81.57409
## 1839                 51 summer       L 27.93573 -81.57409
## 1840                 51 summer       L 27.93573 -81.57409
## 1842                 51 summer       L 27.93573 -81.57409
## 1844                 51 summer       L 27.93573 -81.57409
## 1845                 51 summer       L 27.93573 -81.57409
## 1846                 51 summer       L 27.93573 -81.57409
## 1847                 51 summer       L 27.93573 -81.57409
## 1848                 51 summer       L 27.93573 -81.57409
## 1849                 51 summer       L 27.93573 -81.57409
## 1850                 51 summer       L 27.93573 -81.57409
## 1852                 51 summer       L 27.93573 -81.57409
## 1853                 51 summer       L 27.93573 -81.57409
## 1854                 51 summer       L 27.93573 -81.57409
## 1855                 51 summer       L 27.93573 -81.57409
## 1856                 51 summer       L 27.93573 -81.57409
## 1857                 51 summer       L 27.93573 -81.57409
## 1858                 51 summer       L 27.93573 -81.57409
## 1859                 51 summer       L 27.93573 -81.57409
## 1862                 51 summer       L 27.93573 -81.57409
## 1863                 51 summer       L 27.93573 -81.57409
## 1864                 51 summer       L 27.93573 -81.57409
## 1867                 51 summer       L 27.93573 -81.57409
## 1868                 51 summer       L 27.93573 -81.57409
## 1871                 51 summer       L 27.93573 -81.57409
## 1874                 51 summer       L 27.93573 -81.57409
## 1876                 51 summer       L 27.93573 -81.57409
## 1878                 51 summer       L 27.93573 -81.57409
## 1879                 51 summer       L 27.93573 -81.57409
## 1881                 51 summer       L 27.93573 -81.57409
## 1882                 51 summer       L 27.93573 -81.57409
## 1884                 51 summer       L 27.93573 -81.57409
## 1885                 51 summer       L 27.93573 -81.57409
## 1887                 51 summer       L 27.93573 -81.57409
## 1892                 51 summer       L 27.93573 -81.57409
## 1894                 51 summer       L 27.93573 -81.57409
## 1895                 51 summer       L 27.93573 -81.57409
## 1896                 51 summer       L 27.93573 -81.57409
## 1897                 51 summer       L 27.93573 -81.57409
## 1898                 51 summer       L 27.93573 -81.57409
## 1901                 51 summer       L 27.93573 -81.57409
## 1905                 51 summer       L 27.93573 -81.57409
## 1907                 51 summer       L 27.93573 -81.57409
## 1912                 51 summer       L 27.93573 -81.57409
## 1914                 51 summer       L 27.93573 -81.57409
## 1915                 51 summer       L 27.93573 -81.57409
## 1917                 51 summer       L 28.80530 -81.88184
## 1918                 51 summer       L 28.80530 -81.88184
## 1922                 51 summer       L 28.80530 -81.88184
## 1923                 51 summer       L 28.80530 -81.88184
## 1924                 51 summer       L 28.80530 -81.88184
## 1925                 51 summer       L 28.80530 -81.88184
## 1927                 51 summer       L 28.80530 -81.88184
## 1928                 51 summer       L 28.80530 -81.88184
## 1929                 51 summer       L 28.80530 -81.88184
## 1930                 51 summer       L 28.80530 -81.88184
## 1933                 51 summer       L 28.80530 -81.88184
## 1935                 51 summer       L 28.80530 -81.88184
## 1936                 51 summer       L 28.80530 -81.88184
## 1937                 51 summer       L 28.80530 -81.88184
## 1938                 51 summer       L 28.80530 -81.88184
## 1939                 51 summer       L 28.80530 -81.88184
## 1941                 51 summer       L 28.80530 -81.88184
## 1942                 51 summer       L 28.80530 -81.88184
## 1944                 51 summer       L 28.80530 -81.88184
## 1945                 51 summer       L 28.80530 -81.88184
## 1946                 51 summer       L 28.80530 -81.88184
## 1947                 51 summer       L 28.80530 -81.88184
## 1948                 51 summer       L 28.80530 -81.88184
## 1949                 51 summer       L 28.80530 -81.88184
## 1952                 51 summer       L 28.80530 -81.88184
## 1953                 51 summer       L 28.80530 -81.88184
## 1955                 51 summer       L 28.80530 -81.88184
## 1956                 51 summer       L 28.80530 -81.88184
## 1958                 51 summer       L 28.80530 -81.88184
## 1959                 51 summer       L 28.80530 -81.88184
## 1960                 51 summer       L 28.80530 -81.88184
## 1963                 51 summer       L 28.80530 -81.88184
## 1964                 51 summer       L 28.80530 -81.88184
## 1965                 51 summer       L 28.80530 -81.88184
## 1973                 51 summer       L 28.80530 -81.88184
## 1975                 64   fall       L 29.66648 -82.35720
## 1976                 64   fall       L 29.66648 -82.35720
## 1977                 64   fall       L 29.66648 -82.35720
## 1978                 64   fall       L 29.66648 -82.35720
## 1979                 64   fall       L 29.66648 -82.35720
## 1980                 64   fall       L 29.66648 -82.35720
## 1981                 64   fall       L 29.66648 -82.35720
## 1982                 64   fall       L 29.66648 -82.35720
## 1983                 64   fall       L 29.66648 -82.35720
## 1984                 64   fall       L 29.66648 -82.35720
## 1985                 64   fall       L 29.66648 -82.35720
## 1986                 64   fall       L 29.66648 -82.35720
## 1987                 64   fall       L 29.66648 -82.35720
## 1988                 64   fall       L 29.66648 -82.35720
## 1989                 64   fall       L 29.66648 -82.35720
## 1990                 64   fall       L 29.66648 -82.35720
## 1992                 64   fall       L 29.66648 -82.35720
## 1993                 64   fall       L 29.66648 -82.35720
## 1994                 64   fall       L 29.66648 -82.35720
## 1995                 64   fall       L 29.66648 -82.35720
## 1996                 64   fall       L 29.66648 -82.35720
## 1997                 64   fall       L 29.66648 -82.35720
## 1998                 64   fall       L 29.66648 -82.35720
## 1999                 64   fall       L 29.66648 -82.35720
## 2000                 64   fall       L 29.66648 -82.35720
## 2001                 64   fall       L 29.66648 -82.35720
## 2002                 64   fall       L 29.66648 -82.35720
## 2003                 64   fall       L 29.66648 -82.35720
## 2004                 64   fall       L 29.66648 -82.35720
## 2005                 64   fall       L 29.66648 -82.35720
## 2006                 64   fall       L 29.66648 -82.35720
## 2007                 64   fall       L 29.66648 -82.35720
## 2008                 64   fall       L 29.66648 -82.35720
## 2009                 64   fall       L 29.66648 -82.35720
## 2010                 64   fall       L 29.66648 -82.35720
## 2011                 64   fall       L 29.66648 -82.35720
## 2012                 64   fall       L 29.66648 -82.35720
## 2013                 64   fall       L 29.66648 -82.35720
## 2014                 64   fall       L 29.66648 -82.35720
## 2015                 64   fall       L 29.66648 -82.35720
## 2016                 64   fall       L 29.66648 -82.35720
## 2017                 64   fall       L 29.66648 -82.35720
## 2018                 64   fall       L 29.66648 -82.35720
## 2019                 64   fall       L 29.66648 -82.35720
## 2020                 64   fall       L 29.66648 -82.35720
## 2021                 64   fall       L 29.66648 -82.35720
## 2022                 64   fall       L 29.66648 -82.35720
## 2023                 64   fall       L 29.66648 -82.35720
## 2024                 64   fall       L 29.66648 -82.35720
## 2025                 64   fall       L 29.66648 -82.35720
## 2026                 64   fall       L 29.66648 -82.35720
## 2027                 64   fall       L 29.66648 -82.35720
## 2028                 64   fall       L 29.66648 -82.35720
## 2029                 64   fall       L 29.66648 -82.35720
## 2031                 64   fall       L 29.66648 -82.35720
## 2032                 64   fall       L 29.66648 -82.35720
## 2033                 64   fall       L 29.66648 -82.35720
## 2034                 64   fall       L 29.66648 -82.35720
## 2036                 64   fall       L 29.66648 -82.35720
## 2037                 64   fall       L 29.66648 -82.35720
## 2038                 64   fall       L 29.66648 -82.35720
## 2039                 64   fall       L 25.19515 -80.34592
## 2040                 64   fall       L 25.19515 -80.34592
## 2041                 64   fall       L 25.19515 -80.34592
## 2042                 64   fall       L 25.19515 -80.34592
## 2047                 64   fall       L 25.19515 -80.34592
## 2050                 64   fall       L 25.19515 -80.34592
## 2053                 64   fall       L 25.19515 -80.34592
## 2055                 64   fall       L 25.19515 -80.34592
## 2057                 64   fall       L 25.19515 -80.34592
## 2058                 64   fall       L 25.19515 -80.34592
## 2059                 64   fall       L 25.19515 -80.34592
## 2062                 64   fall       L 25.19515 -80.34592
## 2064                 64   fall       L 25.19515 -80.34592
## 2065                 64   fall       L 25.19515 -80.34592
## 2069                 64   fall       L 25.19515 -80.34592
## 2071                 64   fall       L 25.19515 -80.34592
## 2072                 64   fall       L 25.19515 -80.34592
## 2073                 64   fall       L 25.19515 -80.34592
## 2079                 64   fall       L 25.19515 -80.34592
## 2081                 64   fall       L 25.19515 -80.34592
## 2082                 64   fall       L 25.19515 -80.34592
## 2083                 64   fall       L 25.19515 -80.34592
## 2085                 64   fall       L 25.19515 -80.34592
## 2086                 64   fall       L 25.19515 -80.34592
## 2087                 64   fall       L 25.19515 -80.34592
## 2088                 64   fall       L 25.19515 -80.34592
## 2091                 64   fall       L 25.19515 -80.34592
## 2094                 64   fall       L 25.19515 -80.34592
## 2095                 64   fall       L 25.19515 -80.34592
## 2097                 64   fall       L 25.19515 -80.34592
## 2099                 64   fall       L 25.19515 -80.34592
## 2101                 64   fall       L 25.19515 -80.34592
## 2103                 64   fall       L 25.19515 -80.34592
## 2107                 64   fall       L 27.93575 -81.57412
## 2108                 64   fall       L 27.93575 -81.57412
## 2109                 64   fall       L 27.93575 -81.57412
## 2110                 64   fall       L 27.93575 -81.57412
## 2111                 64   fall       L 27.93575 -81.57412
## 2112                 64   fall       L 27.93575 -81.57412
## 2113                 64   fall       L 27.93575 -81.57412
## 2115                 64   fall       L 27.93575 -81.57412
## 2116                 64   fall       L 27.93575 -81.57412
## 2117                 64   fall       L 27.93575 -81.57412
## 2118                 64   fall       L 27.93575 -81.57412
## 2119                 64   fall       L 27.93575 -81.57412
## 2120                 64   fall       L 27.93575 -81.57412
## 2121                 64   fall       L 27.93575 -81.57412
## 2122                 64   fall       L 27.93575 -81.57412
## 2123                 64   fall       L 27.93575 -81.57412
## 2124                 64   fall       L 27.93575 -81.57412
## 2125                 64   fall       L 27.93575 -81.57412
## 2126                 64   fall       L 27.93575 -81.57412
## 2127                 64   fall       L 27.93575 -81.57412
## 2128                 64   fall       L 27.93575 -81.57412
## 2129                 64   fall       L 27.93575 -81.57412
## 2130                 64   fall       L 27.93575 -81.57412
## 2131                 64   fall       L 27.93575 -81.57412
## 2133                 64   fall       L 27.93575 -81.57412
## 2134                 64   fall       L 27.93575 -81.57412
## 2136                 64   fall       L 27.93575 -81.57412
## 2137                 64   fall       L 27.93575 -81.57412
## 2138                 64   fall       L 27.93575 -81.57412
## 2139                 64   fall       L 27.93575 -81.57412
## 2140                 64   fall       L 27.93575 -81.57412
## 2141                 64   fall       L 27.93575 -81.57412
## 2142                 64   fall       L 27.93575 -81.57412
## 2143                 64   fall       L 27.93575 -81.57412
## 2144                 64   fall       L 27.93575 -81.57412
## 2145                 64   fall       L 27.93575 -81.57412
## 2146                 64   fall       L 27.93575 -81.57412
## 2147                 64   fall       L 28.81527 -81.88217
## 2148                 72 spring       L 29.66679 -82.35761
## 2149                 72 spring       L 29.66679 -82.35761
## 2150                 72 spring       L 29.66679 -82.35761
## 2151                 72 spring       L 29.66679 -82.35761
## 2152                 72 spring       L 29.66679 -82.35761
## 2154                 72 spring       L 29.66679 -82.35761
## 2155                 72 spring       L 29.66679 -82.35761
## 2156                 72 spring       L 29.66679 -82.35761
## 2157                 72 spring       L 29.66197 -82.34728
## 2158                 72 spring       L 29.66197 -82.34728
## 2159                 72 spring       L 29.66197 -82.34728
## 2160                 72 spring       L 29.66197 -82.34728
## 2161                 72 spring       L 29.66197 -82.34728
## 2162                 72 spring       L 29.66197 -82.34728
## 2163                 72 spring       L 29.66197 -82.34728
## 2164                 72 spring       L 29.66197 -82.34728
## 2165                 72 spring       L 29.66197 -82.34728
## 2166                 72 spring       L 29.66197 -82.34728
## 2168                 72 spring       L 29.66197 -82.34728
## 2169                 72 spring       L 29.66197 -82.34728
## 2170                 72 spring       L 29.66197 -82.34728
## 2171                 72 spring       L 29.66197 -82.34728
## 2172                 72 spring       L 29.66197 -82.34728
## 2173                 72 spring       L 29.66197 -82.34728
## 2174                 72 spring       L 29.66197 -82.34728
## 2175                 72 spring       L 29.66197 -82.34728
## 2176                 72 spring       L 29.66197 -82.34728
## 2177                 72 spring       L 29.66197 -82.34728
## 2178                 72 spring       L 29.66197 -82.34728
## 2179                 72 spring       L 29.66197 -82.34728
## 2180                 72 spring       L 29.66197 -82.34728
## 2181                 72 spring       L 29.66197 -82.34728
## 2182                 72 spring       L 29.66197 -82.34728
## 2183                 72 spring       L 29.66197 -82.34728
## 2184                 72 spring       L 29.66197 -82.34728
## 2185                 72 spring       L 29.66197 -82.34728
## 2186                 72 spring       L 29.66197 -82.34728
## 2187                 72 spring       L 29.66197 -82.34728
## 2188                 72 spring       L 29.66197 -82.34728
## 2189                 72 spring       L 29.66197 -82.34728
## 2190                 72 spring       L 29.66197 -82.34728
## 2191                 72 spring       L 29.66197 -82.34728
## 2192                 72 spring       L 29.66197 -82.34728
## 2193                 72 spring       L 29.66197 -82.34728
## 2194                 72 spring       L 29.66197 -82.34728
## 2195                 72 spring       L 29.66197 -82.34728
## 2196                 72 spring       L 29.66197 -82.34728
## 2198                 72 spring       L 25.48862 -80.48976
## 2199                 72 spring       L 25.48862 -80.48976
## 2200                 72 spring       L 25.48862 -80.48976
## 2201                 72 spring       L 25.48862 -80.48976
## 2202                 72 spring       L 25.48862 -80.48976
## 2204                 72 spring       L 25.48862 -80.48976
## 2212                 72 spring       L 25.48862 -80.48976
## 2213                 72 spring       L 25.48862 -80.48976
## 2218                 72 spring       L 25.12848 -80.40754
## 2219                 72 spring       L 25.12848 -80.40754
## 2220                 72 spring       L 25.12848 -80.40754
## 2221                 72 spring       L 25.12848 -80.40754
## 2228                 72 spring       L 25.12848 -80.40754
## 2232                 72 spring       L 25.12848 -80.40754
## 2233                 72 spring       L 25.12848 -80.40754
## 2234                 72 spring       L 25.12848 -80.40754
## 2235                 72 spring       L 25.12848 -80.40754
## 2237                 72 spring       L 25.12848 -80.40754
## 2238                 72 spring       L 25.12848 -80.40754
## 2240                 72 spring       L 25.12848 -80.40754
## 2245                 72 spring       L 25.12848 -80.40754
## 2247                 72 spring       L 25.12848 -80.40754
## 2251                 72 spring       L 25.12848 -80.40754
## 2256                 72 spring       L 25.12848 -80.40754
## 2261                 72 spring       L 25.12848 -80.40754
## 2262                 72 spring       L 25.12848 -80.40754
## 2263                 72 spring       L 25.12848 -80.40754
## 2266                 72 spring       L 25.12848 -80.40754
## 2268                 72 spring       L 25.12848 -80.40754
## 2270                 72 spring       L 25.12848 -80.40754
## 2274                 72 spring       L 25.12848 -80.40754
## 2282                 72 spring       L 25.12848 -80.40754
## 2285                 72 spring       L 25.12848 -80.40754
## 2288                 72 spring       L 25.12848 -80.40754
## 2291                 72 spring       L 27.29866 -81.36612
## 2292                 72 spring       L 27.29866 -81.36612
## 2293                 72 spring       L 27.29866 -81.36612
## 2294                 72 spring       L 27.29866 -81.36612
## 2295                 72 spring       L 27.29866 -81.36612
## 2296                 72 spring       L 27.29866 -81.36612
## 2297                 72 spring       L 27.29866 -81.36612
## 2298                 72 spring       L 27.29866 -81.36612
## 2300                 72 spring       L 27.29866 -81.36612
## 2302                 72 spring       L 27.29866 -81.36612
## 2305                 72 spring       L 27.29866 -81.36612
## 2306                 72 spring       L 27.29866 -81.36612
## 2308                 72 spring       L 27.29866 -81.36612
## 2310                 72 spring       L 27.29866 -81.36612
## 2312                 72 spring       L 27.29866 -81.36612
## 2313                 72 spring       L 27.29866 -81.36612
## 2314                 72 spring       L 27.29866 -81.36612
## 2315                 72 spring       L 27.29866 -81.36612
## 2316                 72 spring       L 27.29866 -81.36612
## 2317                 72 spring       L 27.29866 -81.36612
## 2318                 72 spring       L 27.29866 -81.36612
## 2319                 72 spring       L 27.29866 -81.36612
## 2320                 72 spring       L 27.29866 -81.36612
## 2321                 72 spring       L 27.29866 -81.36612
## 2322                 72 spring       L 27.29866 -81.36612
## 2323                 72 spring       L 27.29866 -81.36612
## 2324                 72 spring       L 27.29866 -81.36612
## 2325                 72 spring       L 27.29866 -81.36612
## 2326                 72 spring       L 27.29866 -81.36612
## 2327                 72 spring       L 27.29866 -81.36612
## 2328                 72 spring       L 27.29866 -81.36612
## 2329                 72 spring       L 27.29866 -81.36612
## 2330                 72 spring       L 27.29866 -81.36612
## 2331                 72 spring       L 27.29866 -81.36612
## 2332                 72 spring       L 27.29866 -81.36612
## 2333                 72 spring       L 27.29866 -81.36612
## 2334                 72 spring       L 27.29866 -81.36612
## 2335                 72 spring       L 27.29866 -81.36612
## 2337                 72 spring       L 27.29866 -81.36612
## 2338                 72 spring       L 27.29866 -81.36612
## 2340                 72 spring       L 27.29866 -81.36612
## 2342                 72 spring       L 27.29866 -81.36612
## 2343                 72 spring       L 27.29866 -81.36612
## 2344                 72 spring       L 27.29866 -81.36612
## 2345                 72 spring       L 27.29866 -81.36612
## 2346                 72 spring       L 27.29866 -81.36612
## 2347                 72 spring       L 27.29866 -81.36612
## 2348                 72 spring       L 27.29866 -81.36612
## 2349                 72 spring       L 27.29866 -81.36612
## 2350                 72 spring       L 27.29866 -81.36612
## 2351                 72 spring       L 27.29866 -81.36612
## 2352                 72 spring       L 27.29866 -81.36612
## 2353                 72 spring       L 27.29866 -81.36612
## 2354                 72 spring       L 25.19515 -80.34592
## 2355                 72 spring       L 25.19515 -80.34592
## 2356                 72 spring       L 25.19515 -80.34592
## 2357                 72 spring       L 25.19515 -80.34592
## 2359                 72 spring       L 25.19515 -80.34592
## 2361                 72 spring       L 25.19515 -80.34592
## 2362                 72 spring       L 25.19515 -80.34592
## 2363                 72 spring       L 25.19515 -80.34592
## 2365                 72 spring       L 25.19515 -80.34592
## 2366                 72 spring       L 25.19515 -80.34592
## 2367                 72 spring       L 25.19515 -80.34592
## 2368                 72 spring       L 25.19515 -80.34592
## 2370                 72 spring       L 25.19515 -80.34592
## 2371                 72 spring       L 25.19515 -80.34592
## 2372                 72 spring       L 25.19515 -80.34592
## 2373                 72 spring       L 25.19515 -80.34592
## 2374                 72 spring       L 25.19515 -80.34592
## 2376                 72 spring       L 25.19515 -80.34592
## 2379                 72 spring       L 25.19515 -80.34592
## 2381                 72 spring       L 25.19515 -80.34592
## 2383                 72 spring       L 25.19515 -80.34592
## 2386                 72 spring       L 25.19515 -80.34592
## 2387                 72 spring       L 25.19515 -80.34592
## 2388                 72 spring       L 25.19515 -80.34592
## 2389                 72 spring       L 25.19515 -80.34592
## 2390                 72 spring       L 25.19515 -80.34592
## 2391                 72 spring       L 25.19515 -80.34592
## 2392                 72 spring       L 25.19515 -80.34592
## 2394                 72 spring       L 25.19515 -80.34592
## 2395                 72 spring       L 25.19515 -80.34592
## 2398                 72 spring       L 25.19515 -80.34592
## 2399                 72 spring       L 25.19515 -80.34592
## 2400                 72 spring       L 25.19515 -80.34592
## 2401                 72 spring       L 25.19515 -80.34592
## 2403                 72 spring       L 25.19515 -80.34592
## 2404                 72 spring       L 25.19515 -80.34592
## 2406                 72 spring       L 25.19515 -80.34592
## 2408                 72 spring       L 25.19515 -80.34592
## 2409                 72 spring       L 25.19515 -80.34592
## 2410                 72 spring       L 25.19515 -80.34592
## 2417                 72 spring       L 25.19515 -80.34592
## 2418                 72 spring       L 25.19515 -80.34592
## 2420                 72 spring       L 25.19515 -80.34592
## 2421                 72 spring       L 25.19515 -80.34592
## 2422                 72 spring       L 25.19515 -80.34592
## 2423                 72 spring       L 25.19515 -80.34592
## 2425                 72 spring       L 25.19515 -80.34592
## 2428                 72 spring       L 25.19515 -80.34592
## 2429                 72 spring       L 25.19515 -80.34592
## 2431                 72 spring       L 25.19515 -80.34592
## 2432                 72 spring       L 25.19515 -80.34592
## 2434                 72 spring       L 25.19515 -80.34592
## 2436                 72 spring       L 25.19515 -80.34592
## 2439                 72 spring       L 25.19515 -80.34592
## 2440                 72 spring       L 25.19515 -80.34592
## 2441                 72 spring       L 25.19515 -80.34592
## 2447                 72 spring       L 25.19515 -80.34592
## 2452                 72 spring       L 25.19515 -80.34592
## 2456                 72 spring       L 25.19515 -80.34592
## 2457                 72 spring       L 25.19515 -80.34592
## 2459                 72 spring       L 25.19515 -80.34592
## 2466                 72 spring       L 25.19515 -80.34592
## 2469                 72 spring       L 25.19515 -80.34592
## 2470                 72 spring       L 25.19515 -80.34592
## 2472                 72 spring       L 25.19515 -80.34592
## 2473                 72 spring       L 25.19515 -80.34592
## 2476                 72 spring       L 25.19515 -80.34592
## 2477                 72 spring       L 25.19515 -80.34592
## 2478                 72 spring       L 25.19515 -80.34592
## 2479                 72 spring       L 25.19515 -80.34592
## 2480                 72 spring       L 25.19515 -80.34592
## 2482                 72 spring       L 25.19515 -80.34592
## 2484                 72 spring       L 25.19515 -80.34592
## 2487                 72 spring       L 25.19515 -80.34592
## 2496                 72 spring       L 25.19515 -80.34592
## 2497                 72 spring       L 25.19515 -80.34592
## 2498                 72 spring       L 25.19515 -80.34592
## 2499                 72 spring       L 25.19515 -80.34592
## 2501                 72 spring       L 25.19515 -80.34592
## 2502                 72 spring       L 25.19515 -80.34592
## 2503                 72 spring       L 25.19515 -80.34592
## 2504                 72 spring       L 25.19515 -80.34592
## 2505                 72 spring       L 25.19515 -80.34592
## 2507                 72 spring       L 25.19515 -80.34592
## 2510                 72 spring       L 25.19515 -80.34592
## 2512                 72 spring       L 25.19515 -80.34592
## 2514                 72 spring       L 25.19515 -80.34592
## 2518                 72 spring       L 25.19515 -80.34592
## 2519                 72 spring       L 25.19515 -80.34592
## 2521                 72 spring       L 25.19515 -80.34592
## 2523                 72 spring       L 25.19515 -80.34592
## 2524                 72 spring       L 25.19515 -80.34592
## 2525                 72 spring       L 25.19515 -80.34592
## 2526                 72 spring       L 25.19515 -80.34592
## 2527                 72 spring       L 25.19515 -80.34592
## 2530                 72 spring       L 25.19515 -80.34592
## 2535                 72 spring       L 25.19515 -80.34592
## 2537                 72 spring       L 25.19515 -80.34592
## 2541                 72 spring       L 25.19515 -80.34592
## 2543                 72 spring       L 25.19515 -80.34592
## 2544                 72 spring       L 25.19515 -80.34592
## 2545                 72 spring       L 25.19515 -80.34592
## 2546                 72 spring       L 25.19515 -80.34592
## 2549                 72 spring       L 25.19515 -80.34592
## 2554                 72 spring       L 25.19515 -80.34592
## 2561                 72 spring       L 25.19515 -80.34592
## 2566                 72 spring       L 25.19515 -80.34592
## 2567                 72 spring       L 25.19515 -80.34592
## 2568                 72 spring       L 25.19515 -80.34592
## 2569                 72 spring       L 25.19515 -80.34592
## 2570                 72 spring       L 25.19515 -80.34592
## 2572                 72 spring       L 25.19515 -80.34592
## 2573                 72 spring       L 25.19515 -80.34592
## 2574                 72 spring       L 25.19515 -80.34592
## 2575                 72 spring       L 25.19515 -80.34592
## 2576                 72 spring       L 25.19515 -80.34592
## 2577                 72 spring       L 25.19515 -80.34592
## 2578                 72 spring       L 25.19515 -80.34592
## 2579                 72 spring       L 25.19515 -80.34592
## 2580                 72 spring       L 25.19515 -80.34592
## 2581                 72 spring       L 25.19515 -80.34592
## 2582                 72 spring       L 25.19515 -80.34592
## 2584                 72 spring       L 25.19515 -80.34592
## 2585                 72 spring       L 25.19515 -80.34592
## 2586                 72 spring       L 25.19515 -80.34592
## 2587                 72 spring       L 25.19515 -80.34592
## 2588                 72 spring       L 25.19515 -80.34592
## 2590                 72 spring       L 25.19515 -80.34592
## 2591                 72 spring       L 25.19515 -80.34592
## 2592                 72 spring       L 25.19515 -80.34592
## 2593                 72 spring       L 25.19515 -80.34592
## 2595                 72 spring       L 25.19515 -80.34592
## 2596                 72 spring       L 25.19515 -80.34592
## 2597                 72 spring       L 25.19515 -80.34592
## 2598                 72 spring       L 25.19515 -80.34592
## 2600                 72 spring       L 25.19515 -80.34592
## 2604                 72 spring       L 24.96448 -80.56739
## 2606                 72 spring       L 24.96448 -80.56739
## 2607                 72 spring       L 24.96448 -80.56739
## 2608                 72 spring       L 24.96448 -80.56739
## 2614                 72 spring       L 24.96448 -80.56739
## 2622                 72 spring       L 24.96448 -80.56739
## 2624                 72 spring       L 24.96448 -80.56739
## 2625                 72 spring       L 24.96448 -80.56739
## 2628                 72 spring       L 24.96448 -80.56739
## 2629                 72 spring       L 24.96448 -80.56739
## 2634                 72 spring       L 24.96448 -80.56739
## 2637                 77   fall       L 29.66182 -82.34721
## 2638                 77   fall       L 29.66182 -82.34721
## 2639                 77   fall       L 29.66182 -82.34721
## 2640                 77   fall       L 29.66182 -82.34721
## 2641                 77   fall       L 29.66182 -82.34721
## 2645                 77   fall       L 29.66182 -82.34721
## 2647                 77   fall       L 29.66182 -82.34721
## 2651                 77   fall       L 29.66182 -82.34721
## 2652                 77   fall       L 29.66182 -82.34721
## 2653                 77   fall       L 25.49197 -80.48562
## 2654                 77   fall       L 25.49197 -80.48562
## 2655                 77   fall       L 25.49197 -80.48562
## 2656                 77   fall       L 25.49197 -80.48562
## 2657                 77   fall       L 25.49197 -80.48562
## 2658                 77   fall       L 25.49197 -80.48562
## 2659                 77   fall       L 25.49197 -80.48562
## 2660                 77   fall       L 25.49197 -80.48562
## 2661                 77   fall       L 25.49197 -80.48562
## 2662                 77   fall       L 25.49197 -80.48562
## 2663                 77   fall       L 25.49197 -80.48562
## 2664                 77   fall       L 25.49197 -80.48562
## 2665                 77   fall       L 25.49197 -80.48562
## 2666                 77   fall       L 25.49197 -80.48562
## 2667                 77   fall       L 25.49197 -80.48562
## 2669                 77   fall       L 25.49197 -80.48562
## 2670                 77   fall       L 25.49197 -80.48562
## 2671                 77   fall       L 25.49197 -80.48562
## 2672                 77   fall       L 25.49197 -80.48562
## 2673                 77   fall       L 25.49197 -80.48562
## 2674                 77   fall       L 25.49197 -80.48562
## 2675                 77   fall       L 25.49197 -80.48562
## 2676                 77   fall       L 25.49197 -80.48562
## 2677                 77   fall       L 25.49197 -80.48562
## 2678                 77   fall       L 25.49197 -80.48562
## 2679                 77   fall       L 25.49197 -80.48562
## 2683                 77   fall       L 25.49197 -80.48562
## 2684                 77   fall       L 25.49197 -80.48562
## 2685                 77   fall       L 25.49197 -80.48562
## 2686                 77   fall       L 25.49197 -80.48562
## 2687                 77   fall       L 25.49197 -80.48562
## 2693                 77   fall       L 25.19515 -80.34592
## 2695                 77   fall       L 25.19515 -80.34592
## 2697                 77   fall       L 25.19515 -80.34592
## 2698                 77   fall       L 25.19515 -80.34592
## 2701                 77   fall       L 25.19515 -80.34592
## 2704                 77   fall       L 27.29866 -81.36612
## 2705                 77   fall       L 27.29866 -81.36612
## 2706                 77   fall       L 27.29866 -81.36612
## 2707                 77   fall       L 27.29866 -81.36612
## 2709                 77   fall       L 27.29866 -81.36612
## 2710                 77   fall       L 27.29866 -81.36612
## 2711                 77   fall       L 27.29866 -81.36612
## 2712                 77   fall       L 27.29866 -81.36612
## 2713                 77   fall       L 27.29866 -81.36612
## 2716                 77   fall       L 27.29866 -81.36612
## 2717                 77   fall       L 27.29866 -81.36612
## 2718                 77   fall       L 27.29866 -81.36612
## 2719                 77   fall       L 27.29866 -81.36612
## 2720                 77   fall       L 27.29866 -81.36612
## 2721                 77   fall       L 27.29866 -81.36612
## 2722                 77   fall       L 27.29866 -81.36612
## 2723                 77   fall       L 27.29866 -81.36612
## 2724                 77   fall       L 27.29866 -81.36612
## 2725                 77   fall       L 27.29866 -81.36612
## 2726                 77   fall       L 27.29866 -81.36612
## 2727                 77   fall       L 27.29866 -81.36612
## 2728                 77   fall       L 27.29866 -81.36612
## 2730                 77   fall       L 27.29866 -81.36612
## 2731                 77   fall       L 27.29866 -81.36612
## 2733                 77   fall       L 27.29866 -81.36612
## 2734                 77   fall       L 27.29866 -81.36612
## 2735                 77   fall       L 27.29866 -81.36612
## 2736                 77   fall       L 27.29866 -81.36612
## 2737                 77   fall       L 27.29866 -81.36612
## 2738                 77   fall       L 27.29866 -81.36612
## 2739                 77   fall       L 27.29866 -81.36612
## 2740                 77   fall       L 27.29866 -81.36612
## 2741                 77   fall       L 27.29866 -81.36612
## 2742                 77   fall       L 27.29866 -81.36612
## 2743                 77   fall       L 27.29866 -81.36612
## 2744                 77   fall       L 27.29866 -81.36612
## 2745                 77   fall       L 27.29866 -81.36612
## 2747                 77   fall       L 27.90335 -81.58946
## 2748                 77   fall       L 27.90335 -81.58946
## 2749                 77   fall       L 27.90335 -81.58946
## 2752                 77   fall       L 27.90335 -81.58946
## 2754                 77   fall       L 27.90335 -81.58946
## 2756                 77   fall       L 27.90335 -81.58946
## 2757                 77   fall       L 27.90335 -81.58946
## 2758                 77   fall       L 27.90335 -81.58946
## 2759                 77   fall       L 27.90335 -81.58946
## 2760                 77   fall       L 27.90335 -81.58946
## 2761                 77   fall       L 27.90335 -81.58946
## 2763                 77   fall       L 27.90335 -81.58946
## 2764                 77   fall       L 27.90335 -81.58946
## 2765                 77   fall       L 27.90335 -81.58946
## 2767                 77   fall       L 27.90335 -81.58946
## 2768                 77   fall       L 27.90335 -81.58946
## 2769                 77   fall       L 27.90335 -81.58946
## 2772                 77   fall       L 28.81298 -81.87789
## 2773                 77   fall       L 28.81298 -81.87789
## 2774                 77   fall       L 28.81298 -81.87789
## 2777                 77   fall       L 28.81298 -81.87789
## 2779                 77   fall       L 28.81298 -81.87789
## 2780                 77   fall       L 28.81298 -81.87789
## 2781                 77   fall       L 28.81298 -81.87789
## 2782                 77   fall       L 28.81298 -81.87789
## 2784                 77   fall       L 28.81527 -81.88217
## 2785                 77   fall       L 28.81527 -81.88217
## 2786                 77   fall       L 28.81527 -81.88217
## 2787                 77   fall       L 28.81527 -81.88217
## 2788                 77   fall       L 28.81527 -81.88217
## 2789                 77   fall       L 28.81527 -81.88217
## 2791                 77   fall       L 28.81527 -81.88217
## 2792                 77   fall       L 28.81527 -81.88217
## 2794                 77   fall       L 28.81527 -81.88217
## 2795                 77   fall       L 28.81527 -81.88217
## 2797                 77   fall       L 28.81527 -81.88217
## 2798                 77   fall       L 25.19515 -80.34592
## 2799                 77   fall       L 25.19515 -80.34592
## 2800                 77   fall       L 25.19515 -80.34592
## 2801                 77   fall       L 25.19515 -80.34592
## 2802                 77   fall       L 25.19515 -80.34592
## 2806                 77   fall       L 25.19515 -80.34592
## 2807                 77   fall       L 25.19515 -80.34592
## 2808                 77   fall       L 25.19515 -80.34592
## 2810                 77   fall       L 25.19515 -80.34592
## 2812                 77   fall       L 25.19515 -80.34592
## 2813                 77   fall       L 25.19515 -80.34592
## 2816                 77   fall       L 25.19515 -80.34592
## 2820                 77   fall       L 25.19515 -80.34592
## 2823                 77   fall       L 25.19515 -80.34592
## 2826                 77   fall       L 25.19515 -80.34592
## 2830                 77   fall       L 25.19515 -80.34592
## 2831                 77   fall       L 25.19515 -80.34592
## 2833                 77   fall       L 25.19515 -80.34592
## 2834                 77   fall       L 25.19515 -80.34592
## 2835                 77   fall       L 25.19515 -80.34592
## 2836                 77   fall       L 25.19515 -80.34592
## 2837                 77   fall       L 25.19515 -80.34592
## 2839                 77   fall       L 25.19515 -80.34592
## 2841                 77   fall       L 25.19515 -80.34592
## 2842                 77   fall       L 25.19515 -80.34592
## 2844                 77   fall       L 25.19515 -80.34592
## 2845                 77   fall       L 25.19515 -80.34592
## 2847                 77   fall       L 25.19515 -80.34592
## 2848                 77   fall       L 25.19515 -80.34592
## 2850                 77   fall       L 25.19515 -80.34592
## 2851                 77   fall       L 25.19515 -80.34592
## 2853                 77   fall       L 25.19515 -80.34592
## 2854                 77   fall       L 25.19515 -80.34592
## 2855                 77   fall       L 25.19515 -80.34592
## 2856                 77   fall       L 25.19515 -80.34592
## 2859                 77   fall       L 25.19515 -80.34592
## 2860                 77   fall       L 25.19515 -80.34592
## 2862                 77   fall       L 25.19515 -80.34592
## 2863                 77   fall       L 25.19515 -80.34592
## 2864                 77   fall       L 25.19515 -80.34592
## 2868                 77   fall       L 25.19515 -80.34592
## 2869                 77   fall       L 25.19515 -80.34592
## 2871                 77   fall       L 25.19515 -80.34592
## 2878                 77   fall       L 25.19515 -80.34592
## 2884                 77   fall       L 24.98519 -80.54710
## 2886                 77   fall       L 24.98519 -80.54710
## 2887                 77   fall       L 24.98519 -80.54710
## 2891                 77   fall       L 24.98519 -80.54710
## 2892                 77   fall       L 24.98519 -80.54710
## 2893                 77   fall       L 24.98519 -80.54710
## 2895                 77   fall       L 24.98519 -80.54710
## 2896                 77   fall       L 24.98519 -80.54710
## 2897                 81 winter       L 29.66200 -82.34731
## 2899                 81 winter       L 29.66200 -82.34731
## 2900                 81 winter       L 29.66200 -82.34731
## 2901                 81 winter       L 29.66200 -82.34731
## 2904                 81 winter       L 29.66200 -82.34731
## 2905                 81 winter       L 29.66200 -82.34731
## 2906                 81 winter       L 29.66200 -82.34731
## 2907                 81 winter       L 29.66200 -82.34731
## 2908                 81 winter       L 29.66200 -82.34731
## 2911                 81 winter       L 29.66200 -82.34731
## 2912                 81 winter       L 29.66200 -82.34731
## 2914                 81 winter       L 29.66202 -82.34731
## 2917                 81 winter       L 29.66202 -82.34731
## 2919                 81 winter       L 29.66202 -82.34731
## 2921                 81 winter       L 29.66202 -82.34731
## 2923                 81 winter       L 29.66202 -82.34731
## 2929                 81 winter       L 29.66202 -82.34731
## 2930                 81 winter       L 29.66202 -82.34731
## 2931                 81 winter       L 29.66202 -82.34731
## 2932                 81 winter       L 29.66202 -82.34731
## 2933                 81 winter       L 25.49136 -80.48582
## 2934                 81 winter       L 25.49136 -80.48582
## 2935                 81 winter       L 25.49136 -80.48582
## 2936                 81 winter       L 25.49136 -80.48582
## 2937                 81 winter       L 25.49136 -80.48582
## 2939                 81 winter       L 25.49136 -80.48582
## 2940                 81 winter       L 25.49136 -80.48582
## 2944                 81 winter       L 25.49136 -80.48582
## 2945                 81 winter       L 25.49136 -80.48582
## 2947                 81 winter       L 25.49136 -80.48582
## 2948                 81 winter       L 25.49136 -80.48582
## 2949                 81 winter       L 25.49136 -80.48582
## 2950                 81 winter       L 25.49136 -80.48582
## 2951                 81 winter       L 25.49136 -80.48582
## 2952                 81 winter       L 25.49136 -80.48582
## 2953                 81 winter       L 25.49136 -80.48582
## 2954                 81 winter       L 25.49136 -80.48582
## 2955                 81 winter       L 25.49136 -80.48582
## 2956                 81 winter       L 25.49136 -80.48582
## 2957                 81 winter       L 25.49136 -80.48582
## 2958                 81 winter       L 25.49136 -80.48582
## 2959                 81 winter       L 25.49136 -80.48582
## 2960                 81 winter       L 25.49136 -80.48582
## 2964                 81 winter       L 25.49136 -80.48582
## 2965                 81 winter       L 25.49136 -80.48582
## 2970                 81 winter       L 25.49136 -80.48582
## 2971                 81 winter       L 25.49136 -80.48582
## 2972                 81 winter       L 25.49136 -80.48582
## 2973                 81 winter       L 25.49136 -80.48582
## 2974                 81 winter       L 25.49136 -80.48582
## 2975                 81 winter       L 25.10002 -80.43752
## 2976                 81 winter       L 25.10002 -80.43752
## 2978                 81 winter       L 25.10002 -80.43752
## 2979                 81 winter       L 25.12846 -80.40809
## 2980                 81 winter       L 25.12846 -80.40809
## 2981                 81 winter       L 25.12846 -80.40809
## 2982                 81 winter       L 25.12846 -80.40809
## 2983                 81 winter       L 25.12846 -80.40809
## 2984                 81 winter       L 25.12846 -80.40809
## 2985                 81 winter       L 25.10002 -80.43752
## 2986                 81 winter       L 25.10002 -80.43752
## 2987                 81 winter       L 25.10002 -80.43752
## 2988                 81 winter       L 25.10002 -80.43752
## 2990                 81 winter       L 25.12846 -80.40809
## 2991                 81 winter       L 25.12846 -80.40809
## 2992                 81 winter       L 25.12846 -80.40809
## 2994                 81 winter       L 25.10002 -80.43752
## 2995                 81 winter       L 25.10002 -80.43752
## 2997                 81 winter       L 25.10002 -80.43752
## 2998                 81 winter       L 25.10002 -80.43752
## 2999                 81 winter       L 25.12846 -80.40809
## 3000                 81 winter       L 25.12846 -80.40809
## 3001                 81 winter       L 25.12846 -80.40809
## 3002                 81 winter       L 25.12846 -80.40809
## 3004                 81 winter       L 25.10002 -80.43752
## 3005                 81 winter       L 25.10002 -80.43752
## 3006                 81 winter       L 25.10002 -80.43752
## 3007                 81 winter       L 25.10002 -80.43752
## 3009                 81 winter       L 25.12846 -80.40809
## 3010                 81 winter       L 25.12846 -80.40809
## 3011                 81 winter       L 25.12846 -80.40809
## 3013                 81 winter       L 25.10002 -80.43752
## 3014                 81 winter       L 25.10002 -80.43752
## 3015                 81 winter       L 25.10002 -80.43752
## 3016                 81 winter       L 25.10002 -80.43752
## 3019                 81 winter       L 25.12846 -80.40809
## 3020                 81 winter       L 25.12846 -80.40809
## 3045                 81 winter       L 25.12858 -80.40809
## 3050                 81 winter       L 25.12858 -80.40809
## 3052                 81 winter       L 25.12858 -80.40809
## 3053                 81 winter       L 25.12858 -80.40809
## 3054                 81 winter       L 27.29866 -81.36612
## 3055                 81 winter       L 27.29866 -81.36612
## 3056                 81 winter       L 27.29866 -81.36612
## 3057                 81 winter       L 27.29866 -81.36612
## 3058                 81 winter       L 27.29866 -81.36612
## 3059                 81 winter       L 27.29866 -81.36612
## 3060                 81 winter       L 27.29866 -81.36612
## 3061                 81 winter       L 27.29866 -81.36612
## 3062                 81 winter       L 27.29866 -81.36612
## 3063                 81 winter       L 27.29866 -81.36612
## 3064                 81 winter       L 27.29866 -81.36612
## 3066                 81 winter       L 27.29866 -81.36612
## 3067                 81 winter       L 27.29866 -81.36612
## 3068                 81 winter       L 27.29866 -81.36612
## 3069                 81 winter       L 27.29866 -81.36612
## 3070                 81 winter       L 27.29866 -81.36612
## 3071                 81 winter       L 27.29866 -81.36612
## 3072                 81 winter       L 27.29866 -81.36612
## 3073                 81 winter       L 27.29866 -81.36612
## 3074                 81 winter       L 27.29866 -81.36612
## 3075                 81 winter       L 27.29866 -81.36612
## 3076                 81 winter       L 27.29866 -81.36612
## 3077                 81 winter       L 27.29866 -81.36612
## 3078                 81 winter       L 27.29866 -81.36612
## 3079                 81 winter       L 27.29866 -81.36612
## 3080                 81 winter       L 27.29866 -81.36612
## 3081                 81 winter       L 27.29866 -81.36612
## 3082                 81 winter       L 27.29866 -81.36612
## 3083                 81 winter       L 27.29866 -81.36612
## 3084                 81 winter       L 27.29866 -81.36612
## 3085                 81 winter       L 27.29866 -81.36612
## 3086                 81 winter       L 27.29866 -81.36612
## 3087                 81 winter       L 27.29866 -81.36612
## 3088                 81 winter       L 27.29866 -81.36612
## 3089                 81 winter       L 27.29866 -81.36612
## 3090                 81 winter       L 27.29866 -81.36612
## 3091                 81 winter       L 27.29866 -81.36612
## 3092                 81 winter       L 27.29866 -81.36612
## 3093                 81 winter       L 27.29866 -81.36612
## 3094                 81 winter       L 27.29866 -81.36612
## 3095                 81 winter       L 27.29866 -81.36612
## 3096                 81 winter       L 27.29866 -81.36612
## 3097                 81 winter       L 27.89674 -81.58047
## 3098                 81 winter       L 27.89674 -81.58047
## 3099                 81 winter       L 27.89674 -81.58047
## 3100                 81 winter       L 27.89674 -81.58047
## 3101                 81 winter       L 27.89674 -81.58047
## 3102                 81 winter       L 27.89674 -81.58047
## 3103                 81 winter       L 27.89674 -81.58047
## 3105                 81 winter       L 27.89674 -81.58047
## 3107                 81 winter       L 27.89674 -81.58047
## 3108                 81 winter       L 27.89674 -81.58047
## 3109                 81 winter       L 27.89674 -81.58047
## 3110                 81 winter       L 27.89674 -81.58047
## 3111                 81 winter       L 27.89674 -81.58047
## 3112                 81 winter       L 27.89674 -81.58047
## 3113                 81 winter       L 27.89674 -81.58047
## 3115                 81 winter       L 27.89674 -81.58047
## 3116                 81 winter       L 27.89674 -81.58047
## 3117                 81 winter       L 27.89674 -81.58047
## 3118                 81 winter       L 27.89674 -81.58047
## 3119                 81 winter       L 27.89674 -81.58047
## 3120                 81 winter       L 27.89674 -81.58047
## 3121                 81 winter       L 27.89674 -81.58047
## 3122                 81 winter       L 27.89674 -81.58047
## 3123                 81 winter       L 27.89674 -81.58047
## 3124                 81 winter       L 27.89674 -81.58047
## 3125                 81 winter       L 27.89674 -81.58047
## 3126                 81 winter       L 27.89674 -81.58047
## 3127                 81 winter       L 27.89674 -81.58047
## 3128                 81 winter       L 27.89674 -81.58047
## 3129                 81 winter       L 27.89674 -81.58047
## 3131                 81 winter       L 27.89674 -81.58047
## 3132                 81 winter       L 27.89674 -81.58047
## 3133                 81 winter       L 27.89674 -81.58047
## 3134                 81 winter       L 27.89674 -81.58047
## 3135                 81 winter       L 27.89674 -81.58047
## 3136                 81 winter       L 27.89674 -81.58047
## 3137                 81 winter       L 27.89674 -81.58047
## 3138                 81 winter       L 27.89674 -81.58047
## 3139                 81 winter       L 27.89674 -81.58047
## 3140                 81 winter       L 27.89674 -81.58047
## 3141                 81 winter       L 27.89674 -81.58047
## 3142                 81 winter       L 27.89674 -81.58047
## 3143                 81 winter       L 27.89674 -81.58047
## 3144                 81 winter       L 27.89674 -81.58047
## 3145                 81 winter       L 27.89674 -81.58047
## 3146                 81 winter       L 27.89674 -81.58047
## 3147                 81 winter       L 28.79634 -81.87788
## 3148                 81 winter       L 28.79634 -81.87788
## 3149                 81 winter       L 28.79634 -81.87788
## 3150                 81 winter       L 28.79634 -81.87788
## 3151                 81 winter       L 28.79634 -81.87788
## 3152                 81 winter       L 28.79634 -81.87788
## 3153                 81 winter       L 28.79634 -81.87788
## 3154                 81 winter       L 28.79634 -81.87788
## 3155                 81 winter       L 28.79634 -81.87788
## 3157                 81 winter       L 28.79634 -81.87788
## 3158                 81 winter       L 28.79634 -81.87788
## 3159                 81 winter       L 28.79634 -81.87788
## 3160                 81 winter       L 28.79634 -81.87788
## 3162                 81 winter       L 28.79634 -81.87788
## 3164                 81 winter       L 28.79634 -81.87788
## 3165                 81 winter       L 28.79634 -81.87788
## 3167                 81 winter       L 28.79634 -81.87788
## 3168                 81 winter       L 28.79634 -81.87788
## 3169                 81 winter       L 28.79634 -81.87788
## 3170                 81 winter       L 28.79634 -81.87788
## 3171                 81 winter       L 28.79634 -81.87788
## 3172                 81 winter       L 28.79634 -81.87788
## 3175                 81 winter       L 28.79634 -81.87788
## 3176                 81 winter       L 28.79634 -81.87788
## 3177                 81 winter       L 25.19515 -80.34592
## 3178                 81 winter       L 25.19515 -80.34592
## 3180                 81 winter       L 25.19515 -80.34592
## 3181                 81 winter       L 25.19515 -80.34592
## 3182                 81 winter       L 25.19515 -80.34592
## 3183                 81 winter       L 25.19515 -80.34592
## 3185                 81 winter       L 25.19515 -80.34592
## 3186                 81 winter       L 25.19515 -80.34592
## 3187                 81 winter       L 25.19515 -80.34592
## 3189                 81 winter       L 25.19515 -80.34592
## 3190                 81 winter       L 25.19515 -80.34592
## 3191                 81 winter       L 25.19515 -80.34592
## 3192                 81 winter       L 25.19515 -80.34592
## 3193                 81 winter       L 25.19515 -80.34592
## 3194                 81 winter       L 25.19515 -80.34592
## 3196                 81 winter       L 25.19515 -80.34592
## 3197                 81 winter       L 25.19515 -80.34592
## 3198                 81 winter       L 25.19515 -80.34592
## 3199                 81 winter       L 25.19515 -80.34592
## 3200                 81 winter       L 25.19515 -80.34592
## 3201                 81 winter       L 25.19515 -80.34592
## 3202                 81 winter       L 25.19515 -80.34592
## 3203                 81 winter       L 25.19515 -80.34592
## 3205                 81 winter       L 25.19515 -80.34592
## 3206                 81 winter       L 25.19515 -80.34592
## 3207                 81 winter       L 25.19515 -80.34592
## 3209                 81 winter       L 25.19515 -80.34592
## 3210                 81 winter       L 25.19515 -80.34592
## 3211                 81 winter       L 25.19515 -80.34592
## 3212                 81 winter       L 25.19515 -80.34592
## 3213                 81 winter       L 25.19515 -80.34592
## 3214                 81 winter       L 25.19515 -80.34592
## 3215                 81 winter       L 25.19515 -80.34592
## 3216                 81 winter       L 25.19515 -80.34592
## 3218                 81 winter       L 25.19515 -80.34592
## 3219                 81 winter       L 25.19515 -80.34592
## 3220                 81 winter       L 25.19515 -80.34592
## 3221                 81 winter       L 25.19515 -80.34592
## 3222                 81 winter       L 25.19515 -80.34592
## 3223                 81 winter       L 25.19515 -80.34592
## 3224                 81 winter       L 25.19515 -80.34592
## 3226                 81 winter       L 25.19515 -80.34592
## 3227                 81 winter       L 25.19515 -80.34592
## 3229                 81 winter       L 25.19515 -80.34592
## 3230                 81 winter       L 25.19515 -80.34592
## 3231                 81 winter       L 25.19515 -80.34592
## 3232                 81 winter       L 25.19515 -80.34592
## 3234                 81 winter       L 25.19515 -80.34592
## 3235                 81 winter       L 25.19515 -80.34592
## 3236                 81 winter       L 25.19515 -80.34592
## 3237                 81 winter       L 25.19515 -80.34592
## 3238                 81 winter       L 25.19515 -80.34592
## 3239                 81 winter       L 25.19515 -80.34592
## 3240                 81 winter       L 25.19515 -80.34592
## 3241                 81 winter       L 25.19515 -80.34592
## 3242                 81 winter       L 25.19515 -80.34592
## 3243                 81 winter       L 25.19515 -80.34592
## 3244                 81 winter       L 25.19515 -80.34592
## 3246                 81 winter       L 25.19515 -80.34592
## 3247                 81 winter       L 25.19515 -80.34592
## 3248                 81 winter       L 25.19515 -80.34592
## 3249                 81 winter       L 25.19515 -80.34592
## 3250                 81 winter       L 25.19515 -80.34592
## 3251                 81 winter       L 25.19515 -80.34592
## 3252                 81 winter       L 25.19515 -80.34592
## 3253                 81 winter       L 25.19515 -80.34592
## 3254                 81 winter       L 25.19515 -80.34592
## 3255                 81 winter       L 25.19515 -80.34592
## 3256                 81 winter       L 25.19515 -80.34592
## 3257                 81 winter       L 25.19515 -80.34592
## 3258                 81 winter       L 25.19515 -80.34592
## 3259                 81 winter       L 25.19515 -80.34592
## 3260                 81 winter       L 25.19515 -80.34592
## 3261                 81 winter       L 25.19515 -80.34592
## 3262                 81 winter       L 25.19515 -80.34592
## 3263                 81 winter       L 25.19515 -80.34592
## 3264                 81 winter       L 25.19515 -80.34592
## 3265                 81 winter       L 25.19515 -80.34592
## 3266                 81 winter       L 25.19515 -80.34592
## 3267                 81 winter       L 25.19515 -80.34592
## 3268                 81 winter       L 25.19515 -80.34592
## 3269                 81 winter       L 25.19515 -80.34592
## 3270                 81 winter       L 25.19515 -80.34592
## 3271                 81 winter       L 25.19515 -80.34592
## 3273                 81 winter       L 25.19515 -80.34592
## 3274                 81 winter       L 25.19515 -80.34592
## 3279                 81 winter       L 25.19515 -80.34592
## 3280                 81 winter       L 25.19515 -80.34592
## 3281                 81 winter       L 25.19515 -80.34592
## 3282                 81 winter       L 25.19515 -80.34592
## 3283                 81 winter       L 25.19515 -80.34592
## 3285                 81 winter       L 25.19515 -80.34592
## 3287                 81 winter       L 25.19515 -80.34592
## 3288                 81 winter       L 25.19515 -80.34592
## 3289                 81 winter       L 25.19515 -80.34592
## 3290                 81 winter       L 25.19515 -80.34592
## 3291                 81 winter       L 25.19515 -80.34592
## 3292                 81 winter       L 25.19515 -80.34592
## 3293                 81 winter       L 25.19515 -80.34592
## 3294                 81 winter       L 25.19515 -80.34592
## 3295                 81 winter       L 25.19515 -80.34592
## 3296                 81 winter       L 25.19515 -80.34592
## 3297                 81 winter       L 25.19515 -80.34592
## 3300                 81 winter       L 25.19515 -80.34592
## 3301                 81 winter       L 25.19515 -80.34592
## 3302                 81 winter       L 25.19515 -80.34592
## 3303                 81 winter       L 25.19515 -80.34592
## 3304                 81 winter       L 25.19515 -80.34592
## 3305                 81 winter       L 25.19515 -80.34592
## 3306                 81 winter       L 25.19515 -80.34592
## 3307                 81 winter       L 25.19515 -80.34592
## 3308                 81 winter       L 25.19515 -80.34592
## 3309                 81 winter       L 25.19515 -80.34592
## 3311                 81 winter       L 25.19515 -80.34592
## 3312                 81 winter       L 25.19515 -80.34592
## 3313                 81 winter       L 25.19515 -80.34592
## 3314                 81 winter       L 25.19515 -80.34592
## 3315                 81 winter       L 25.19515 -80.34592
## 3316                 81 winter       L 25.19515 -80.34592
## 3317                 81 winter       L 25.19515 -80.34592
## 3318                 81 winter       L 25.19515 -80.34592
## 3319                 81 winter       L 25.19515 -80.34592
## 3320                 81 winter       L 25.19515 -80.34592
## 3321                 81 winter       L 25.19515 -80.34592
## 3322                 81 winter       L 25.19515 -80.34592
## 3323                 81 winter       L 25.19515 -80.34592
## 3325                 81 winter       L 25.19515 -80.34592
## 3327                 81 winter       L 25.19515 -80.34592
## 3332                 81 winter       L 25.19515 -80.34592
## 3339                 81 winter       L 25.19515 -80.34592
## 3340                 81 winter       L 25.19515 -80.34592
## 3341                 81 winter       L 25.19515 -80.34592
## 3342                 81 winter       L 25.19515 -80.34592
## 3343                 81 winter       L 25.19515 -80.34592
## 3348                 81 winter       L 25.19515 -80.34592
## 3350                 81 winter       L 25.19515 -80.34592
## 3351                 81 winter       L 25.19515 -80.34592
## 3379                 81 winter       L 25.19515 -80.34592
## 3391                 81 winter       L 25.19515 -80.34592
## 3394                 81 winter       L 25.19515 -80.34592
## 3396                 81 winter       L 25.19515 -80.34592
## 3398                 81 winter       L 25.19515 -80.34592
## 3399                 81 winter       L 25.19515 -80.34592
## 3400                 81 winter       L 25.19515 -80.34592
## 3401                 81 winter       L 25.19515 -80.34592
## 3402                 81 winter       L 25.19515 -80.34592
## 3404                 81 winter       L 24.97357 -80.55392
## 3405                 81 winter       L 24.97357 -80.55392
## 3406                 81 winter       L 24.97357 -80.55392
## 3407                 81 winter       L 24.97357 -80.55392
## 3408                 81 winter       L 24.96424 -80.56733
## 3409                 81 winter       L 24.96424 -80.56733
## 3410                 81 winter       L 24.96424 -80.56733
## 3411                 81 winter       L 24.96424 -80.56733
## 3412                 81 winter       L 24.96424 -80.56733
## 3414                 81 winter       L 24.97357 -80.55392
## 3415                 81 winter       L 24.97357 -80.55392
## 3418                 81 winter       L 24.96424 -80.56733
## 3419                 81 winter       L 24.96424 -80.56733
## 3420                 81 winter       L 24.96424 -80.56733
## 3421                 81 winter       L 24.96424 -80.56733
## 3422                 81 winter       L 24.96424 -80.56733
## 3423                 81 winter       L 24.97357 -80.55392
## 3424                 81 winter       L 24.97357 -80.55392
## 3425                 81 winter       L 24.97357 -80.55392
## 3426                 81 winter       L 24.97357 -80.55392
## 3428                 81 winter       L 24.96424 -80.56733
## 3429                 81 winter       L 24.96424 -80.56733
## 3430                 81 winter       L 24.96424 -80.56733
## 3431                 81 winter       L 24.96424 -80.56733
## 3432                 81 winter       L 24.97357 -80.55392
## 3433                 81 winter       L 24.97357 -80.55392
## 3434                 81 winter       L 24.97357 -80.55392
## 3435                 81 winter       L 24.96424 -80.56733
## 3436                 81 winter       L 24.96424 -80.56733
## 3437                 81 winter       L 24.96424 -80.56733
## 3438                 81 winter       L 24.96424 -80.56733
## 3439                 81 winter       L 24.96424 -80.56733
## 3440                 81 winter       L 24.96424 -80.56733
## 3441                 81 winter       L 24.96424 -80.56733
## 3442                 81 winter       L 24.96424 -80.56733
## 3443                 81 winter       L 24.96424 -80.56733
## 3444                 81 winter       L 24.96424 -80.56733
## 3445                 81 winter       L 24.96424 -80.56733
## 3448                 81 winter       L 24.96424 -80.56733
## 3451                 81 winter       L 24.96424 -80.56733
## 3452                 81 winter       L 24.96424 -80.56733
## 3453                 81 winter       L 24.96424 -80.56733
## 3454                 81 winter       L 24.96424 -80.56733
## 3461                 81 winter       L 24.96424 -80.56733
## 3462                 81 winter       L 24.96424 -80.56733
## 3466                 81 winter       L 24.96424 -80.56733
## 3473                 81 winter       L 24.96424 -80.56733
## 3476                 77   fall       L 24.96424 -80.56733
## 3477                 77   fall       L 24.96424 -80.56733
## 3478                 77   fall       L 24.96424 -80.56733
## 3479                 77   fall       L 24.96424 -80.56733
## 3480                 77   fall       L 24.96424 -80.56733
## 3481                 77   fall       L 24.96424 -80.56733
## 3482                 77   fall       L 24.96424 -80.56733
## 3483                 77   fall       L 24.96424 -80.56733
## 3485                 77   fall       L 24.96424 -80.56733
## 3486                 77   fall       L 24.96424 -80.56733
## 3487                 77   fall       L 24.96424 -80.56733
## 3488                 77   fall       L 24.96424 -80.56733
## 3489                 77   fall       L 24.96424 -80.56733
## 3492                 77   fall       L 24.96424 -80.56733
## 3493                 77   fall       L 24.96424 -80.56733
## 3496                 77   fall       L 24.96424 -80.56733
## 3498                 77   fall       L 24.96424 -80.56733
## 3499                 77   fall       L 24.96424 -80.56733
## 3500                 77   fall       L 24.96424 -80.56733
## 3501                 77   fall       L 24.96424 -80.56733
## 3502                 77   fall       L 24.96424 -80.56733
## 3503                 77   fall       L 25.49136 -80.48582
## 3504                 77   fall       L 25.49136 -80.48582
## 3505                 77   fall       L 25.49136 -80.48582
## 3506                 77   fall       L 25.49136 -80.48582
## 3507                 77   fall       L 25.49136 -80.48582
## 3508                 77   fall       L 25.49136 -80.48582
## 3509                 77   fall       L 25.49136 -80.48582
## 3510                 77   fall       L 25.49136 -80.48582
## 3511                 77   fall       L 25.49136 -80.48582
## 3513                 77   fall       L 25.49136 -80.48582
## 3514                 77   fall       L 25.49136 -80.48582
## 3515                 77   fall       L 25.19515 -80.34592
## 3516                 77   fall       L 25.19515 -80.34592
## 3517                 77   fall       L 25.19515 -80.34592
## 3518                 77   fall       L 25.19515 -80.34592
## 3519                 77   fall       L 25.19515 -80.34592
## 3520                 77   fall       L 25.19515 -80.34592
## 3521                 77   fall       L 25.19515 -80.34592
## 3522                 77   fall       L 25.19515 -80.34592
## 3523                 77   fall       L 25.19515 -80.34592
## 3524                 77   fall       L 25.19515 -80.34592
## 3525                 77   fall       L 25.19515 -80.34592
## 3526                 77   fall       L 25.19515 -80.34592
## 3528                 77   fall       L 25.19515 -80.34592
## 3529                 77   fall       L 25.19515 -80.34592
## 3530                 77   fall       L 25.19515 -80.34592
## 3531                 77   fall       L 25.19515 -80.34592
## 3532                 77   fall       L 25.19515 -80.34592
## 3533                 77   fall       L 25.19515 -80.34592
## 3534                 77   fall       L 25.19515 -80.34592
## 3535                 77   fall       L 25.19515 -80.34592
## 3536                 77   fall       L 25.19515 -80.34592
## 3537                 77   fall       L 25.19515 -80.34592
## 3538                 77   fall       L 25.19515 -80.34592
## 3539                 77   fall       L 25.19515 -80.34592
## 3540                 77   fall       L 25.19515 -80.34592
## 3541                 77   fall       L 27.29863 -81.36615
## 3542                 77   fall       L 27.29863 -81.36615
## 3543                 77   fall       L 27.29863 -81.36615
## 3544                 77   fall       L 27.29863 -81.36615
## 3545                 77   fall       L 27.29863 -81.36615
## 3546                 77   fall       L 27.29863 -81.36615
## 3547                 77   fall       L 27.29863 -81.36615
## 3549                 77   fall       L 27.29863 -81.36615
## 3550                 77   fall       L 27.29863 -81.36615
## 3551                 77   fall       L 27.29863 -81.36615
## 3552                 77   fall       L 27.29863 -81.36615
## 3553                 77   fall       L 27.29863 -81.36615
## 3554                 77   fall       L 27.29863 -81.36615
## 3555                 77   fall       L 27.29863 -81.36615
## 3556                 77   fall       L 27.29863 -81.36615
## 3557                 77   fall       L 27.29863 -81.36615
## 3558                 77   fall       L 27.29863 -81.36615
## 3559                 77   fall       L 27.29863 -81.36615
## 3560                 77   fall       L 27.29863 -81.36615
## 3561                 77   fall       L 27.29863 -81.36615
## 3562                 77   fall       L 25.19515 -80.34592
## 3563                 77   fall       L 25.19515 -80.34592
## 3564                 77   fall       L 25.19515 -80.34592
## 3565                 77   fall       L 25.19515 -80.34592
## 3566                 43   fall       L 25.55090 -80.42110
## 3570                 77   fall       L 25.12846 -80.40809
## 3571                 77   fall       L 25.12846 -80.40809
## 3572                 77   fall       L 25.12846 -80.40809
## 3573                 77   fall       L 25.12846 -80.40809
## 3574                 77   fall       L 25.12846 -80.40809
## 3575                 77   fall       L 25.12846 -80.40809
## 3576                 77   fall       L 25.12846 -80.40809
## 3577                 77   fall       L 25.19515 -80.34592
## 3578                 77   fall       L 25.19515 -80.34592
## 3579                 77   fall       L 25.19515 -80.34592
## 3581                 77   fall       L 25.19515 -80.34592
## 3583                 77   fall       L 25.12848 -80.40754
## 3584                 77   fall       L 25.12848 -80.40754
## 3585                 77   fall       L 25.12848 -80.40754
## 3586                 77   fall       L 25.19515 -80.34592
## 3587                 77   fall       L 25.19515 -80.34592
## 3588                 77   fall       L 25.19515 -80.34592
## 3589                 77   fall       L 25.19515 -80.34592
## 3590                 77   fall       L 25.19515 -80.34592
## 3591                 77   fall       L 25.19515 -80.34592
## 3592                 72 spring       L 27.89664 -81.58064
## 3594                 72 spring       L 27.89664 -81.58064
## 3595                 72 spring       L 27.89664 -81.58064
## 3596                 72 spring       L 27.89664 -81.58064
## 3597                 72 spring       L 27.89664 -81.58064
## 3598                 72 spring       L 27.89664 -81.58064
## 3599                 72 spring       L 27.89664 -81.58064
## 3600                 72 spring       L 27.89664 -81.58064
## 3601                 72 spring       L 27.89664 -81.58064
## 3602                 72 spring       L 27.89664 -81.58064
## 3603                 72 spring       L 27.89664 -81.58064
## 3604                 72 spring       L 27.89664 -81.58064
## 3605                 72 spring       L 27.89664 -81.58064
## 3606                 72 spring       L 27.89664 -81.58064
## 3607                 72 spring       L 27.89664 -81.58064
## 3608                 72 spring       L 27.89664 -81.58064
## 3609                 72 spring       L 27.89664 -81.58064
## 3610                 72 spring       L 27.89664 -81.58064
## 3611                 72 spring       L 27.89664 -81.58064
## 3612                 72 spring       L 27.89664 -81.58064
## 3613                 72 spring       L 27.89664 -81.58064
## 3614                 72 spring       L 27.89664 -81.58064
## 3615                 72 spring       L 27.89664 -81.58064
## 3616                 72 spring       L 27.89664 -81.58064
## 3617                 72 spring       L 27.89664 -81.58064
## 3618                 72 spring       L 27.89664 -81.58064
## 3619                 72 spring       L 27.89664 -81.58064
## 3620                 72 spring       L 27.89664 -81.58064
## 3621                 72 spring       L 27.89664 -81.58064
## 3622                 72 spring       L 27.89664 -81.58064
## 3623                 72 spring       L 27.89664 -81.58064
## 3624                 72 spring       L 27.89664 -81.58064
## 3625                 72 spring       L 27.89664 -81.58064
## 3626                 72 spring       L 27.89664 -81.58064
## 3627                 72 spring       L 27.89664 -81.58064
## 3628                 72 spring       L 27.89664 -81.58064
## 3629                 72 spring       L 27.89664 -81.58064
## 3630                 72 spring       L 27.89664 -81.58064
## 3631                 72 spring       L 27.89664 -81.58064
## 3632                 72 spring       L 27.89664 -81.58064
## 3633                 72 spring       L 27.89664 -81.58064
## 3634                 72 spring       L 27.89664 -81.58064
## 3635                 72 spring       L 27.89664 -81.58064
## 3636                 72 spring       L 27.89664 -81.58064
## 3637                 72 spring       L 27.89664 -81.58064
## 3638                 72 spring       L 27.89664 -81.58064
## 3639                 72 spring       L 27.89664 -81.58064
## 3640                 72 spring       L 27.89664 -81.58064
## 3641                 72 spring       L 27.89664 -81.58064
## 3642                 72 spring       L 27.89664 -81.58064
## 3643                 72 spring       L 27.89664 -81.58064
## 3644                 72 spring       L 27.89664 -81.58064
## 3645                 72 spring       L 27.89664 -81.58064
## 3646                 72 spring       L 28.79642 -81.87792
## 3647                 72 spring       L 28.79642 -81.87792
## 3648                 72 spring       L 28.79642 -81.87792
## 3649                 72 spring       L 28.79642 -81.87792
## 3650                 72 spring       L 28.79642 -81.87792
## 3651                 72 spring       L 28.79642 -81.87792
## 3652                 72 spring       L 28.79642 -81.87792
## 3653                 72 spring       L 28.79642 -81.87792
## 3655                 72 spring       L 28.79642 -81.87792
## 3656                 72 spring       L 28.79642 -81.87792
## 3658                 72 spring       L 28.79642 -81.87792
## 3659                 72 spring       L 28.79642 -81.87792
## 3660                 72 spring       L 28.79642 -81.87792
## 3661                 72 spring       L 28.79642 -81.87792
## 3662                 72 spring       L 28.79642 -81.87792
## 3663                 72 spring       L 28.79642 -81.87792
## 3664                 72 spring       L 28.79642 -81.87792
## 3665                 72 spring       L 28.79642 -81.87792
## 3666                 72 spring       L 28.79642 -81.87792
## 3667                 72 spring       L 28.79642 -81.87792
## 3668                 72 spring       L 28.79642 -81.87792
## 3669                 72 spring       L 28.79642 -81.87792
## 3670                 72 spring       L 28.79642 -81.87792
## 3671                 72 spring       L 28.79642 -81.87792
## 3672                 72 spring       L 28.79642 -81.87792
## 3673                 72 spring       L 28.79642 -81.87792
## 3674                 72 spring       L 28.79642 -81.87792
## 3675                 72 spring       L 28.79642 -81.87792
## 3676                 72 spring       L 28.79642 -81.87792
## 3677                 72 spring       L 28.79642 -81.87792
## 3678                 72 spring       L 28.79642 -81.87792
## 3680                 72 spring       L 28.79642 -81.87792
## 3681                 72 spring       L 28.79642 -81.87792
## 3682                 72 spring       L 28.79642 -81.87792
## 3683                 72 spring       L 28.79642 -81.87792
## 3684                 72 spring       L 28.79642 -81.87792
## 3685                 72 spring       L 28.79642 -81.87792
## 3686                 72 spring       L 28.79642 -81.87792
## 3687                 72 spring       L 28.79642 -81.87792
## 3688                 72 spring       L 28.79642 -81.87792
## 3689                 72 spring       L 28.79642 -81.87792
## 3690                 72 spring       L 28.79642 -81.87792
## 3691                 72 spring       L 28.79642 -81.87792
## 3692                 72 spring       L 28.79642 -81.87792
## 3693                 72 spring       L 28.79642 -81.87792
## 3694                 72 spring       L 28.79642 -81.87792
## 3695                 72 spring       L 28.79642 -81.87792
## 3696                 72 spring       L 28.79642 -81.87792
## 3698                 72 spring       L 28.79642 -81.87792
## 3700                 72 spring       L 25.49116 -80.48571
## 3701                 72 spring       L 25.49116 -80.48571
## 3703                 72 spring       L 25.49116 -80.48571
## 3704                 72 spring       L 25.49116 -80.48571
## 3705                 72 spring       L 25.49116 -80.48571
## 3706                 72 spring       L 25.49116 -80.48571
## 3707                 72 spring       L 25.49116 -80.48571
## 3708                 72 spring       L 25.49116 -80.48571
## 3709                 72 spring       L 25.49116 -80.48571
## 3711                 72 spring       L 25.49116 -80.48571
## 3712                 72 spring       L 25.49116 -80.48571
## 3713                 72 spring       L 25.49116 -80.48571
## 3714                 72 spring       L 25.49116 -80.48571
## 3715                 72 spring       L 25.49116 -80.48571
## 3716                 72 spring       L 25.49116 -80.48571
## 3717                 72 spring       L 25.49116 -80.48571
## 3718                 72 spring       L 25.49116 -80.48571
## 3719                 72 spring       L 25.49116 -80.48571
## 3720                 72 spring       L 25.49116 -80.48571
## 3721                 72 spring       L 25.49116 -80.48571
## 3722                 72 spring       L 25.49116 -80.48571
## 3723                 72 spring       L 25.49116 -80.48571
## 3724                 72 spring       L 25.49116 -80.48571
## 3725                 72 spring       L 25.49116 -80.48571
## 3726                 72 spring       L 25.49116 -80.48571
## 3727                 72 spring       L 25.49116 -80.48571
## 3728                 72 spring       L 25.49116 -80.48571
## 3729                 72 spring       L 25.49116 -80.48571
## 3731                 72 spring       L 25.49116 -80.48571
## 3734                 72 spring       L 25.49116 -80.48571
## 3735                 72 spring       L 25.49116 -80.48571
## 3736                 72 spring       L 25.49116 -80.48571
##                             diapause field_date_collected
## 1                                              04.28.2013
## 2                                              04.28.2013
## 3                                              04.28.2013
## 4                                              04.28.2013
## 5                                              04.28.2013
## 6                                              04.28.2013
## 7                                              04.28.2013
## 8                                              04.28.2013
## 9                                              04.29.2013
## 10                                             04.29.2013
## 11                                             04.29.2013
## 12                                             04.29.2013
## 13                                             04.29.2013
## 14                                             04.29.2013
## 16                                             04.29.2013
## 17                                             04.29.2013
## 18                                             04.29.2013
## 19                                             04.29.2013
## 20                                             04.29.2013
## 21                                             04.29.2013
## 22                                             04.29.2013
## 23                                             04.29.2013
## 24                                             04.29.2013
## 25                                             04.29.2013
## 26                                             04.29.2013
## 104                                            05.06.2013
## 105                                            05.06.2013
## 106                                            05.06.2013
## 107                                            05.06.2013
## 109                                            05.06.2013
## 110                                            05.06.2013
## 111                                            05.06.2013
## 112                                            05.06.2013
## 114                                            05.06.2013
## 141                                            04.25.2013
## 142                                            04.25.2013
## 143                                            04.25.2013
## 144                                            04.25.2013
## 146                                            04.25.2013
## 147                                            04.25.2013
## 148                                            04.25.2013
## 149                                            04.25.2013
## 150                                            04.25.2013
## 152                                            04.25.2013
## 153                                            04.25.2013
## 202                                            04.30.2013
## 203                                            04.30.2013
## 204                                            04.30.2013
## 205                                            04.30.2013
## 206                                            04.30.2013
## 207                                            04.30.2013
## 208                                            04.30.2013
## 209                                            04.30.2013
## 210                                            04.30.2013
## 211                                            04.30.2013
## 213                                            04.30.2013
## 214                                            04.30.2013
## 215                                            04.30.2013
## 217                                            04.30.2013
## 219                                            04.30.2013
## 221                                            04.30.2013
## 222                                            04.30.2013
## 223                                            04.30.2013
## 224                                            04.30.2013
## 225                                            04.30.2013
## 226                                            04.30.2013
## 228                                            04.30.2013
## 229                                            04.30.2013
## 230                                            04.30.2013
## 837                                                      
## 839                                                      
## 840                                                      
## 841                                                      
## 844                                                      
## 845                                                      
## 847                                                      
## 848                                                      
## 849                                                      
## 850                                                      
## 851                                                      
## 852                                                      
## 853                                                      
## 854                                                      
## 856                                                      
## 857                                                      
## 858                                                      
## 859                                                      
## 860                                                      
## 861                                                      
## 862                                                      
## 863                                                      
## 865                                                      
## 866                                                      
## 867                                                      
## 868                                                      
## 870                                                      
## 871                                                      
## 872                                                      
## 873                                                      
## 874                                                      
## 875                                                      
## 877                                                      
## 878                                                      
## 879                                                      
## 880                                                      
## 881                                                      
## 882                                                      
## 883                                                      
## 884                                                      
## 886                                                      
## 887                                                      
## 888                                                      
## 889                                                      
## 890                                                      
## 905                                                      
## 907                                                      
## 911                                                      
## 912                                                      
## 915                                                      
## 917                                                      
## 918                                                      
## 975                                                      
## 978                                                      
## 986                                                      
## 990                                                      
## 993                                                      
## 995                                                      
## 996                                                      
## 997                                                      
## 1001                                                     
## 1012                                                     
## 1017                                                     
## 1023                                                     
## 1024                                                     
## 1025                                                     
## 1026                                                     
## 1027                                                     
## 1028                                                     
## 1029                                                     
## 1030                                                     
## 1031                                                     
## 1032                                                     
## 1033                                                     
## 1034                                                     
## 1035                                                     
## 1036                                                     
## 1037                                                     
## 1038                                                     
## 1039                                                     
## 1040                                                     
## 1041                                                     
## 1042                                                     
## 1043                                                     
## 1044                                                     
## 1045                                                     
## 1046                                                     
## 1047                                                     
## 1048                                                     
## 1049                                                     
## 1050                                                     
## 1051                                                     
## 1052                                                     
## 1054                                                     
## 1055                                                     
## 1056                                                     
## 1057                                                     
## 1058                                                     
## 1059                                                     
## 1060                                                     
## 1061                                                     
## 1062                                                     
## 1063                                                     
## 1064                                                     
## 1065                                                     
## 1066                                                     
## 1067                                                     
## 1068                                                     
## 1069                                                     
## 1070                                                     
## 1071                                                     
## 1072                                                     
## 1073                                                     
## 1074                                                     
## 1075                                                     
## 1076                                                     
## 1077                                                     
## 1078                                                     
## 1079                                                     
## 1080                                                     
## 1081                                                     
## 1082                                                     
## 1083                                                     
## 1084                                                     
## 1085                                                     
## 1086                                                     
## 1088                                                     
## 1089                                                     
## 1090                                                     
## 1091                                                     
## 1092                                                     
## 1093                                                     
## 1094                                                     
## 1095                                                     
## 1096                                                     
## 1097                                                     
## 1098                                                     
## 1099                                                     
## 1100                                                     
## 1101                                                     
## 1103                                                     
## 1104                                                     
## 1105                                                     
## 1106                                                     
## 1107                                                     
## 1108                                                     
## 1110                                                     
## 1111                                                     
## 1112                                                     
## 1117                                                     
## 1118                                                     
## 1119                                                     
## 1121                                                     
## 1122                                                     
## 1124                                                     
## 1125                  non-diapausing           12.18.2016
## 1126                  non-diapausing           12.18.2016
## 1127                  non-diapausing           12.18.2016
## 1128                  non-diapausing           12.18.2016
## 1129                  non-diapausing           12.18.2016
## 1130                  non-diapausing           12.18.2016
## 1131                  non-diapausing           12.18.2016
## 1132                  non-diapausing           12.18.2016
## 1133                  non-diapausing           12.18.2016
## 1134                  non-diapausing           12.18.2016
## 1135                  non-diapausing           12.18.2016
## 1136                  non-diapausing           12.18.2016
## 1137                  non-diapausing           12.18.2016
## 1138                  non-diapausing           12.18.2016
## 1142                  non-diapausing           12.18.2016
## 1143                  non-diapausing           12.18.2016
## 1144                  non-diapausing           12.18.2016
## 1146                  non-diapausing           12.18.2016
## 1148                  non-diapausing           12.18.2016
## 1155                  non-diapausing           12.18.2016
## 1156                  non-diapausing           12.18.2016
## 1158                  non-diapausing           12.18.2016
## 1160                  non-diapausing           12.18.2016
## 1161                  non-diapausing           12.18.2016
## 1162                  non-diapausing           12.18.2016
## 1164                  non-diapausing           12.18.2016
## 1166                  non-diapausing           12.18.2016
## 1167                  non-diapausing           12.18.2016
## 1170                  non-diapausing           12.18.2016
## 1174                  non-diapausing           12.18.2016
## 1176                  non-diapausing           12.18.2016
## 1177                  non-diapausing           12.18.2016
## 1178                  non-diapausing           12.18.2016
## 1179                  non-diapausing           12.18.2016
## 1180                  non-diapausing           12.18.2016
## 1181                  non-diapausing           12.18.2016
## 1182                                           12.15.2016
## 1185                                           12.15.2016
## 1186                                           12.15.2016
## 1188                                           12.15.2016
## 1189                                           12.15.2016
## 1191                                           12.15.2016
## 1192                                           12.15.2016
## 1193                                           12.15.2016
## 1194                                           12.15.2016
## 1203                                           12.14.2016
## 1204                                           12.14.2016
## 1205                                           12.14.2016
## 1208                                           12.14.2016
## 1209                                           12.14.2016
## 1210                                           12.14.2016
## 1213                                           12.14.2016
## 1215                                           12.14.2016
## 1217                                           12.14.2016
## 1219                                           12.14.2016
## 1221                                           12.14.2016
## 1222                                           12.14.2016
## 1225                                           12.14.2016
## 1228                                           12.14.2016
## 1230                                           12.14.2016
## 1235                                           12.14.2016
## 1238                                           12.14.2016
## 1239                                           12.14.2016
## 1241                                           12.14.2016
## 1246                                           12.14.2016
## 1247                                           12.14.2016
## 1248                  non-diapausing           12.14.2016
## 1249                  non-diapausing           12.14.2016
## 1250                  non-diapausing           12.14.2016
## 1252                  non-diapausing           12.14.2016
## 1253                  non-diapausing           12.14.2016
## 1255                  non-diapausing           12.14.2016
## 1257                  non-diapausing           12.14.2016
## 1258                  non-diapausing           12.14.2016
## 1268                                           12.16.2016
## 1272                                           12.16.2016
## 1276                                           12.13.2016
## 1281                                           12.13.2016
## 1285                                           12.13.2016
## 1289                                           12.13.2016
## 1290                                           12.13.2016
## 1291                                           12.13.2016
## 1292                                           12.13.2016
## 1294                  non-diapausing           12.13.2016
## 1295                  non-diapausing           12.13.2016
## 1296                  non-diapausing           12.13.2016
## 1297                  non-diapausing           12.13.2016
## 1298                  non-diapausing           12.13.2016
## 1299                  non-diapausing           12.13.2016
## 1300                  non-diapausing           12.13.2016
## 1301                  non-diapausing           12.13.2016
## 1302                  non-diapausing           12.13.2016
## 1303                  non-diapausing           12.13.2016
## 1304                  non-diapausing           12.13.2016
## 1306                  non-diapausing           12.13.2016
## 1307                  non-diapausing           12.13.2016
## 1308                  non-diapausing           12.13.2016
## 1309                  non-diapausing           12.13.2016
## 1310                  non-diapausing           12.13.2016
## 1311                  non-diapausing           12.13.2016
## 1312                  non-diapausing           12.13.2016
## 1313                  non-diapausing           12.13.2016
## 1315                  non-diapausing           12.13.2016
## 1316                  non-diapausing           12.13.2016
## 1317                  non-diapausing           12.13.2016
## 1318                  non-diapausing           12.13.2016
## 1319                  non-diapausing           12.13.2016
## 1320                  non-diapausing           12.13.2016
## 1321                  non-diapausing           12.13.2016
## 1322                  non-diapausing           12.13.2016
## 1323                  non-diapausing           12.13.2016
## 1324                  non-diapausing           12.13.2016
## 1325                  non-diapausing           12.13.2016
## 1326                  non-diapausing           12.13.2016
## 1327                  non-diapausing           12.13.2016
## 1328                  non-diapausing           12.13.2016
## 1329                  non-diapausing           12.13.2016
## 1330                  non-diapausing           12.13.2016
## 1331                  non-diapausing           12.13.2016
## 1332                  non-diapausing           12.13.2016
## 1333                  non-diapausing           12.13.2016
## 1334                  non-diapausing           12.13.2016
## 1335                  non-diapausing           12.13.2016
## 1336                  non-diapausing           12.13.2016
## 1337                  non-diapausing           12.13.2016
## 1338                  non-diapausing           12.13.2016
## 1340                  non-diapausing           12.14.2016
## 1341                  non-diapausing           12.14.2016
## 1343                  non-diapausing           12.14.2016
## 1344                  non-diapausing           12.14.2016
## 1346                  non-diapausing           12.14.2016
## 1347                  non-diapausing           12.14.2016
## 1349                  non-diapausing           12.14.2016
## 1354                  non-diapausing           12.14.2016
## 1355                  non-diapausing           12.14.2016
## 1356                  non-diapausing           12.14.2016
## 1357                  non-diapausing           12.14.2016
## 1358                  non-diapausing           12.14.2016
## 1361                  non-diapausing           12.14.2016
## 1364                  non-diapausing           12.14.2016
## 1365                  non-diapausing           12.14.2016
## 1367                  non-diapausing           12.14.2016
## 1368                  non-diapausing           12.14.2016
## 1369                  non-diapausing           12.14.2016
## 1370                  non-diapausing           12.14.2016
## 1371                  non-diapausing           12.14.2016
## 1372                  non-diapausing           12.14.2016
## 1375                  non-diapausing           12.14.2016
## 1545                  non-diapausing            8.25.2017
## 1546                  non-diapausing            8.25.2017
## 1547                  non-diapausing            8.25.2017
## 1549                  non-diapausing            8.25.2017
## 1550                  non-diapausing            8.25.2017
## 1552                  non-diapausing            8.25.2017
## 1553                  non-diapausing            8.25.2017
## 1554                  non-diapausing            8.25.2017
## 1555                  non-diapausing            8.25.2017
## 1556                  non-diapausing            8.25.2017
## 1557                  non-diapausing            8.25.2017
## 1558                  non-diapausing            8.25.2017
## 1559                  non-diapausing            8.25.2017
## 1560                  non-diapausing            8.25.2017
## 1562                  non-diapausing            8.25.2017
## 1563                  non-diapausing            8.25.2017
## 1565                  non-diapausing            8.25.2017
## 1566                  non-diapausing            8.25.2017
## 1567                  non-diapausing            8.25.2017
## 1568                  non-diapausing            8.25.2017
## 1569                  non-diapausing            8.25.2017
## 1571                  non-diapausing            8.25.2017
## 1572                  non-diapausing            8.25.2017
## 1573                  non-diapausing            8.25.2017
## 1574                  non-diapausing            8.25.2017
## 1575                  non-diapausing            8.25.2017
## 1576                  non-diapausing            8.25.2017
## 1577                  non-diapausing            8.25.2017
## 1578                  non-diapausing            8.25.2017
## 1579                  non-diapausing            8.25.2017
## 1580                  non-diapausing            8.25.2017
## 1581                  non-diapausing            8.25.2017
## 1582                  non-diapausing            8.25.2017
## 1583                  non-diapausing            8.25.2017
## 1584                  non-diapausing            8.25.2017
## 1585                  non-diapausing            8.25.2017
## 1586                  non-diapausing            8.25.2017
## 1587                  non-diapausing            8.25.2017
## 1589                  non-diapausing            8.25.2017
## 1590                  non-diapausing            8.25.2017
## 1591                  non-diapausing            8.25.2017
## 1592                  non-diapausing            8.25.2017
## 1593                  non-diapausing            8.25.2017
## 1594                  non-diapausing            8.25.2017
## 1595                  non-diapausing            8.25.2017
## 1596                  non-diapausing            8.25.2017
## 1597                  non-diapausing            8.25.2017
## 1598                  non-diapausing            8.25.2017
## 1599                  non-diapausing            8.25.2017
## 1600                  non-diapausing            8.25.2017
## 1601                  non-diapausing            8.25.2017
## 1602                  non-diapausing            8.25.2017
## 1603                  non-diapausing            8.25.2017
## 1605         diapausing aggregration           08.15.2017
## 1607         diapausing aggregration           08.15.2017
## 1608         diapausing aggregration           08.15.2017
## 1610         diapausing aggregration           08.15.2017
## 1611         diapausing aggregration           08.15.2017
## 1612         diapausing aggregration           08.15.2017
## 1613         diapausing aggregration           08.15.2017
## 1614         diapausing aggregration           08.15.2017
## 1615         diapausing aggregration           08.15.2017
## 1616         diapausing aggregration           08.15.2017
## 1617         diapausing aggregration           08.15.2017
## 1618         diapausing aggregration           08.15.2017
## 1620         diapausing aggregration           08.15.2017
## 1621         diapausing aggregration           08.15.2017
## 1622         diapausing aggregration           08.15.2017
## 1624         diapausing aggregration           08.15.2017
## 1625         diapausing aggregration           08.15.2017
## 1626         diapausing aggregration           08.15.2017
## 1627         diapausing aggregration           08.15.2017
## 1628         diapausing aggregration           08.15.2017
## 1629         diapausing aggregration           08.15.2017
## 1630         diapausing aggregration           08.15.2017
## 1631         diapausing aggregration           08.15.2017
## 1632         diapausing aggregration           08.15.2017
## 1634         diapausing aggregration           08.15.2017
## 1635         diapausing aggregration           08.15.2017
## 1636         diapausing aggregration           08.15.2017
## 1641         diapausing aggregration           08.15.2017
## 1642         diapausing aggregration           08.15.2017
## 1643         diapausing aggregration           08.15.2017
## 1644         diapausing aggregration           08.15.2017
## 1645         diapausing aggregration           08.15.2017
## 1646         diapausing aggregration           08.15.2017
## 1647         diapausing aggregration           08.15.2017
## 1648         diapausing aggregration           08.15.2017
## 1651         diapausing aggregration           08.15.2017
## 1652         diapausing aggregration           08.15.2017
## 1654         diapausing aggregration           08.15.2017
## 1655         diapausing aggregration           08.15.2017
## 1656         diapausing aggregration           08.15.2017
## 1657         diapausing aggregration           08.15.2017
## 1658         diapausing aggregration           08.15.2017
## 1659         diapausing aggregration           08.15.2017
## 1660         diapausing aggregration           08.15.2017
## 1661         diapausing aggregration           08.15.2017
## 1662         diapausing aggregration           08.15.2017
## 1663         diapausing aggregration           08.15.2017
## 1664         diapausing aggregration           08.15.2017
## 1665         diapausing aggregration           08.15.2017
## 1666         diapausing aggregration           08.15.2017
## 1667         diapausing aggregration           08.15.2017
## 1668         diapausing aggregration           08.15.2017
## 1669         diapausing aggregration           08.15.2017
## 1670         diapausing aggregration           08.15.2017
## 1671         diapausing aggregration           08.15.2017
## 1672         diapausing aggregration           08.15.2017
## 1673         diapausing aggregration           08.15.2017
## 1674         diapausing aggregration           08.15.2017
## 1675         diapausing aggregration           08.15.2017
## 1676         diapausing aggregration           08.15.2017
## 1677         diapausing aggregration           08.15.2017
## 1678         diapausing aggregration           08.15.2017
## 1679         diapausing aggregration           08.15.2017
## 1680         diapausing aggregration           08.15.2017
## 1681         diapausing aggregration           08.15.2017
## 1682         diapausing aggregration           08.15.2017
## 1683         diapausing aggregration           08.15.2017
## 1684         diapausing aggregration           08.15.2017
## 1685         diapausing aggregration           08.15.2017
## 1686         diapausing aggregration           08.15.2017
## 1687         diapausing aggregration           08.15.2017
## 1688         diapausing aggregration           08.15.2017
## 1689         diapausing aggregration           08.15.2017
## 1690         diapausing aggregration           08.15.2017
## 1691         diapausing aggregration           08.15.2017
## 1692         diapausing aggregration           08.15.2017
## 1693         diapausing aggregration           08.15.2017
## 1694         diapausing aggregration           08.15.2017
## 1695         diapausing aggregration           08.15.2017
## 1696         diapausing aggregration           08.15.2017
## 1697         diapausing aggregration           08.15.2017
## 1698         diapausing aggregration           08.15.2017
## 1699         diapausing aggregration           08.15.2017
## 1700         diapausing aggregration           08.15.2017
## 1701         diapausing aggregration           08.15.2017
## 1702         diapausing aggregration           08.15.2017
## 1703         diapausing aggregration           08.15.2017
## 1704         diapausing aggregration           08.15.2017
## 1705         diapausing aggregration           08.15.2017
## 1706         diapausing aggregration           08.15.2017
## 1707         diapausing aggregration           08.15.2017
## 1708         diapausing aggregration           08.15.2017
## 1709         diapausing aggregration           08.15.2017
## 1710         diapausing aggregration           08.15.2017
## 1711         diapausing aggregration           08.15.2017
## 1712         diapausing aggregration           08.15.2017
## 1713         diapausing aggregration           08.15.2017
## 1714         diapausing aggregration           08.15.2017
## 1715         diapausing aggregration           08.15.2017
## 1716         diapausing aggregration           08.15.2017
## 1717         diapausing aggregration           08.15.2017
## 1718         diapausing aggregration           08.15.2017
## 1719         diapausing aggregration           08.15.2017
## 1720         diapausing aggregration           08.15.2017
## 1721         diapausing aggregration           08.15.2017
## 1722         diapausing aggregration           08.15.2017
## 1723         diapausing aggregration           08.15.2017
## 1724         diapausing aggregration           08.15.2017
## 1725         diapausing aggregration           08.15.2017
## 1726         diapausing aggregration           08.15.2017
## 1727         diapausing aggregration           08.15.2017
## 1728         diapausing aggregration           08.15.2017
## 1729         diapausing aggregration           08.15.2017
## 1730         diapausing aggregration           08.15.2017
## 1731         diapausing aggregration           08.15.2017
## 1732         diapausing aggregration           08.15.2017
## 1733         diapausing aggregration           08.15.2017
## 1734                                           08.17.2017
## 1735                                           08.17.2017
## 1736                                           08.17.2017
## 1738                                           08.17.2017
## 1739                                           08.17.2017
## 1740                                           08.17.2017
## 1741                                           08.17.2017
## 1742                                           08.17.2017
## 1743                                           08.17.2017
## 1744                                           08.17.2017
## 1746                                           08.17.2017
## 1747                                           08.17.2017
## 1748                                           08.17.2017
## 1749                                           08.17.2017
## 1750                                           08.17.2017
## 1751                                           08.16.2017
## 1752                                           08.16.2017
## 1753                                           08.16.2017
## 1754                                           08.16.2017
## 1755                      wings torn           08.16.2017
## 1758                                           08.16.2017
## 1759                                           08.16.2017
## 1760                                           08.16.2017
## 1761                                           08.16.2017
## 1762                                           08.16.2017
## 1763                                           08.16.2017
## 1764                                           08.16.2017
## 1765                      wings torn           08.16.2017
## 1766                      wings torn           08.16.2017
## 1768                                           08.16.2017
## 1769                                           08.17.2017
## 1770                          marked           08.17.2017
## 1771                                           08.17.2017
## 1772                          marked           08.17.2017
## 1774                                           08.17.2017
## 1775                                           08.17.2017
## 1776                                           08.17.2017
## 1779                          marked           08.17.2017
## 1780                                           08.17.2017
## 1782                                           08.17.2017
## 1785                                           08.17.2017
## 1786                                           08.17.2017
## 1788                                           08.17.2017
## 1789                          marked           08.17.2017
## 1790                          marked           08.17.2017
## 1791                          marked           08.17.2017
## 1793                                           08.17.2017
## 1800                       tips torn           08.17.2017
## 1802                       tips torn           08.17.2017
## 1805                          marked           08.17.2017
## 1806                          marked           08.16.2017
## 1807                                           08.16.2017
## 1808                                           08.16.2017
## 1809                       tips torn           08.16.2017
## 1810                       tips torn           08.16.2017
## 1811                       tips torn           08.16.2017
## 1812                                           08.16.2017
## 1813                          marked           08.16.2017
## 1814                          marked           08.16.2017
## 1815                       tips torn           08.16.2017
## 1816                       tips torn           08.16.2017
## 1817                                           08.16.2017
## 1819                                           08.16.2017
## 1821                                           08.16.2017
## 1822                                           08.16.2017
## 1823               tips torn; marked           08.16.2017
## 1824                       tips torn           08.16.2017
## 1826         diapausing aggregration           08.23.2017
## 1827         diapausing aggregration           08.23.2017
## 1828         diapausing aggregration           08.23.2017
## 1829         diapausing aggregration           08.23.2017
## 1831         diapausing aggregration           08.23.2017
## 1832         diapausing aggregration           08.23.2017
## 1833         diapausing aggregration           08.23.2017
## 1834         diapausing aggregration           08.23.2017
## 1835         diapausing aggregration           08.23.2017
## 1836         diapausing aggregration           08.23.2017
## 1837         diapausing aggregration           08.23.2017
## 1838         diapausing aggregration           08.23.2017
## 1839         diapausing aggregration           08.23.2017
## 1840         diapausing aggregration           08.23.2017
## 1842         diapausing aggregration           08.23.2017
## 1844         diapausing aggregration           08.23.2017
## 1845         diapausing aggregration           08.23.2017
## 1846         diapausing aggregration           08.23.2017
## 1847         diapausing aggregration           08.23.2017
## 1848         diapausing aggregration           08.23.2017
## 1849         diapausing aggregration           08.23.2017
## 1850         diapausing aggregration           08.23.2017
## 1852         diapausing aggregration           08.23.2017
## 1853         diapausing aggregration           08.23.2017
## 1854         diapausing aggregration           08.23.2017
## 1855         diapausing aggregration           08.23.2017
## 1856         diapausing aggregration           08.23.2017
## 1857         diapausing aggregration           08.23.2017
## 1858                  non-diapausing            8.23.2017
## 1859                  non-diapausing            8.23.2017
## 1862                  non-diapausing            8.23.2017
## 1863                  non-diapausing            8.23.2017
## 1864                  non-diapausing            8.23.2017
## 1867                  non-diapausing            8.23.2017
## 1868                  non-diapausing            8.23.2017
## 1871                  non-diapausing            8.23.2017
## 1874                  non-diapausing            8.23.2017
## 1876                  non-diapausing            8.23.2017
## 1878                  non-diapausing            8.23.2017
## 1879                  non-diapausing            8.23.2017
## 1881                  non-diapausing            8.23.2017
## 1882                  non-diapausing            8.23.2017
## 1884                  non-diapausing            8.23.2017
## 1885                  non-diapausing            8.23.2017
## 1887                  non-diapausing            8.23.2017
## 1892                  non-diapausing            8.23.2017
## 1894                  non-diapausing            8.23.2017
## 1895                  non-diapausing            8.23.2017
## 1896                  non-diapausing            8.23.2017
## 1897                  non-diapausing            8.23.2017
## 1898                  non-diapausing            8.23.2017
## 1901                  non-diapausing            8.23.2017
## 1905                  non-diapausing            8.23.2017
## 1907                  non-diapausing            8.23.2017
## 1912                  non-diapausing            8.23.2017
## 1914                  non-diapausing            8.23.2017
## 1915                  non-diapausing            8.23.2017
## 1917                  non-diapausing           08.24.2017
## 1918                  non-diapausing           08.24.2017
## 1922                  non-diapausing           08.24.2017
## 1923                  non-diapausing           08.24.2017
## 1924                  non-diapausing           08.24.2017
## 1925                  non-diapausing           08.24.2017
## 1927                  non-diapausing           08.24.2017
## 1928                  non-diapausing           08.24.2017
## 1929                  non-diapausing           08.24.2017
## 1930                  non-diapausing           08.24.2017
## 1933                  non-diapausing           08.24.2017
## 1935                  non-diapausing           08.24.2017
## 1936                  non-diapausing           08.24.2017
## 1937                  non-diapausing           08.24.2017
## 1938                  non-diapausing           08.24.2017
## 1939                  non-diapausing           08.24.2017
## 1941                  non-diapausing           08.24.2017
## 1942                  non-diapausing           08.24.2017
## 1944                  non-diapausing           08.24.2017
## 1945                  non-diapausing           08.24.2017
## 1946                  non-diapausing           08.24.2017
## 1947                  non-diapausing           08.24.2017
## 1948                  non-diapausing           08.24.2017
## 1949                  non-diapausing           08.24.2017
## 1952                  non-diapausing           08.24.2017
## 1953                  non-diapausing           08.24.2017
## 1955                  non-diapausing           08.24.2017
## 1956                  non-diapausing           08.24.2017
## 1958                  non-diapausing           08.24.2017
## 1959                  non-diapausing           08.24.2017
## 1960                  non-diapausing           08.24.2017
## 1963                  non-diapausing           08.24.2017
## 1964                  non-diapausing           08.24.2017
## 1965                  non-diapausing           08.24.2017
## 1973                  non-diapausing           08.24.2017
## 1975                  non-diapausing           09.23.2018
## 1976                  non-diapausing           09.23.2018
## 1977                  non-diapausing           09.23.2018
## 1978                  non-diapausing           09.23.2018
## 1979                  non-diapausing           09.23.2018
## 1980                  non-diapausing           09.23.2018
## 1981                  non-diapausing           09.23.2018
## 1982                  non-diapausing           09.23.2018
## 1983                  non-diapausing           09.23.2018
## 1984                  non-diapausing           09.23.2018
## 1985                  non-diapausing           09.23.2018
## 1986                  non-diapausing           09.23.2018
## 1987                  non-diapausing           09.23.2018
## 1988                  non-diapausing           09.23.2018
## 1989                  non-diapausing           09.23.2018
## 1990                  non-diapausing           09.23.2018
## 1992                  non-diapausing           09.23.2018
## 1993                  non-diapausing           09.23.2018
## 1994                  non-diapausing           09.23.2018
## 1995                  non-diapausing           09.23.2018
## 1996                  non-diapausing           09.23.2018
## 1997                  non-diapausing           09.23.2018
## 1998                  non-diapausing           09.23.2018
## 1999                  non-diapausing           09.23.2018
## 2000                  non-diapausing           09.23.2018
## 2001                  non-diapausing           09.23.2018
## 2002                  non-diapausing           09.23.2018
## 2003                  non-diapausing           09.23.2018
## 2004                  non-diapausing           09.23.2018
## 2005                  non-diapausing           09.23.2018
## 2006                  non-diapausing           09.23.2018
## 2007                  non-diapausing           09.23.2018
## 2008                  non-diapausing           09.23.2018
## 2009                  non-diapausing           09.23.2018
## 2010                  non-diapausing           09.23.2018
## 2011                  non-diapausing           09.23.2018
## 2012                  non-diapausing           09.23.2018
## 2013                  non-diapausing           09.23.2018
## 2014                  non-diapausing           09.23.2018
## 2015                  non-diapausing           09.23.2018
## 2016                  non-diapausing           09.23.2018
## 2017                  non-diapausing           09.23.2018
## 2018                  non-diapausing           09.23.2018
## 2019                  non-diapausing           09.23.2018
## 2020                  non-diapausing           09.23.2018
## 2021                  non-diapausing           09.23.2018
## 2022                  non-diapausing           09.23.2018
## 2023                  non-diapausing           09.23.2018
## 2024                  non-diapausing           09.23.2018
## 2025                  non-diapausing           09.23.2018
## 2026                  non-diapausing           09.23.2018
## 2027                  non-diapausing           09.23.2018
## 2028                  non-diapausing           09.23.2018
## 2029                  non-diapausing           09.23.2018
## 2031                  non-diapausing           09.23.2018
## 2032                  non-diapausing           09.23.2018
## 2033                  non-diapausing           09.23.2018
## 2034                  non-diapausing           09.23.2018
## 2036                  non-diapausing           09.23.2018
## 2037                  non-diapausing           09.23.2018
## 2038                  non-diapausing           09.23.2018
## 2039                  non-diapausing           09.26.2018
## 2040                  non-diapausing           09.26.2018
## 2041                  non-diapausing           09.26.2018
## 2042                  non-diapausing           09.26.2018
## 2047                  non-diapausing           09.26.2018
## 2050                  non-diapausing           09.26.2018
## 2053                  non-diapausing           09.26.2018
## 2055                  non-diapausing           09.26.2018
## 2057                  non-diapausing           09.26.2018
## 2058                  non-diapausing           09.26.2018
## 2059                  non-diapausing           09.26.2018
## 2062                  non-diapausing           09.26.2018
## 2064                  non-diapausing           09.26.2018
## 2065                  non-diapausing           09.26.2018
## 2069                  non-diapausing           09.26.2018
## 2071                  non-diapausing           09.26.2018
## 2072                  non-diapausing           09.26.2018
## 2073                  non-diapausing           09.26.2018
## 2079                  non-diapausing           09.26.2018
## 2081                  non-diapausing           09.26.2018
## 2082                  non-diapausing           09.26.2018
## 2083                  non-diapausing           09.26.2018
## 2085                  non-diapausing           09.26.2018
## 2086                  non-diapausing           09.26.2018
## 2087                  non-diapausing           09.26.2018
## 2088                  non-diapausing           09.26.2018
## 2091                  non-diapausing           09.26.2018
## 2094                  non-diapausing           09.26.2018
## 2095                  non-diapausing           09.26.2018
## 2097                  non-diapausing           09.26.2018
## 2099                  non-diapausing           09.26.2018
## 2101                  non-diapausing           09.26.2018
## 2103                  non-diapausing           09.26.2018
## 2107                  non-diapausing           09.28.2018
## 2108                  non-diapausing           09.28.2018
## 2109                  non-diapausing           09.28.2018
## 2110                  non-diapausing           09.28.2018
## 2111                  non-diapausing           09.28.2018
## 2112                  non-diapausing           09.28.2018
## 2113                  non-diapausing           09.28.2018
## 2115                  non-diapausing           09.28.2018
## 2116                  non-diapausing           09.28.2018
## 2117                  non-diapausing           09.28.2018
## 2118                  non-diapausing           09.28.2018
## 2119                  non-diapausing           09.28.2018
## 2120                  non-diapausing           09.28.2018
## 2121                  non-diapausing           09.28.2018
## 2122                  non-diapausing           09.28.2018
## 2123                  non-diapausing           09.28.2018
## 2124                  non-diapausing           09.28.2018
## 2125                  non-diapausing           09.28.2018
## 2126                  non-diapausing           09.28.2018
## 2127                  non-diapausing           09.28.2018
## 2128                  non-diapausing           09.28.2018
## 2129                  non-diapausing           09.28.2018
## 2130                  non-diapausing           09.28.2018
## 2131                  non-diapausing           09.28.2018
## 2133                  non-diapausing           09.28.2018
## 2134                  non-diapausing           09.28.2018
## 2136                  non-diapausing           09.28.2018
## 2137                  non-diapausing           09.28.2018
## 2138                  non-diapausing           09.28.2018
## 2139                  non-diapausing           09.28.2018
## 2140                  non-diapausing           09.28.2018
## 2141                  non-diapausing           09.28.2018
## 2142                  non-diapausing           09.28.2018
## 2143                  non-diapausing           09.28.2018
## 2144                  non-diapausing           09.28.2018
## 2145                  non-diapausing           09.28.2018
## 2146                  non-diapausing           09.28.2018
## 2147                  non-diapausing           09.28.2018
## 2148                  non-diapausing            5.22.2019
## 2149                  non-diapausing            5.22.2019
## 2150                  non-diapausing            5.22.2019
## 2151                  non-diapausing            5.22.2019
## 2152                  non-diapausing            5.22.2019
## 2154                  non-diapausing            5.22.2019
## 2155                  non-diapausing            5.22.2019
## 2156                  non-diapausing            5.22.2019
## 2157                                           05.22.2019
## 2158                                           05.22.2019
## 2159                                           05.22.2019
## 2160                                           05.22.2019
## 2161                                           05.22.2019
## 2162                                           05.22.2019
## 2163                                           05.22.2019
## 2164                                           05.22.2019
## 2165                                           05.22.2019
## 2166                                           05.22.2019
## 2168                                           05.22.2019
## 2169                                           05.22.2019
## 2170                                           05.22.2019
## 2171                                           05.22.2019
## 2172                                           05.22.2019
## 2173                                           05.22.2019
## 2174                                           05.22.2019
## 2175                                           05.22.2019
## 2176                                           05.22.2019
## 2177                                           05.22.2019
## 2178                                           05.22.2019
## 2179                                           05.22.2019
## 2180                                           05.22.2019
## 2181                                           05.22.2019
## 2182                                           05.22.2019
## 2183                                           05.22.2019
## 2184                                           05.22.2019
## 2185                                           05.22.2019
## 2186                                           05.22.2019
## 2187                                           05.22.2019
## 2188                                           05.22.2019
## 2189                                           05.22.2019
## 2190                                           05.22.2019
## 2191                                           05.22.2019
## 2192                                           05.22.2019
## 2193                                           05.22.2019
## 2194                                           05.22.2019
## 2195                                           05.22.2019
## 2196                                           05.22.2019
## 2198                  non-diapausing           05.17.2019
## 2199                  non-diapausing           05.17.2019
## 2200                  non-diapausing           05.17.2019
## 2201                  non-diapausing           05.17.2019
## 2202                  non-diapausing           05.17.2019
## 2204                  non-diapausing           05.17.2019
## 2212                  non-diapausing           05.17.2019
## 2213                  non-diapausing           05.17.2019
## 2218                  non-diapausing             5.6.2019
## 2219                  non-diapausing             5.6.2019
## 2220                  non-diapausing             5.6.2019
## 2221                  non-diapausing             5.6.2019
## 2228                  non-diapausing             5.6.2019
## 2232                  non-diapausing             5.6.2019
## 2233                  non-diapausing             5.6.2019
## 2234                  non-diapausing             5.6.2019
## 2235                  non-diapausing             5.6.2019
## 2237                  non-diapausing             5.6.2019
## 2238                  non-diapausing             5.6.2019
## 2240                  non-diapausing             5.6.2019
## 2245                  non-diapausing             5.6.2019
## 2247                  non-diapausing             5.6.2019
## 2251                  non-diapausing             5.6.2019
## 2256                  non-diapausing             5.6.2019
## 2261                  non-diapausing             5.6.2019
## 2262                  non-diapausing             5.6.2019
## 2263                  non-diapausing             5.6.2019
## 2266                  non-diapausing             5.6.2019
## 2268                  non-diapausing             5.6.2019
## 2270                  non-diapausing             5.6.2019
## 2274                  non-diapausing             5.6.2019
## 2282                  non-diapausing             5.6.2019
## 2285                  non-diapausing             5.6.2019
## 2288                  non-diapausing             5.6.2019
## 2291                      diapausing           05.19.2019
## 2292                      diapausing           05.19.2019
## 2293                      diapausing           05.19.2019
## 2294                      diapausing           05.19.2019
## 2295                      diapausing           05.19.2019
## 2296                      diapausing           05.19.2019
## 2297                      diapausing           05.19.2019
## 2298                      diapausing           05.19.2019
## 2300                      diapausing           05.19.2019
## 2302                      diapausing           05.19.2019
## 2305                      diapausing           05.19.2019
## 2306                      diapausing           05.19.2019
## 2308                      diapausing           05.19.2019
## 2310                      diapausing           05.19.2019
## 2312                      diapausing           05.19.2019
## 2313                      diapausing           05.19.2019
## 2314                      diapausing           05.19.2019
## 2315                      diapausing           05.19.2019
## 2316                      diapausing           05.19.2019
## 2317                      diapausing           05.19.2019
## 2318                      diapausing           05.19.2019
## 2319                      diapausing           05.19.2019
## 2320                      diapausing           05.19.2019
## 2321                      diapausing           05.19.2019
## 2322                      diapausing           05.19.2019
## 2323                      diapausing           05.19.2019
## 2324                      diapausing           05.19.2019
## 2325                      diapausing           05.19.2019
## 2326                      diapausing           05.19.2019
## 2327                      diapausing           05.19.2019
## 2328                      diapausing           05.19.2019
## 2329                      diapausing           05.19.2019
## 2330                      diapausing           05.19.2019
## 2331                      diapausing           05.19.2019
## 2332                      diapausing           05.19.2019
## 2333                      diapausing           05.19.2019
## 2334                      diapausing           05.19.2019
## 2335                      diapausing           05.19.2019
## 2337                      diapausing           05.19.2019
## 2338                      diapausing           05.19.2019
## 2340                      diapausing           05.19.2019
## 2342                      diapausing           05.19.2019
## 2343                      diapausing           05.19.2019
## 2344                      diapausing           05.19.2019
## 2345                      diapausing           05.19.2019
## 2346                      diapausing           05.19.2019
## 2347                      diapausing           05.19.2019
## 2348                      diapausing           05.19.2019
## 2349                      diapausing           05.19.2019
## 2350                      diapausing           05.19.2019
## 2351                      diapausing           05.19.2019
## 2352                      diapausing           05.19.2019
## 2353                      diapausing           05.19.2019
## 2354                                           05.13.2019
## 2355                                           05.13.2019
## 2356                                           05.13.2019
## 2357                                           05.13.2019
## 2359                                           05.13.2019
## 2361                                           05.13.2019
## 2362                                           05.13.2019
## 2363                                           05.13.2019
## 2365                                           05.13.2019
## 2366                                           05.13.2019
## 2367                                           05.13.2019
## 2368                                           05.13.2019
## 2370                                           05.13.2019
## 2371                                           05.13.2019
## 2372                                           05.13.2019
## 2373                                           05.13.2019
## 2374                                           05.13.2019
## 2376                                           05.13.2019
## 2379                                           05.13.2019
## 2381                                           05.13.2019
## 2383                                           05.13.2019
## 2386                                           05.13.2019
## 2387                                           05.13.2019
## 2388                                           05.13.2019
## 2389                                           05.13.2019
## 2390                                           05.13.2019
## 2391                                           05.13.2019
## 2392                                           05.13.2019
## 2394                                           05.13.2019
## 2395                                           05.13.2019
## 2398                                           05.13.2019
## 2399                                           05.13.2019
## 2400                                           05.13.2019
## 2401                                           05.13.2019
## 2403                                           05.13.2019
## 2404                                           05.13.2019
## 2406                                           05.13.2019
## 2408                                           05.13.2019
## 2409                                           05.13.2019
## 2410                                           05.13.2019
## 2417                                           05.13.2019
## 2418                                           05.13.2019
## 2420                                           05.13.2019
## 2421                                           05.13.2019
## 2422                                           05.13.2019
## 2423                                           05.13.2019
## 2425                                           05.13.2019
## 2428                                           05.13.2019
## 2429                                           05.13.2019
## 2431                                           05.13.2019
## 2432                                           05.13.2019
## 2434                                           05.13.2019
## 2436                                           05.13.2019
## 2439                                           05.13.2019
## 2440                                           05.13.2019
## 2441                                           05.13.2019
## 2447                                           05.13.2019
## 2452                                           05.13.2019
## 2456                                           05.14.2019
## 2457                                           05.14.2019
## 2459                                           05.14.2019
## 2466                                           05.06.2019
## 2469                                           05.06.2019
## 2470                                           05.06.2019
## 2472                                           05.06.2019
## 2473                                           05.06.2019
## 2476                                           05.06.2019
## 2477                                           05.06.2019
## 2478                                           05.06.2019
## 2479                                           05.06.2019
## 2480                                           05.06.2019
## 2482                                           05.06.2019
## 2484                                           05.06.2019
## 2487                                           05.06.2019
## 2496                                           05.06.2019
## 2497                                           05.06.2019
## 2498                                           05.06.2019
## 2499                                           05.06.2019
## 2501                                           05.06.2019
## 2502                                           05.06.2019
## 2503                                           05.06.2019
## 2504                                           05.06.2019
## 2505                                           05.06.2019
## 2507                                           05.06.2019
## 2510                                           05.06.2019
## 2512                                           05.06.2019
## 2514                                           05.06.2019
## 2518                                           05.06.2019
## 2519                                           05.06.2019
## 2521                                           05.06.2019
## 2523                                           05.06.2019
## 2524                                           05.06.2019
## 2525                                           05.06.2019
## 2526                                           05.06.2019
## 2527                                           05.06.2019
## 2530                                           05.06.2019
## 2535                                           05.06.2019
## 2537                                           05.06.2019
## 2541                                           05.06.2019
## 2543                                           05.06.2019
## 2544                                           05.06.2019
## 2545                                           05.06.2019
## 2546                                           05.06.2019
## 2549                                           05.06.2019
## 2554                                           05.06.2019
## 2561                                           05.06.2019
## 2566                                                     
## 2567                                                     
## 2568                                                     
## 2569                                                     
## 2570                                                     
## 2572                                                     
## 2573                                                     
## 2574                                                     
## 2575                                                     
## 2576                                                     
## 2577                                                     
## 2578                                                     
## 2579                                                     
## 2580                                                     
## 2581                                                     
## 2582                                                     
## 2584                                                     
## 2585                                                     
## 2586                                                     
## 2587                                                     
## 2588                                                     
## 2590                                                     
## 2591                                                     
## 2592                                                     
## 2593                                                     
## 2595                                                     
## 2596                  non-diapausing            5.13.2019
## 2597                  non-diapausing            5.13.2019
## 2598                  non-diapausing            5.13.2019
## 2600                  non-diapausing            5.13.2019
## 2604                                                     
## 2606                                                     
## 2607                                                     
## 2608                                                     
## 2614                                                     
## 2622                                                     
## 2624                                                     
## 2625                                                     
## 2628                                                     
## 2629                                                     
## 2634                                                     
## 2637                  non-diapausing           10.06.2019
## 2638                  non-diapausing           10.06.2019
## 2639                  non-diapausing           10.06.2019
## 2640                  non-diapausing           10.06.2019
## 2641                  non-diapausing           10.06.2019
## 2645                  non-diapausing           10.06.2019
## 2647                  non-diapausing           10.06.2019
## 2651                  non-diapausing           10.06.2019
## 2652                  non-diapausing           10.06.2019
## 2653                     diapausing?           10.04.2019
## 2654                     diapausing?           10.04.2019
## 2655                     diapausing?           10.04.2019
## 2656                     diapausing?           10.04.2019
## 2657                     diapausing?           10.04.2019
## 2658                     diapausing?           10.04.2019
## 2659                     diapausing?           10.04.2019
## 2660                     diapausing?           10.04.2019
## 2661                     diapausing?           10.04.2019
## 2662                     diapausing?           10.04.2019
## 2663                     diapausing?           10.04.2019
## 2664                     diapausing?           10.04.2019
## 2665                     diapausing?           10.04.2019
## 2666                     diapausing?           10.04.2019
## 2667                     diapausing?           10.04.2019
## 2669                     diapausing?           10.04.2019
## 2670                     diapausing?           10.04.2019
## 2671                     diapausing?           10.04.2019
## 2672                     diapausing?           10.04.2019
## 2673                     diapausing?           10.04.2019
## 2674                     diapausing?           10.04.2019
## 2675                     diapausing?           10.04.2019
## 2676                     diapausing?           10.04.2019
## 2677                     diapausing?           10.04.2019
## 2678                     diapausing?           10.04.2019
## 2679                     diapausing?           10.04.2019
## 2683                     diapausing?           10.04.2019
## 2684                     diapausing?           10.04.2019
## 2685                     diapausing?           10.04.2019
## 2686                     diapausing?           10.04.2019
## 2687                     diapausing?           10.04.2019
## 2693                  non-diapausing           10.04.2019
## 2695                  non-diapausing           10.04.2019
## 2697                  non-diapausing           10.04.2019
## 2698                  non-diapausing           10.04.2019
## 2701                  non-diapausing           10.04.2019
## 2704                      diapausing           10.05.2019
## 2705                      diapausing           10.05.2019
## 2706                      diapausing           10.05.2019
## 2707                      diapausing           10.05.2019
## 2709                      diapausing           10.05.2019
## 2710                      diapausing           10.05.2019
## 2711                      diapausing           10.05.2019
## 2712                      diapausing           10.05.2019
## 2713                      diapausing           10.05.2019
## 2716                      diapausing           10.05.2019
## 2717                      diapausing           10.05.2019
## 2718                      diapausing           10.05.2019
## 2719                      diapausing           10.05.2019
## 2720                      diapausing           10.05.2019
## 2721                      diapausing           10.05.2019
## 2722                      diapausing           10.05.2019
## 2723                      diapausing           10.05.2019
## 2724                      diapausing           10.05.2019
## 2725                      diapausing           10.05.2019
## 2726                      diapausing           10.05.2019
## 2727                      diapausing           10.05.2019
## 2728                      diapausing           10.05.2019
## 2730                      diapausing           10.05.2019
## 2731                      diapausing           10.05.2019
## 2733                      diapausing           10.05.2019
## 2734                      diapausing           10.05.2019
## 2735                      diapausing           10.05.2019
## 2736                      diapausing           10.05.2019
## 2737                      diapausing           10.05.2019
## 2738                      diapausing           10.05.2019
## 2739                      diapausing           10.05.2019
## 2740                      diapausing           10.05.2019
## 2741                      diapausing           10.05.2019
## 2742                      diapausing           10.05.2019
## 2743                      diapausing           10.05.2019
## 2744                      diapausing           10.05.2019
## 2745                      diapausing           10.05.2019
## 2747                      diapausing           10.05.2019
## 2748                      diapausing           10.05.2019
## 2749                      diapausing           10.05.2019
## 2752                      diapausing           10.05.2019
## 2754                      diapausing           10.05.2019
## 2756                      diapausing           10.05.2019
## 2757                      diapausing           10.05.2019
## 2758                      diapausing            10.5.2019
## 2759                      diapausing            10.5.2019
## 2760                      diapausing            10.5.2019
## 2761                      diapausing            10.5.2019
## 2763                      diapausing            10.5.2019
## 2764                      diapausing            10.5.2019
## 2765                      diapausing            10.5.2019
## 2767                      diapausing            10.5.2019
## 2768                      diapausing            10.5.2019
## 2769                      diapausing            10.5.2019
## 2772                  non-diapausing           10.05.2019
## 2773                  non-diapausing           10.05.2019
## 2774                  non-diapausing           10.05.2019
## 2777                  non-diapausing           10.05.2019
## 2779                  non-diapausing           10.05.2019
## 2780                  non-diapausing           10.05.2019
## 2781                  non-diapausing           10.05.2019
## 2782                  non-diapausing           10.05.2019
## 2784                         unknown           10.05.2019
## 2785                         unknown           10.05.2019
## 2786                         unknown           10.05.2019
## 2787                         unknown           10.05.2019
## 2788                         unknown           10.05.2019
## 2789                         unknown           10.05.2019
## 2791                         unknown           10.05.2019
## 2792                         unknown           10.05.2019
## 2794                         unknown           10.05.2019
## 2795                         unknown           10.05.2019
## 2797                         unknown           10.05.2019
## 2798                  non-diapausing           10.03.2019
## 2799                  non-diapausing           10.03.2019
## 2800                  non-diapausing           10.03.2019
## 2801                  non-diapausing           10.03.2019
## 2802                  non-diapausing           10.03.2019
## 2806                  non-diapausing           10.03.2019
## 2807                  non-diapausing           10.03.2019
## 2808                  non-diapausing           10.03.2019
## 2810                  non-diapausing           10.03.2019
## 2812                  non-diapausing           10.03.2019
## 2813                  non-diapausing           10.03.2019
## 2816                  non-diapausing           10.03.2019
## 2820                  non-diapausing           10.02.2019
## 2823                  non-diapausing           10.02.2019
## 2826                  non-diapausing           10.02.2019
## 2830                  non-diapausing           10.02.2019
## 2831                  non-diapausing           10.03.2019
## 2833                  non-diapausing           10.03.2019
## 2834                  non-diapausing           10.03.2019
## 2835                  non-diapausing           10.03.2019
## 2836                  non-diapausing           10.03.2019
## 2837                  non-diapausing           10.03.2019
## 2839                  non-diapausing           10.02.2019
## 2841                  non-diapausing           10.02.2019
## 2842                  non-diapausing           10.02.2019
## 2844                  non-diapausing           10.02.2019
## 2845                  non-diapausing           10.02.2019
## 2847                  non-diapausing           10.02.2019
## 2848                  non-diapausing           10.02.2019
## 2850                  non-diapausing           10.02.2019
## 2851                  non-diapausing           10.02.2019
## 2853                  non-diapausing           10.02.2019
## 2854                  non-diapausing           10.02.2019
## 2855                  non-diapausing           10.02.2019
## 2856                  non-diapausing           10.02.2019
## 2859                  non-diapausing           10.02.2019
## 2860                  non-diapausing           10.02.2019
## 2862                  non-diapausing           10.02.2019
## 2863                  non-diapausing           10.02.2019
## 2864                  non-diapausing           10.02.2019
## 2868                  non-diapausing           10.02.2019
## 2869                  non-diapausing           10.02.2019
## 2871                  non-diapausing           10.02.2019
## 2878                  non-diapausing            10.2.2019
## 2884                  non-diapausing           10.02.2019
## 2886                  non-diapausing           10.02.2019
## 2887                  non-diapausing           10.02.2019
## 2891                  non-diapausing           10.02.2019
## 2892                  non-diapausing           10.02.2019
## 2893                  non-diapausing           10.02.2019
## 2895                  non-diapausing           10.02.2019
## 2896                  non-diapausing           10.02.2019
## 2897                  non-diapausing             2.9.2020
## 2899                  non-diapausing             2.9.2020
## 2900                  non-diapausing             2.9.2020
## 2901                  non-diapausing             2.9.2020
## 2904                  non-diapausing             2.9.2020
## 2905                  non-diapausing             2.9.2020
## 2906                  non-diapausing             2.9.2020
## 2907                  non-diapausing             2.9.2020
## 2908                  non-diapausing             2.9.2020
## 2911                  non-diapausing             2.9.2020
## 2912                  non-diapausing             2.9.2020
## 2914                  non-diapausing           02.09.2020
## 2917                  non-diapausing           02.09.2020
## 2919                  non-diapausing           02.09.2020
## 2921                  non-diapausing           02.09.2020
## 2923                  non-diapausing           02.09.2020
## 2929                  non-diapausing           02.09.2020
## 2930                  non-diapausing           02.09.2020
## 2931                  non-diapausing           02.09.2020
## 2932                  non-diapausing           02.09.2020
## 2933                  non-diapausing             2.5.2020
## 2934                  non-diapausing             2.7.2020
## 2935                  non-diapausing             2.7.2020
## 2936                  non-diapausing             2.7.2020
## 2937                  non-diapausing             2.7.2020
## 2939                  non-diapausing             2.7.2020
## 2940                  non-diapausing             2.7.2020
## 2944                  non-diapausing             2.7.2020
## 2945                  non-diapausing             2.7.2020
## 2947                  non-diapausing             2.7.2020
## 2948                  non-diapausing             2.7.2020
## 2949                  non-diapausing             2.7.2020
## 2950                  non-diapausing             2.7.2020
## 2951                  non-diapausing             2.7.2020
## 2952                  non-diapausing             2.7.2020
## 2953                  non-diapausing             2.7.2020
## 2954                  non-diapausing             2.7.2020
## 2955                  non-diapausing             2.7.2020
## 2956                  non-diapausing             2.7.2020
## 2957                  non-diapausing             2.7.2020
## 2958                  non-diapausing             2.7.2020
## 2959                  non-diapausing             2.7.2020
## 2960                  non-diapausing             2.7.2020
## 2964                  non-diapausing           02.07.2020
## 2965                  non-diapausing           02.07.2020
## 2970                  non-diapausing           02.07.2020
## 2971                  non-diapausing           02.07.2020
## 2972                  non-diapausing           02.07.2020
## 2973                  non-diapausing           02.07.2020
## 2974                  non-diapausing           02.07.2020
## 2975                  non-diapausing             2.5.2020
## 2976                  non-diapausing             2.5.2020
## 2978                  non-diapausing             2.5.2020
## 2979                  non-diapausing             2.5.2020
## 2980                  non-diapausing             2.5.2020
## 2981                  non-diapausing             2.5.2020
## 2982                  non-diapausing             2.5.2020
## 2983                  non-diapausing             2.5.2020
## 2984                  non-diapausing             2.5.2020
## 2985                  non-diapausing             2.5.2020
## 2986                  non-diapausing             2.5.2020
## 2987                  non-diapausing             2.5.2020
## 2988                  non-diapausing             2.5.2020
## 2990                  non-diapausing             2.5.2020
## 2991                  non-diapausing             2.5.2020
## 2992                  non-diapausing             2.5.2020
## 2994                  non-diapausing             2.5.2020
## 2995                  non-diapausing             2.5.2020
## 2997                  non-diapausing             2.5.2020
## 2998                  non-diapausing             2.5.2020
## 2999                  non-diapausing             2.5.2020
## 3000                  non-diapausing             2.5.2020
## 3001                  non-diapausing             2.5.2020
## 3002                  non-diapausing             2.5.2020
## 3004                  non-diapausing             2.5.2020
## 3005                  non-diapausing             2.5.2020
## 3006                  non-diapausing             2.5.2020
## 3007                  non-diapausing             2.5.2020
## 3009                  non-diapausing             2.5.2020
## 3010                  non-diapausing             2.5.2020
## 3011                  non-diapausing             2.5.2020
## 3013                  non-diapausing             2.5.2020
## 3014                  non-diapausing             2.5.2020
## 3015                  non-diapausing             2.5.2020
## 3016                  non-diapausing             2.5.2020
## 3019                  non-diapausing             2.5.2020
## 3020                  non-diapausing             2.5.2020
## 3045                  non-diapausing           02.06.2020
## 3050                  non-diapausing           02.06.2020
## 3052                  non-diapausing           02.06.2020
## 3053                  non-diapausing           02.06.2020
## 3054 diapause-like behavior observed             2.7.2020
## 3055 diapause-like behavior observed             2.7.2020
## 3056 diapause-like behavior observed             2.7.2020
## 3057 diapause-like behavior observed             2.7.2020
## 3058 diapause-like behavior observed             2.7.2020
## 3059 diapause-like behavior observed             2.7.2020
## 3060 diapause-like behavior observed             2.7.2020
## 3061 diapause-like behavior observed             2.7.2020
## 3062 diapause-like behavior observed             2.7.2020
## 3063 diapause-like behavior observed             2.7.2020
## 3064 diapause-like behavior observed             2.7.2020
## 3066 diapause-like behavior observed             2.7.2020
## 3067 diapause-like behavior observed             2.7.2020
## 3068 diapause-like behavior observed             2.7.2020
## 3069 diapause-like behavior observed             2.7.2020
## 3070 diapause-like behavior observed             2.7.2020
## 3071 diapause-like behavior observed             2.7.2020
## 3072 diapause-like behavior observed             2.7.2020
## 3073 diapause-like behavior observed             2.7.2020
## 3074 diapause-like behavior observed             2.7.2020
## 3075 diapause-like behavior observed             2.7.2020
## 3076 diapause-like behavior observed             2.7.2020
## 3077 diapause-like behavior observed             2.7.2020
## 3078 diapause-like behavior observed           02.07.2020
## 3079 diapause-like behavior observed           02.07.2020
## 3080 diapause-like behavior observed           02.07.2020
## 3081 diapause-like behavior observed           02.07.2020
## 3082 diapause-like behavior observed           02.07.2020
## 3083 diapause-like behavior observed           02.07.2020
## 3084 diapause-like behavior observed           02.07.2020
## 3085 diapause-like behavior observed           02.07.2020
## 3086 diapause-like behavior observed           02.07.2020
## 3087 diapause-like behavior observed           02.07.2020
## 3088 diapause-like behavior observed           02.07.2020
## 3089 diapause-like behavior observed           02.07.2020
## 3090 diapause-like behavior observed           02.07.2020
## 3091 diapause-like behavior observed           02.07.2020
## 3092 diapause-like behavior observed           02.07.2020
## 3093 diapause-like behavior observed           02.07.2020
## 3094 diapause-like behavior observed           02.07.2020
## 3095 diapause-like behavior observed           02.07.2020
## 3096 diapause-like behavior observed           02.07.2020
## 3097                  non-diapausing             2.7.2020
## 3098                  non-diapausing             2.7.2020
## 3099                  non-diapausing             2.7.2020
## 3100                  non-diapausing             2.7.2020
## 3101                  non-diapausing             2.7.2020
## 3102                  non-diapausing             2.7.2020
## 3103                  non-diapausing             2.7.2020
## 3105                  non-diapausing             2.7.2020
## 3107                  non-diapausing             2.7.2020
## 3108                  non-diapausing           02.07.2020
## 3109                  non-diapausing           02.07.2020
## 3110                  non-diapausing           02.07.2020
## 3111                  non-diapausing           02.07.2020
## 3112                  non-diapausing           02.07.2020
## 3113                  non-diapausing           02.07.2020
## 3115                  non-diapausing           02.07.2020
## 3116                  non-diapausing           02.07.2020
## 3117                  non-diapausing           02.07.2020
## 3118                  non-diapausing           02.07.2020
## 3119                  non-diapausing           02.07.2020
## 3120                  non-diapausing           02.07.2020
## 3121                  non-diapausing           02.07.2020
## 3122                  non-diapausing           02.07.2020
## 3123                  non-diapausing           02.07.2020
## 3124                  non-diapausing           02.07.2020
## 3125                  non-diapausing           02.07.2020
## 3126                  non-diapausing           02.07.2020
## 3127                  non-diapausing           02.07.2020
## 3128                  non-diapausing           02.07.2020
## 3129                  non-diapausing           02.07.2020
## 3131                  non-diapausing           02.07.2020
## 3132                  non-diapausing           02.07.2020
## 3133                  non-diapausing           02.07.2020
## 3134                  non-diapausing           02.07.2020
## 3135                  non-diapausing           02.07.2020
## 3136                  non-diapausing           02.07.2020
## 3137                  non-diapausing           02.07.2020
## 3138                  non-diapausing           02.07.2020
## 3139                  non-diapausing           02.07.2020
## 3140                  non-diapausing           02.07.2020
## 3141                  non-diapausing           02.07.2020
## 3142                  non-diapausing           02.07.2020
## 3143                  non-diapausing           02.07.2020
## 3144                  non-diapausing           02.07.2020
## 3145                  non-diapausing           02.07.2020
## 3146                  non-diapausing           02.07.2020
## 3147                  non-diapausing             2.7.2020
## 3148                  non-diapausing             2.7.2020
## 3149                  non-diapausing             2.7.2020
## 3150                  non-diapausing             2.7.2020
## 3151                  non-diapausing             2.7.2020
## 3152                  non-diapausing             2.7.2020
## 3153                  non-diapausing             2.7.2020
## 3154                  non-diapausing             2.7.2020
## 3155                  non-diapausing             2.7.2020
## 3157                  non-diapausing             2.7.2020
## 3158                  non-diapausing             2.7.2020
## 3159                  non-diapausing           02.07.2020
## 3160                  non-diapausing           02.07.2020
## 3162                  non-diapausing           02.07.2020
## 3164                  non-diapausing           02.07.2020
## 3165                  non-diapausing           02.07.2020
## 3167                  non-diapausing           02.07.2020
## 3168                  non-diapausing           02.07.2020
## 3169                  non-diapausing           02.07.2020
## 3170                  non-diapausing           02.07.2020
## 3171                  non-diapausing           02.07.2020
## 3172                  non-diapausing           02.07.2020
## 3175                  non-diapausing           02.07.2020
## 3176                  non-diapausing           02.07.2020
## 3177                  non-diapausing             2.3.2020
## 3178                  non-diapausing             2.3.2020
## 3180                  non-diapausing             2.3.2020
## 3181                  non-diapausing             2.3.2020
## 3182                  non-diapausing             2.5.2020
## 3183                  non-diapausing             2.5.2020
## 3185                  non-diapausing             2.5.2020
## 3186                  non-diapausing             2.5.2020
## 3187                  non-diapausing             2.4.2020
## 3189                  non-diapausing             2.4.2020
## 3190                  non-diapausing             2.4.2020
## 3191                  non-diapausing             2.4.2020
## 3192                  non-diapausing             2.5.2020
## 3193                  non-diapausing             2.5.2020
## 3194                  non-diapausing             2.5.2020
## 3196                  non-diapausing             2.3.2020
## 3197                  non-diapausing             2.3.2020
## 3198                  non-diapausing             2.3.2020
## 3199                  non-diapausing             2.4.2020
## 3200                  non-diapausing             2.4.2020
## 3201                  non-diapausing             2.4.2020
## 3202                  non-diapausing             2.4.2020
## 3203                  non-diapausing             2.4.2020
## 3205                  non-diapausing             2.5.2020
## 3206                  non-diapausing             2.5.2020
## 3207                  non-diapausing             2.5.2020
## 3209                  non-diapausing             2.4.2020
## 3210                  non-diapausing             2.4.2020
## 3211                  non-diapausing             2.3.2020
## 3212                  non-diapausing             2.3.2020
## 3213                  non-diapausing             2.3.2020
## 3214                  non-diapausing             2.3.2020
## 3215                  non-diapausing             2.5.2020
## 3216                  non-diapausing             2.5.2020
## 3218                  non-diapausing             2.5.2020
## 3219                  non-diapausing             2.5.2020
## 3220                  non-diapausing             2.4.2020
## 3221                  non-diapausing             2.4.2020
## 3222                  non-diapausing             2.4.2020
## 3223                  non-diapausing             2.4.2020
## 3224                  non-diapausing             2.4.2020
## 3226                  non-diapausing             2.3.2020
## 3227                  non-diapausing             2.3.2020
## 3229                  non-diapausing             2.3.2020
## 3230                  non-diapausing             2.3.2020
## 3231                  non-diapausing             2.3.2020
## 3232                  non-diapausing             2.3.2020
## 3234                  non-diapausing             2.5.2020
## 3235                  non-diapausing             2.5.2020
## 3236                  non-diapausing             2.5.2020
## 3237                  non-diapausing             2.5.2020
## 3238                  non-diapausing             2.4.2020
## 3239                  non-diapausing             2.4.2020
## 3240                  non-diapausing             2.4.2020
## 3241                  non-diapausing             2.4.2020
## 3242                  non-diapausing             2.4.2020
## 3243                  non-diapausing             2.5.2020
## 3244                  non-diapausing             2.5.2020
## 3246                  non-diapausing             2.5.2020
## 3247                  non-diapausing             2.5.2020
## 3248                  non-diapausing             2.4.2020
## 3249                  non-diapausing             2.4.2020
## 3250                  non-diapausing             2.4.2020
## 3251                  non-diapausing             2.5.2020
## 3252                  non-diapausing             2.5.2020
## 3253                  non-diapausing             2.5.2020
## 3254                  non-diapausing             2.5.2020
## 3255                  non-diapausing             2.5.2020
## 3256                  non-diapausing             2.3.2020
## 3257                  non-diapausing             2.3.2020
## 3258                  non-diapausing             2.3.2020
## 3259                  non-diapausing             2.3.2020
## 3260                  non-diapausing             2.3.2020
## 3261                  non-diapausing             2.3.2020
## 3262                  non-diapausing             2.3.2020
## 3263                  non-diapausing             2.3.2020
## 3264                  non-diapausing             2.3.2020
## 3265                  non-diapausing             2.3.2020
## 3266                  non-diapausing             2.5.2020
## 3267                  non-diapausing             2.5.2020
## 3268                  non-diapausing             2.5.2020
## 3269                  non-diapausing             2.5.2020
## 3270                  non-diapausing             2.5.2020
## 3271                  non-diapausing             2.4.2020
## 3273                  non-diapausing             2.5.2020
## 3274                  non-diapausing             2.5.2020
## 3279                  non-diapausing             2.4.2020
## 3280                  non-diapausing             2.4.2020
## 3281                  non-diapausing             2.5.2020
## 3282                  non-diapausing             2.5.2020
## 3283                  non-diapausing             2.5.2020
## 3285                  non-diapausing             2.5.2020
## 3287                  non-diapausing             2.5.2020
## 3288                  non-diapausing             2.5.2020
## 3289                  non-diapausing             2.5.2020
## 3290                  non-diapausing             2.5.2020
## 3291                  non-diapausing             2.5.2020
## 3292                  non-diapausing             2.5.2020
## 3293                  non-diapausing             2.5.2020
## 3294                  non-diapausing             2.5.2020
## 3295                  non-diapausing             2.5.2020
## 3296                  non-diapausing             2.5.2020
## 3297                  non-diapausing             2.5.2020
## 3300                  non-diapausing             2.5.2020
## 3301                  non-diapausing             2.5.2020
## 3302                  non-diapausing             2.5.2020
## 3303                  non-diapausing             2.5.2020
## 3304                  non-diapausing             2.5.2020
## 3305                  non-diapausing             2.5.2020
## 3306                  non-diapausing             2.5.2020
## 3307                  non-diapausing             2.5.2020
## 3308                  non-diapausing             2.3.2020
## 3309                  non-diapausing             2.3.2020
## 3311                  non-diapausing             2.3.2020
## 3312                  non-diapausing             2.3.2020
## 3313                  non-diapausing             2.3.2020
## 3314                  non-diapausing             2.3.2020
## 3315                  non-diapausing             2.3.2020
## 3316                  non-diapausing             2.4.2020
## 3317                  non-diapausing             2.4.2020
## 3318                  non-diapausing             2.4.2020
## 3319                  non-diapausing             2.4.2020
## 3320                  non-diapausing           02.03.2020
## 3321                  non-diapausing           02.03.2020
## 3322                  non-diapausing           02.03.2020
## 3323                  non-diapausing           02.03.2020
## 3325                  non-diapausing           02.03.2020
## 3327                  non-diapausing           02.05.2020
## 3332                  non-diapausing           02.05.2020
## 3339                  non-diapausing           02.05.2020
## 3340                  non-diapausing           02.04.2020
## 3341                  non-diapausing           02.04.2020
## 3342                  non-diapausing           02.04.2020
## 3343                  non-diapausing           02.04.2020
## 3348                  non-diapausing           02.03.2020
## 3350                  non-diapausing           02.03.2020
## 3351                  non-diapausing           02.03.2020
## 3379                  non-diapausing           02.05.2020
## 3391                  non-diapausing           02.04.2020
## 3394                  non-diapausing           02.04.2020
## 3396                  non-diapausing           02.04.2020
## 3398                  non-diapausing           02.04.2020
## 3399                  non-diapausing           02.04.2020
## 3400                  non-diapausing           02.04.2020
## 3401                  non-diapausing           02.04.2020
## 3402                  non-diapausing           02.04.2020
## 3404                  non-diapausing             2.4.2020
## 3405                  non-diapausing             2.4.2020
## 3406                  non-diapausing             2.4.2020
## 3407                  non-diapausing             2.4.2020
## 3408                  non-diapausing             2.4.2020
## 3409                  non-diapausing             2.4.2020
## 3410                  non-diapausing             2.4.2020
## 3411                  non-diapausing             2.4.2020
## 3412                  non-diapausing             2.4.2020
## 3414                  non-diapausing             2.4.2020
## 3415                  non-diapausing             2.4.2020
## 3418                  non-diapausing             2.4.2020
## 3419                  non-diapausing             2.4.2020
## 3420                  non-diapausing             2.4.2020
## 3421                  non-diapausing             2.4.2020
## 3422                  non-diapausing             2.4.2020
## 3423                  non-diapausing             2.4.2020
## 3424                  non-diapausing             2.4.2020
## 3425                  non-diapausing             2.4.2020
## 3426                  non-diapausing             2.4.2020
## 3428                  non-diapausing             2.4.2020
## 3429                  non-diapausing             2.4.2020
## 3430                  non-diapausing             2.4.2020
## 3431                  non-diapausing             2.4.2020
## 3432                  non-diapausing             2.4.2020
## 3433                  non-diapausing             2.4.2020
## 3434                  non-diapausing             2.4.2020
## 3435                  non-diapausing             2.4.2020
## 3436                  non-diapausing             2.4.2020
## 3437                  non-diapausing             2.4.2020
## 3438                  non-diapausing             2.4.2020
## 3439                  non-diapausing             2.4.2020
## 3440                  non-diapausing             2.4.2020
## 3441                  non-diapausing             2.4.2020
## 3442                  non-diapausing             2.4.2020
## 3443                  non-diapausing             2.4.2020
## 3444                  non-diapausing             2.4.2020
## 3445                  non-diapausing             2.4.2020
## 3448                  non-diapausing             2.4.2020
## 3451                  non-diapausing             2.4.2020
## 3452                  non-diapausing             2.4.2020
## 3453                  non-diapausing             2.4.2020
## 3454                  non-diapausing             2.4.2020
## 3461                  non-diapausing           02.04.2020
## 3462                  non-diapausing           02.04.2020
## 3466                  non-diapausing           02.04.2020
## 3473                  non-diapausing           02.04.2020
## 3476                  non-diapausing           10.02.2019
## 3477                  non-diapausing           10.02.2019
## 3478                  non-diapausing           10.02.2019
## 3479                  non-diapausing           10.02.2019
## 3480                  non-diapausing           10.02.2019
## 3481                  non-diapausing           10.02.2019
## 3482                  non-diapausing           10.02.2019
## 3483                  non-diapausing           10.02.2019
## 3485                  non-diapausing           10.02.2019
## 3486                  non-diapausing           10.02.2019
## 3487                  non-diapausing           10.02.2019
## 3488                  non-diapausing           10.02.2019
## 3489                  non-diapausing           10.02.2019
## 3492                  non-diapausing           10.02.2019
## 3493                  non-diapausing           10.02.2019
## 3496                  non-diapausing           10.02.2019
## 3498                  non-diapausing           10.02.2019
## 3499                  non-diapausing           10.02.2019
## 3500                  non-diapausing           10.02.2019
## 3501                  non-diapausing           10.02.2019
## 3502                  non-diapausing           10.02.2019
## 3503                                           10.04.2019
## 3504                                           10.04.2019
## 3505                                           10.04.2019
## 3506                                           10.04.2019
## 3507                                           10.04.2019
## 3508                                           10.04.2019
## 3509                                           10.04.2019
## 3510                                           10.04.2019
## 3511                                           10.04.2019
## 3513                                           10.04.2019
## 3514                                           10.04.2019
## 3515                                           10.03.2019
## 3516                                           10.03.2019
## 3517                                           10.03.2019
## 3518                                           10.03.2019
## 3519                                           10.03.2019
## 3520                                           10.03.2019
## 3521                                           10.03.2019
## 3522                                           10.03.2019
## 3523                                           10.03.2019
## 3524                                           10.03.2019
## 3525                                           10.03.2019
## 3526                                           10.03.2019
## 3528                                           10.03.2019
## 3529                                           10.02.2019
## 3530                                           10.02.2019
## 3531                                           10.02.2019
## 3532                                           10.02.2019
## 3533                                           10.02.2019
## 3534                                           10.02.2019
## 3535                                           10.02.2019
## 3536                                           10.02.2019
## 3537                                           10.02.2019
## 3538                                           10.02.2019
## 3539                                           10.02.2019
## 3540                                           10.02.2019
## 3541                                           10.05.2019
## 3542                                           10.05.2019
## 3543                                           10.05.2019
## 3544                                           10.05.2019
## 3545                                           10.05.2019
## 3546                                           10.05.2019
## 3547                                           10.05.2019
## 3549                                           10.05.2019
## 3550                                           10.05.2019
## 3551                                           10.05.2019
## 3552                                           10.05.2019
## 3553                                           10.05.2019
## 3554                                           10.05.2019
## 3555                                           10.05.2019
## 3556                                           10.05.2019
## 3557                                           10.05.2019
## 3558                                           10.05.2019
## 3559                                           10.05.2019
## 3560                                           10.05.2019
## 3561                                           10.05.2019
## 3562                                           10.02.2019
## 3563                                           10.02.2019
## 3564                                           10.02.2019
## 3565                                           10.02.2019
## 3566                                           12.15.2016
## 3570                                           10.04.2019
## 3571                       tips torn           10.04.2019
## 3572                       tips torn           10.04.2019
## 3573                                           10.04.2019
## 3574                                           10.04.2019
## 3575                                           10.04.2019
## 3576                       tips torn           10.04.2019
## 3577                                           10.02.2019
## 3578                       tips torn           10.02.2019
## 3579                        d1 peach           10.02.2019
## 3581                                           10.02.2019
## 3583                                           10.04.2019
## 3584                       tips torn           10.04.2019
## 3585                       tips torn           10.04.2019
## 3586                       tips torn           10.03.2019
## 3587                                           10.03.2019
## 3588                                           10.03.2019
## 3589                                           10.03.2019
## 3590                                           10.03.2019
## 3591                       tips torn           10.03.2019
## 3592                      diapausing           05.21.2019
## 3594                      diapausing           05.21.2019
## 3595                      diapausing           05.21.2019
## 3596                      diapausing           05.21.2019
## 3597                      diapausing           05.21.2019
## 3598                      diapausing           05.21.2019
## 3599                      diapausing           05.21.2019
## 3600                      diapausing           05.21.2019
## 3601                      diapausing           05.21.2019
## 3602                      diapausing           05.21.2019
## 3603                      diapausing           05.21.2019
## 3604                      diapausing           05.21.2019
## 3605                      diapausing           05.21.2019
## 3606                      diapausing           05.21.2019
## 3607                      diapausing           05.21.2019
## 3608                      diapausing           05.21.2019
## 3609                      diapausing           05.21.2019
## 3610                      diapausing           05.21.2019
## 3611                      diapausing           05.21.2019
## 3612                      diapausing           05.21.2019
## 3613                      diapausing           05.21.2019
## 3614                      diapausing           05.21.2019
## 3615                      diapausing           05.21.2019
## 3616                      diapausing           05.21.2019
## 3617                      diapausing           05.21.2019
## 3618                      diapausing           05.21.2019
## 3619                      diapausing           05.21.2019
## 3620                      diapausing           05.21.2019
## 3621                      diapausing           05.21.2019
## 3622                      diapausing           05.21.2019
## 3623                      diapausing           05.21.2019
## 3624                      diapausing           05.21.2019
## 3625                      diapausing           05.21.2019
## 3626                      diapausing           05.21.2019
## 3627                      diapausing           05.21.2019
## 3628                      diapausing           05.21.2019
## 3629                      diapausing           05.21.2019
## 3630                      diapausing           05.21.2019
## 3631                      diapausing           05.21.2019
## 3632                      diapausing           05.21.2019
## 3633                      diapausing           05.21.2019
## 3634                      diapausing           05.21.2019
## 3635                      diapausing           05.21.2019
## 3636                      diapausing           05.21.2019
## 3637                      diapausing           05.21.2019
## 3638                      diapausing           05.21.2019
## 3639                      diapausing           05.21.2019
## 3640                      diapausing           05.21.2019
## 3641                      diapausing           05.21.2019
## 3642                      diapausing           05.21.2019
## 3643                      diapausing           05.21.2019
## 3644                      diapausing           05.21.2019
## 3645                      diapausing           05.21.2019
## 3646                                           05.21.2019
## 3647                                           05.21.2019
## 3648                                           05.21.2019
## 3649                                           05.21.2019
## 3650                                           05.21.2019
## 3651                                           05.21.2019
## 3652                                           05.21.2019
## 3653                                           05.21.2019
## 3655                                           05.21.2019
## 3656                                           05.21.2019
## 3658                                           05.21.2019
## 3659                                           05.21.2019
## 3660                                           05.21.2019
## 3661                                           05.21.2019
## 3662                                           05.21.2019
## 3663                                           05.21.2019
## 3664                                           05.21.2019
## 3665                                           05.21.2019
## 3666                                           05.21.2019
## 3667                                           05.21.2019
## 3668                                           05.21.2019
## 3669                                           05.21.2019
## 3670                                           05.21.2019
## 3671                                           05.21.2019
## 3672                                           05.21.2019
## 3673                                           05.21.2019
## 3674                                           05.21.2019
## 3675                                           05.21.2019
## 3676                                           05.21.2019
## 3677                                           05.21.2019
## 3678                                           05.21.2019
## 3680                                           05.21.2019
## 3681                                           05.21.2019
## 3682                                           05.21.2019
## 3683                                           05.21.2019
## 3684                                           05.21.2019
## 3685                                           05.21.2019
## 3686                                           05.21.2019
## 3687                                           05.21.2019
## 3688                                           05.21.2019
## 3689                                           05.21.2019
## 3690                                           05.21.2019
## 3691                                           05.21.2019
## 3692                                           05.21.2019
## 3693                                           05.21.2019
## 3694                                           05.21.2019
## 3695                                           05.21.2019
## 3696                                           05.21.2019
## 3698                                           05.21.2019
## 3700                                            5.17.2019
## 3701                                            5.17.2019
## 3703                                            5.17.2019
## 3704                                            5.17.2019
## 3705                                            5.17.2019
## 3706                                            5.17.2019
## 3707                                            5.17.2019
## 3708                                            5.17.2019
## 3709                                            5.17.2019
## 3711                                            5.17.2019
## 3712                                            5.17.2019
## 3713                                            5.17.2019
## 3714                                            5.17.2019
## 3715                                            5.17.2019
## 3716                                            5.17.2019
## 3717                                            5.17.2019
## 3718                                            5.17.2019
## 3719                                            5.17.2019
## 3720                                            5.17.2019
## 3721                                            5.17.2019
## 3722                                            5.17.2019
## 3723                                            5.17.2019
## 3724                                            5.17.2019
## 3725                                            5.17.2019
## 3726                                            5.17.2019
## 3727                                            5.17.2019
## 3728                                            5.17.2019
## 3729                                            5.17.2019
## 3731                                            5.17.2019
## 3734                                            5.17.2019
## 3735                                            5.17.2019
## 3736                                            5.17.2019
##                                  notes             site sex_binom pophost_binom
## 1                                              Ft.Myers        -1             1
## 2                                              Ft.Myers        -1             1
## 3                                              Ft.Myers        -1             1
## 4                                              Ft.Myers        -1             1
## 5                                              Ft.Myers        -1             1
## 6                                              Ft.Myers        -1             1
## 7                                              Ft.Myers        -1             1
## 8                                              Ft.Myers        -1             1
## 9                                              Ft.Myers        -1             1
## 10                                             Ft.Myers         1             1
## 11                                             Ft.Myers         1             1
## 12                                             Ft.Myers        -1             1
## 13                                             Ft.Myers        -1             1
## 14                                             Ft.Myers        -1             1
## 16                                             Ft.Myers        -1             1
## 17                                             Ft.Myers        -1             1
## 18                                             Ft.Myers         1             1
## 19                                             Ft.Myers        -1             1
## 20                                             Ft.Myers         1             1
## 21                                             Ft.Myers         1             1
## 22                                             Ft.Myers        -1             1
## 23                                             Ft.Myers         1             1
## 24                                             Ft.Myers        -1             1
## 25                                             Ft.Myers         1             1
## 26                                             Ft.Myers        -1             1
## 104                                    SW 210th Terrace        -1            -1
## 105                                    SW 210th Terrace         1            -1
## 106                                    SW 210th Terrace        -1            -1
## 107                                    SW 210th Terrace         1            -1
## 109                                    SW 210th Terrace         1            -1
## 110                                    SW 210th Terrace        -1            -1
## 111                                    SW 210th Terrace        -1            -1
## 112                                    SW 210th Terrace        -1            -1
## 114                                    SW 210th Terrace        -1            -1
## 141                                         Charlemagne        -1            -1
## 142                                         Charlemagne        -1            -1
## 143                                         Charlemagne         1            -1
## 144                                         Charlemagne        -1            -1
## 146                                         Charlemagne        -1            -1
## 147                                         Charlemagne         1            -1
## 148                                         Charlemagne        -1            -1
## 149                                         Charlemagne        -1            -1
## 150                                         Charlemagne        -1            -1
## 152                                         Charlemagne        -1            -1
## 153                                         Charlemagne        -1            -1
## 202                                            Polk Ave        -1             1
## 203                                            Polk Ave        -1             1
## 204                                            Polk Ave        -1             1
## 205                                            Polk Ave         1             1
## 206                                            Polk Ave        -1             1
## 207                                            Polk Ave        -1             1
## 208                                            Polk Ave         1             1
## 209                                            Polk Ave        -1             1
## 210                                            Polk Ave        -1             1
## 211                                            Polk Ave        -1             1
## 213                                            Polk Ave         1             1
## 214                                            Polk Ave        -1             1
## 215                                            Polk Ave         1             1
## 217                                            Polk Ave        -1             1
## 219                                            Polk Ave         1             1
## 221                                            Polk Ave        -1             1
## 222                                            Polk Ave        -1             1
## 223                                            Polk Ave        -1             1
## 224                                            Polk Ave        -1             1
## 225                                            Polk Ave        -1             1
## 226                                            Polk Ave         1             1
## 228                                            Polk Ave        -1             1
## 229                                            Polk Ave        -1             1
## 230                                            Polk Ave        -1             1
## 837                                                  JP        -1            -1
## 839                                                  JP        -1            -1
## 840                                                  JP         1            -1
## 841                                                  JP         1            -1
## 844                                                  JP        -1            -1
## 845                                                  JP        -1            -1
## 847                                            Polk Ave         1             1
## 848                                            Polk Ave        -1             1
## 849                                            Polk Ave        -1             1
## 850                                            Polk Ave         1             1
## 851                                            Polk Ave         1             1
## 852                                            Polk Ave        -1             1
## 853                                            Polk Ave         1             1
## 854                                            Polk Ave        -1             1
## 856                                            Polk Ave        -1             1
## 857                                            Polk Ave         1             1
## 858                                            Polk Ave        -1             1
## 859                                            Polk Ave        -1             1
## 860                                            Polk Ave         1             1
## 861                                            Polk Ave         1             1
## 862                                            Polk Ave        -1             1
## 863                                            Polk Ave         1             1
## 865                                            Polk Ave        -1             1
## 866                                            Polk Ave         1             1
## 867                                            Polk Ave        -1             1
## 868                                            Polk Ave         1             1
## 870                                            Polk Ave         1             1
## 871                                            Polk Ave        -1             1
## 872                                            Polk Ave         1             1
## 873                                            Polk Ave         1             1
## 874                                            Polk Ave         1             1
## 875                                            Polk Ave        -1             1
## 877                                            Polk Ave         1             1
## 878                                            Polk Ave         1             1
## 879                                            Polk Ave        -1             1
## 880                                            Polk Ave         1             1
## 881                                            Polk Ave        -1             1
## 882                                            Polk Ave         1             1
## 883                                            Polk Ave         1             1
## 884                                            Polk Ave        -1             1
## 886                                            Polk Ave         1             1
## 887                                            Polk Ave        -1             1
## 888                                            Polk Ave         1             1
## 889                                            Polk Ave         1             1
## 890                                            Polk Ave         1             1
## 905                                           Founder's         1            -1
## 907                                           Founder's        -1            -1
## 911                                           Founder's         1            -1
## 912                                           Founder's        -1            -1
## 915                                           Founder's         1            -1
## 917                                           Founder's         1            -1
## 918                                           Founder's         1            -1
## 975                                                  JP         1            -1
## 978                                                  JP        -1            -1
## 986                                                  JP         1            -1
## 990                                                  JP        -1            -1
## 993                                                  JP        -1            -1
## 995                                                  JP        -1            -1
## 996                                                  JP         1            -1
## 997                                                  JP        -1            -1
## 1001                                                 JP        -1            -1
## 1012                                                 JP         1            -1
## 1017                                                 JP        -1            -1
## 1023                                           Polk Ave        -1             1
## 1024                                           Polk Ave        -1             1
## 1025                                           Polk Ave         1             1
## 1026                                           Polk Ave        -1             1
## 1027                                           Polk Ave         1             1
## 1028                                           Polk Ave        -1             1
## 1029                                           Polk Ave        -1             1
## 1030                                           Polk Ave         1             1
## 1031                                           Polk Ave        -1             1
## 1032                                           Polk Ave         1             1
## 1033                                           Polk Ave        -1             1
## 1034                                           Polk Ave        -1             1
## 1035                                           Polk Ave        -1             1
## 1036                                           Polk Ave         1             1
## 1037                                           Polk Ave        -1             1
## 1038                                           Polk Ave         1             1
## 1039                                           Polk Ave         1             1
## 1040                                           Polk Ave         1             1
## 1041                                           Polk Ave         1             1
## 1042                                           Polk Ave        -1             1
## 1043                                           Polk Ave         1             1
## 1044                                           Polk Ave        -1             1
## 1045                                           Polk Ave        -1             1
## 1046                                           Polk Ave         1             1
## 1047                                           Polk Ave         1             1
## 1048                                           Polk Ave         1             1
## 1049                                           Polk Ave        -1             1
## 1050                                           Polk Ave         1             1
## 1051                                           Polk Ave        -1             1
## 1052                                           Polk Ave        -1             1
## 1054                                           Polk Ave        -1             1
## 1055                                           Polk Ave        -1             1
## 1056                                           Polk Ave         1             1
## 1057                                           Polk Ave         1             1
## 1058                                           Polk Ave         1             1
## 1059                                           Polk Ave         1             1
## 1060                                           Polk Ave         1             1
## 1061                                           Polk Ave        -1             1
## 1062                                           Polk Ave         1             1
## 1063                                           Polk Ave        -1             1
## 1064                                           Polk Ave        -1             1
## 1065                                           Polk Ave         1             1
## 1066                                           Polk Ave         1             1
## 1067                                           Polk Ave        -1             1
## 1068                                           Polk Ave         1             1
## 1069                                           Polk Ave         1             1
## 1070                                           Polk Ave        -1             1
## 1071                                           Polk Ave         1             1
## 1072                                           Polk Ave        -1             1
## 1073                                           Polk Ave         1             1
## 1074                                           Polk Ave        -1             1
## 1075                                           Polk Ave        -1             1
## 1076                                           Polk Ave         1             1
## 1077                                        Mount & 8th         1             1
## 1078                                        Mount & 8th        -1             1
## 1079                                        Mount & 8th        -1             1
## 1080                                        Mount & 8th         1             1
## 1081                                        Mount & 8th         1             1
## 1082                                        Mount & 8th         1             1
## 1083                                        Mount & 8th        -1             1
## 1084                                        Mount & 8th        -1             1
## 1085                                        Mount & 8th        -1             1
## 1086                                        Mount & 8th         1             1
## 1088                                        Mount & 8th        -1             1
## 1089                                        Mount & 8th        -1             1
## 1090                                        Mount & 8th        -1             1
## 1091                                        Mount & 8th         1             1
## 1092                                        Mount & 8th        -1             1
## 1093                                        Mount & 8th        -1             1
## 1094                                        Mount & 8th         1             1
## 1095                                        Mount & 8th        -1             1
## 1096                                        Mount & 8th         1             1
## 1097                                        Mount & 8th         1             1
## 1098                                        Mount & 8th         1             1
## 1099                                        Mount & 8th        -1             1
## 1100                                        Mount & 8th         1             1
## 1101                                        Mount & 8th        -1             1
## 1103                                        Mount & 8th         1             1
## 1104                                        Mount & 8th         1             1
## 1105                                        Mount & 8th         1             1
## 1106                                        Mount & 8th        -1             1
## 1107                                        Mount & 8th        -1             1
## 1108                                        Mount & 8th        -1             1
## 1110                                        Mount & 8th        -1             1
## 1111                                        Mount & 8th        -1             1
## 1112                                        Mount & 8th        -1             1
## 1117                                          Founder's         1            -1
## 1118                                          Founder's         1            -1
## 1119                                          Founder's         1            -1
## 1121                                          Founder's         1            -1
## 1122                                          Founder's         1            -1
## 1124                                          Founder's         1            -1
## 1125                                         23rd & 8th        -1             1
## 1126                                         23rd & 8th         1             1
## 1127                                         23rd & 8th        -1             1
## 1128                                         23rd & 8th        -1             1
## 1129                                         23rd & 8th         1             1
## 1130                                         23rd & 8th         1             1
## 1131                                         23rd & 8th         1             1
## 1132                                         23rd & 8th         1             1
## 1133                                         23rd & 8th         1             1
## 1134                                         23rd & 8th         1             1
## 1135                                         23rd & 8th        -1             1
## 1136                                         23rd & 8th         1             1
## 1137                                         23rd & 8th        -1             1
## 1138                                         23rd & 8th        -1             1
## 1142                                         23rd & 8th         1             1
## 1143                                         23rd & 8th         1             1
## 1144                                         23rd & 8th        -1             1
## 1146                                         23rd & 8th         1             1
## 1148                                         23rd & 8th        -1             1
## 1155                                         23rd & 8th         1             1
## 1156                                         23rd & 8th         1             1
## 1158                                         23rd & 8th         1             1
## 1160                                         23rd & 8th        -1             1
## 1161                                         23rd & 8th        -1             1
## 1162                                         23rd & 8th         1             1
## 1164                                         23rd & 8th         1             1
## 1166                                         23rd & 8th         1             1
## 1167                                         23rd & 8th         1             1
## 1170                                         23rd & 8th         1             1
## 1174                         tips torn       23rd & 8th         1             1
## 1176                                         23rd & 8th        -1             1
## 1177                         tips torn       23rd & 8th        -1             1
## 1178                         tips torn       23rd & 8th        -1             1
## 1179                         tips torn       23rd & 8th        -1             1
## 1180                                         23rd & 8th         1             1
## 1181                                         23rd & 8th        -1             1
## 1182                                        SW 296th St        -1             1
## 1185                                        SW 296th St        -1             1
## 1186                                        SW 296th St        -1             1
## 1188                                        SW 296th St         1             1
## 1189                                        SW 296th St        -1             1
## 1191                                        SW 296th St        -1             1
## 1192                                        SW 296th St        -1             1
## 1193                                        SW 296th St        -1             1
## 1194                                        SW 296th St        -1             1
## 1203                                        Charlemagne         1            -1
## 1204                                        Charlemagne         1            -1
## 1205                                        Charlemagne         1            -1
## 1208                                        Charlemagne        -1            -1
## 1209                                        Charlemagne        -1            -1
## 1210                                        Charlemagne        -1            -1
## 1213                                        Charlemagne         1            -1
## 1215                                        Charlemagne        -1            -1
## 1217                                        Charlemagne        -1            -1
## 1219                                        Charlemagne         1            -1
## 1221                                        Charlemagne         1            -1
## 1222                                        Charlemagne         1            -1
## 1225                                        Charlemagne        -1            -1
## 1228                                        Charlemagne         1            -1
## 1230                                        Charlemagne        -1            -1
## 1235                                        Charlemagne         1            -1
## 1238                                        Charlemagne         1            -1
## 1239                                        Charlemagne        -1            -1
## 1241                                        Charlemagne        -1            -1
## 1246                                        Charlemagne        -1            -1
## 1247                                        Charlemagne        -1            -1
## 1248                                                 JP         1            -1
## 1249                                                 JP        -1            -1
## 1250                                                 JP        -1            -1
## 1252                                                 JP        -1            -1
## 1253                                                 JP        -1            -1
## 1255                                                 JP         1            -1
## 1257                                                 JP         1            -1
## 1258                                                 JP        -1            -1
## 1268                                           Polk Ave        -1             1
## 1272                                           Polk Ave        -1             1
## 1276                                        Mount & 8th         1             1
## 1281                                        Mount & 8th         1             1
## 1285                                        Mount & 8th        -1             1
## 1289                                        Mount & 8th        -1             1
## 1290                                        Mount & 8th        -1             1
## 1291                         tips torn      Mount & 8th         1             1
## 1292                                        Mount & 8th        -1             1
## 1294                                        Mount & 8th        -1             1
## 1295                                        Mount & 8th         1             1
## 1296                                        Mount & 8th         1             1
## 1297                                        Mount & 8th         1             1
## 1298                                        Mount & 8th         1             1
## 1299                                        Mount & 8th         1             1
## 1300                                        Mount & 8th         1             1
## 1301                                        Mount & 8th        -1             1
## 1302                                        Mount & 8th         1             1
## 1303                                        Mount & 8th         1             1
## 1304                                        Mount & 8th         1             1
## 1306                                        Mount & 8th        -1             1
## 1307                                        Mount & 8th        -1             1
## 1308                                        Mount & 8th         1             1
## 1309                                        Mount & 8th        -1             1
## 1310                                        Mount & 8th        -1             1
## 1311                                        Mount & 8th         1             1
## 1312                                        Mount & 8th         1             1
## 1313                                        Mount & 8th         1             1
## 1315                                        Mount & 8th        -1             1
## 1316                                        Mount & 8th        -1             1
## 1317                                        Mount & 8th         1             1
## 1318                                        Mount & 8th        -1             1
## 1319                                        Mount & 8th        -1             1
## 1320                                        Mount & 8th         1             1
## 1321                                        Mount & 8th         1             1
## 1322                                        Mount & 8th         1             1
## 1323                                        Mount & 8th         1             1
## 1324                                        Mount & 8th         1             1
## 1325                                        Mount & 8th        -1             1
## 1326                                        Mount & 8th         1             1
## 1327                                        Mount & 8th        -1             1
## 1328                                        Mount & 8th        -1             1
## 1329                                        Mount & 8th         1             1
## 1330                                        Mount & 8th         1             1
## 1331                                        Mount & 8th        -1             1
## 1332                                        Mount & 8th         1             1
## 1333                                        Mount & 8th        -1             1
## 1334                                        Mount & 8th        -1             1
## 1335                                        Mount & 8th        -1             1
## 1336                                        Mount & 8th        -1             1
## 1337                                        Mount & 8th        -1             1
## 1338                                        Mount & 8th        -1             1
## 1340                                          Mohawk St        -1            -1
## 1341                                          Mohawk St        -1            -1
## 1343                                          Mohawk St         1            -1
## 1344                                          Mohawk St        -1            -1
## 1346                                          Mohawk St        -1            -1
## 1347                                          Mohawk St         1            -1
## 1349                                          Mohawk St         1            -1
## 1354                                          Mohawk St         1            -1
## 1355                                          Mohawk St        -1            -1
## 1356                                          Mohawk St         1            -1
## 1357                                          Mohawk St         1            -1
## 1358                                          Mohawk St         1            -1
## 1361                                          Mohawk St        -1            -1
## 1364                                          Mohawk St        -1            -1
## 1365                                          Mohawk St        -1            -1
## 1367                                          Mohawk St         1            -1
## 1368                                          Mohawk St        -1            -1
## 1369                                          Mohawk St        -1            -1
## 1370                                          Mohawk St        -1            -1
## 1371                                          Mohawk St        -1            -1
## 1372                                          Mohawk St        -1            -1
## 1375                                          Mohawk St        -1            -1
## 1545                                         23rd & 8th        -1             1
## 1546                                         23rd & 8th        -1             1
## 1547                                         23rd & 8th         1             1
## 1549                                         23rd & 8th        -1             1
## 1550                                         23rd & 8th        -1             1
## 1552                                         23rd & 8th         1             1
## 1553                                         23rd & 8th         1             1
## 1554                                         23rd & 8th        -1             1
## 1555                                         23rd & 8th        -1             1
## 1556                                         23rd & 8th        -1             1
## 1557                                         23rd & 8th         1             1
## 1558                                         23rd & 8th         1             1
## 1559                                         23rd & 8th        -1             1
## 1560                                         23rd & 8th        -1             1
## 1562                                         23rd & 8th         1             1
## 1563                                         23rd & 8th         1             1
## 1565                                         23rd & 8th         1             1
## 1566                                         23rd & 8th         1             1
## 1567                                         23rd & 8th        -1             1
## 1568                                         23rd & 8th        -1             1
## 1569                                         23rd & 8th        -1             1
## 1571                                         23rd & 8th         1             1
## 1572                                         23rd & 8th         1             1
## 1573                                         23rd & 8th        -1             1
## 1574                                         23rd & 8th         1             1
## 1575                                         23rd & 8th         1             1
## 1576                                         23rd & 8th         1             1
## 1577                                         23rd & 8th        -1             1
## 1578                                         23rd & 8th        -1             1
## 1579                                         23rd & 8th        -1             1
## 1580                                         23rd & 8th        -1             1
## 1581                                         23rd & 8th         1             1
## 1582                                         23rd & 8th         1             1
## 1583                                         23rd & 8th        -1             1
## 1584                                         23rd & 8th        -1             1
## 1585                                         23rd & 8th         1             1
## 1586                                         23rd & 8th        -1             1
## 1587                                         23rd & 8th         1             1
## 1589                                         23rd & 8th        -1             1
## 1590                                         23rd & 8th         1             1
## 1591                                         23rd & 8th        -1             1
## 1592                                         23rd & 8th        -1             1
## 1593                                         23rd & 8th         1             1
## 1594                                         23rd & 8th        -1             1
## 1595                                         23rd & 8th        -1             1
## 1596                                         23rd & 8th         1             1
## 1597                                         23rd & 8th        -1             1
## 1598                                         23rd & 8th         1             1
## 1599                                         23rd & 8th         1             1
## 1600                                         23rd & 8th        -1             1
## 1601                                         23rd & 8th         1             1
## 1602                                         23rd & 8th         1             1
## 1603                                         23rd & 8th        -1             1
## 1605                       teal marked      SW 296th St        -1             1
## 1607                       teal marked      SW 296th St         1             1
## 1608                                        SW 296th St        -1             1
## 1610                                        SW 296th St         1             1
## 1611                                        SW 296th St         1             1
## 1612                                        SW 296th St         1             1
## 1613                       teal marked      SW 296th St        -1             1
## 1614                                        SW 296th St        -1             1
## 1615                                        SW 296th St        -1             1
## 1616                                        SW 296th St         1             1
## 1617                                        SW 296th St        -1             1
## 1618                                        SW 296th St         1             1
## 1620                                        SW 296th St        -1             1
## 1621                                        SW 296th St        -1             1
## 1622                       teal marked      SW 296th St        -1             1
## 1624                                        SW 296th St        -1             1
## 1625                                        SW 296th St        -1             1
## 1626                                        SW 296th St         1             1
## 1627                                        SW 296th St        -1             1
## 1628                                        SW 296th St        -1             1
## 1629                                        SW 296th St         1             1
## 1630                                        SW 296th St        -1             1
## 1631                                        SW 296th St        -1             1
## 1632                                        SW 296th St        -1             1
## 1634                       teal marked      SW 296th St        -1             1
## 1635                                        SW 296th St         1             1
## 1636                                        SW 296th St         1             1
## 1641                       teal marked      SW 296th St         1             1
## 1642                       teal marked      SW 296th St         1             1
## 1643                                        SW 296th St        -1             1
## 1644                       teal marked      SW 296th St        -1             1
## 1645                                        SW 296th St         1             1
## 1646                                        SW 296th St         1             1
## 1647                       teal marked      SW 296th St        -1             1
## 1648                                        SW 296th St         1             1
## 1651                       teal marked      SW 296th St        -1             1
## 1652                                        SW 296th St         1             1
## 1654                                        SW 296th St        -1             1
## 1655                                        SW 296th St         1             1
## 1656                       teal marked      SW 296th St         1             1
## 1657                       teal marked      SW 296th St        -1             1
## 1658                       teal marked      SW 296th St         1             1
## 1659                                        SW 296th St        -1             1
## 1660                                        SW 296th St         1             1
## 1661                                        SW 296th St         1             1
## 1662                       teal marked      SW 296th St         1             1
## 1663                                        SW 296th St         1             1
## 1664                                        SW 296th St        -1             1
## 1665                                        SW 296th St         1             1
## 1666                                        SW 296th St         1             1
## 1667                                        SW 296th St         1             1
## 1668                                        SW 296th St        -1             1
## 1669                                        SW 296th St        -1             1
## 1670                                        SW 296th St         1             1
## 1671                                        SW 296th St        -1             1
## 1672                                        SW 296th St        -1             1
## 1673                                        SW 296th St        -1             1
## 1674                                        SW 296th St        -1             1
## 1675                                        SW 296th St        -1             1
## 1676                                        SW 296th St        -1             1
## 1677                                        SW 296th St         1             1
## 1678                                        SW 296th St         1             1
## 1679                                        SW 296th St        -1             1
## 1680                                        SW 296th St        -1             1
## 1681                                        SW 296th St         1             1
## 1682                                        SW 296th St        -1             1
## 1683                                        SW 296th St         1             1
## 1684                                        SW 296th St        -1             1
## 1685                                        SW 296th St         1             1
## 1686                                        SW 296th St        -1             1
## 1687                                        SW 296th St        -1             1
## 1688                                        SW 296th St         1             1
## 1689                                        SW 296th St        -1             1
## 1690                                        SW 296th St        -1             1
## 1691                                        SW 296th St         1             1
## 1692                                        SW 296th St         1             1
## 1693                                        SW 296th St        -1             1
## 1694                                        SW 296th St         1             1
## 1695                                        SW 296th St        -1             1
## 1696                                        SW 296th St         1             1
## 1697                                        SW 296th St         1             1
## 1698                                        SW 296th St         1             1
## 1699                                        SW 296th St         1             1
## 1700                                        SW 296th St        -1             1
## 1701                                        SW 296th St         1             1
## 1702                                        SW 296th St        -1             1
## 1703                                        SW 296th St        -1             1
## 1704                                        SW 296th St        -1             1
## 1705                                        SW 296th St         1             1
## 1706                                        SW 296th St         1             1
## 1707                                        SW 296th St        -1             1
## 1708                                        SW 296th St         1             1
## 1709                                        SW 296th St         1             1
## 1710                                        SW 296th St         1             1
## 1711                                        SW 296th St         1             1
## 1712                                        SW 296th St         1             1
## 1713                                        SW 296th St        -1             1
## 1714                                        SW 296th St         1             1
## 1715                                        SW 296th St         1             1
## 1716                                        SW 296th St         1             1
## 1717                                        SW 296th St         1             1
## 1718                                        SW 296th St         1             1
## 1719                                        SW 296th St        -1             1
## 1720                                        SW 296th St        -1             1
## 1721                                        SW 296th St        -1             1
## 1722                                        SW 296th St         1             1
## 1723                                        SW 296th St        -1             1
## 1724                                        SW 296th St        -1             1
## 1725                                        SW 296th St         1             1
## 1726                                        SW 296th St        -1             1
## 1727                                        SW 296th St         1             1
## 1728                                        SW 296th St        -1             1
## 1729                                        SW 296th St        -1             1
## 1730                                        SW 296th St         1             1
## 1731                                        SW 296th St        -1             1
## 1732                                        SW 296th St        -1             1
## 1733                                        SW 296th St        -1             1
## 1734                                                 JP         1            -1
## 1735                                                 JP        -1            -1
## 1736                                                 JP        -1            -1
## 1738                                                 JP         1            -1
## 1739                                                 JP        -1            -1
## 1740                                                 JP        -1            -1
## 1741                                                 JP        -1            -1
## 1742                                                 JP         1            -1
## 1743                                                 JP        -1            -1
## 1744                                                 JP         1            -1
## 1746                                                 JP        -1            -1
## 1747                                                 JP        -1            -1
## 1748                                                 JP        -1            -1
## 1749                                                 JP         1            -1
## 1750                                                 JP        -1            -1
## 1751                                                 JP        -1            -1
## 1752                                                 JP         1            -1
## 1753                                                 JP         1            -1
## 1754                                                 JP         1            -1
## 1755                                                 JP         1            -1
## 1758                                                 JP         1            -1
## 1759                                                 JP         1            -1
## 1760                                                 JP        -1            -1
## 1761                                                 JP        -1            -1
## 1762                                                 JP         1            -1
## 1763                                                 JP         1            -1
## 1764                                                 JP        -1            -1
## 1765                                                 JP        -1            -1
## 1766                                                 JP        -1            -1
## 1768                                                 JP        -1            -1
## 1769                                        Charlemagne        -1            -1
## 1770                                        Charlemagne         1            -1
## 1771                                        Charlemagne        -1            -1
## 1772                                        Charlemagne         1            -1
## 1774                                        Charlemagne        -1            -1
## 1775                                        Charlemagne         1            -1
## 1776                                        Charlemagne         1            -1
## 1779                                        Charlemagne        -1            -1
## 1780                                        Charlemagne         1            -1
## 1782                                        Charlemagne        -1            -1
## 1785                                        Charlemagne         1            -1
## 1786                                        Charlemagne        -1            -1
## 1788                                        Charlemagne        -1            -1
## 1789                                        Charlemagne        -1            -1
## 1790                                        Charlemagne         1            -1
## 1791                                        Charlemagne        -1            -1
## 1793                                        Charlemagne        -1            -1
## 1800                                        Charlemagne        -1            -1
## 1802                                        Charlemagne        -1            -1
## 1805                                        Charlemagne        -1            -1
## 1806                                        Charlemagne         1            -1
## 1807                                        Charlemagne         1            -1
## 1808                                        Charlemagne         1            -1
## 1809                                        Charlemagne        -1            -1
## 1810                                        Charlemagne         1            -1
## 1811                                        Charlemagne         1            -1
## 1812                                        Charlemagne         1            -1
## 1813                                        Charlemagne        -1            -1
## 1814                                        Charlemagne        -1            -1
## 1815                                        Charlemagne         1            -1
## 1816                                        Charlemagne        -1            -1
## 1817                                        Charlemagne        -1            -1
## 1819                                        Charlemagne        -1            -1
## 1821                                        Charlemagne         1            -1
## 1822                                        Charlemagne        -1            -1
## 1823                                        Charlemagne         1            -1
## 1824                                        Charlemagne         1            -1
## 1826                                           Polk Ave        -1             1
## 1827                                           Polk Ave         1             1
## 1828                                           Polk Ave         1             1
## 1829                                           Polk Ave        -1             1
## 1831                                           Polk Ave        -1             1
## 1832                                           Polk Ave         1             1
## 1833                                           Polk Ave        -1             1
## 1834                                           Polk Ave         1             1
## 1835                                           Polk Ave        -1             1
## 1836                                           Polk Ave        -1             1
## 1837                                           Polk Ave        -1             1
## 1838                                           Polk Ave         1             1
## 1839                                           Polk Ave         1             1
## 1840                                           Polk Ave         1             1
## 1842                                           Polk Ave         1             1
## 1844                                           Polk Ave        -1             1
## 1845                                           Polk Ave         1             1
## 1846                                           Polk Ave        -1             1
## 1847                                           Polk Ave        -1             1
## 1848                                           Polk Ave        -1             1
## 1849                                           Polk Ave         1             1
## 1850                                           Polk Ave        -1             1
## 1852                                           Polk Ave         1             1
## 1853                                           Polk Ave        -1             1
## 1854                                           Polk Ave        -1             1
## 1855                                           Polk Ave        -1             1
## 1856                                           Polk Ave         1             1
## 1857                                           Polk Ave        -1             1
## 1858                                           Polk Ave         1             1
## 1859                                           Polk Ave        -1             1
## 1862                                           Polk Ave        -1             1
## 1863                                           Polk Ave         1             1
## 1864                                           Polk Ave         1             1
## 1867                                           Polk Ave        -1             1
## 1868                                           Polk Ave        -1             1
## 1871                                           Polk Ave        -1             1
## 1874                                           Polk Ave         1             1
## 1876                                           Polk Ave        -1             1
## 1878                                           Polk Ave         1             1
## 1879                                           Polk Ave        -1             1
## 1881                                           Polk Ave        -1             1
## 1882                                           Polk Ave        -1             1
## 1884                                           Polk Ave         1             1
## 1885                                           Polk Ave        -1             1
## 1887                                           Polk Ave         1             1
## 1892                                           Polk Ave        -1             1
## 1894                                           Polk Ave        -1             1
## 1895                                           Polk Ave        -1             1
## 1896                                           Polk Ave        -1             1
## 1897                                           Polk Ave        -1             1
## 1898                                           Polk Ave         1             1
## 1901                                           Polk Ave         1             1
## 1905                                           Polk Ave        -1             1
## 1907                                           Polk Ave        -1             1
## 1912                                           Polk Ave        -1             1
## 1914                                           Polk Ave        -1             1
## 1915                                           Polk Ave        -1             1
## 1917                                        Mount & 8th        -1             1
## 1918                                        Mount & 8th         1             1
## 1922                                        Mount & 8th        -1             1
## 1923                                        Mount & 8th         1             1
## 1924                                        Mount & 8th        -1             1
## 1925                                        Mount & 8th        -1             1
## 1927                                        Mount & 8th        -1             1
## 1928                                        Mount & 8th         1             1
## 1929                                        Mount & 8th         1             1
## 1930                                        Mount & 8th        -1             1
## 1933                                        Mount & 8th         1             1
## 1935                                        Mount & 8th         1             1
## 1936                                        Mount & 8th        -1             1
## 1937                                        Mount & 8th        -1             1
## 1938                                        Mount & 8th        -1             1
## 1939                                        Mount & 8th        -1             1
## 1941                                        Mount & 8th        -1             1
## 1942                                        Mount & 8th         1             1
## 1944                                        Mount & 8th        -1             1
## 1945                                        Mount & 8th         1             1
## 1946                                        Mount & 8th        -1             1
## 1947                                        Mount & 8th        -1             1
## 1948                                        Mount & 8th         1             1
## 1949                                        Mount & 8th        -1             1
## 1952                                        Mount & 8th        -1             1
## 1953                                        Mount & 8th        -1             1
## 1955                                        Mount & 8th        -1             1
## 1956                                        Mount & 8th         1             1
## 1958                                        Mount & 8th        -1             1
## 1959                                        Mount & 8th         1             1
## 1960                                        Mount & 8th        -1             1
## 1963                                        Mount & 8th        -1             1
## 1964                                        Mount & 8th        -1             1
## 1965                                        Mount & 8th        -1             1
## 1973                                        Mount & 8th         1             1
## 1975                                         23rd & 8th        -1             1
## 1976                                         23rd & 8th        -1             1
## 1977                                         23rd & 8th        -1             1
## 1978                                         23rd & 8th         1             1
## 1979                                         23rd & 8th         1             1
## 1980                                         23rd & 8th        -1             1
## 1981                                         23rd & 8th        -1             1
## 1982                                         23rd & 8th         1             1
## 1983                         torn tips       23rd & 8th         1             1
## 1984                                         23rd & 8th         1             1
## 1985                                         23rd & 8th         1             1
## 1986                                         23rd & 8th         1             1
## 1987                                         23rd & 8th         1             1
## 1988                                         23rd & 8th         1             1
## 1989                                         23rd & 8th         1             1
## 1990                                         23rd & 8th         1             1
## 1992                         torn tips       23rd & 8th        -1             1
## 1993                                         23rd & 8th        -1             1
## 1994                                         23rd & 8th        -1             1
## 1995                                         23rd & 8th        -1             1
## 1996                         torn tips       23rd & 8th        -1             1
## 1997                                         23rd & 8th         1             1
## 1998                         torn tips       23rd & 8th        -1             1
## 1999                         torn tips       23rd & 8th         1             1
## 2000                                         23rd & 8th         1             1
## 2001                                         23rd & 8th        -1             1
## 2002                                         23rd & 8th        -1             1
## 2003                                         23rd & 8th        -1             1
## 2004                                         23rd & 8th        -1             1
## 2005                                         23rd & 8th         1             1
## 2006                                         23rd & 8th         1             1
## 2007                                         23rd & 8th         1             1
## 2008                                         23rd & 8th        -1             1
## 2009                                         23rd & 8th         1             1
## 2010                                         23rd & 8th        -1             1
## 2011                                         23rd & 8th        -1             1
## 2012                                         23rd & 8th        -1             1
## 2013                                         23rd & 8th         1             1
## 2014                                         23rd & 8th        -1             1
## 2015                                         23rd & 8th         1             1
## 2016                                         23rd & 8th         1             1
## 2017                                         23rd & 8th         1             1
## 2018                                         23rd & 8th        -1             1
## 2019                                         23rd & 8th        -1             1
## 2020                                         23rd & 8th         1             1
## 2021                         torn tips       23rd & 8th        -1             1
## 2022                                         23rd & 8th        -1             1
## 2023                                         23rd & 8th        -1             1
## 2024                                         23rd & 8th         1             1
## 2025                                         23rd & 8th         1             1
## 2026                                         23rd & 8th         1             1
## 2027                                         23rd & 8th        -1             1
## 2028                                         23rd & 8th        -1             1
## 2029                                         23rd & 8th         1             1
## 2031                                         23rd & 8th         1             1
## 2032                                         23rd & 8th         1             1
## 2033                                         23rd & 8th        -1             1
## 2034                                         23rd & 8th        -1             1
## 2036                                         23rd & 8th        -1             1
## 2037                                         23rd & 8th         1             1
## 2038                                         23rd & 8th        -1             1
## 2039                                        Charlemagne        -1            -1
## 2040                                        Charlemagne        -1            -1
## 2041                                        Charlemagne        -1            -1
## 2042                                        Charlemagne         1            -1
## 2047                                        Charlemagne         1            -1
## 2050                                        Charlemagne         1            -1
## 2053                                        Charlemagne        -1            -1
## 2055                                        Charlemagne         1            -1
## 2057                                        Charlemagne         1            -1
## 2058                                        Charlemagne        -1            -1
## 2059                                        Charlemagne        -1            -1
## 2062                                        Charlemagne         1            -1
## 2064                                        Charlemagne         1            -1
## 2065                                        Charlemagne        -1            -1
## 2069                                        Charlemagne         1            -1
## 2071                                        Charlemagne        -1            -1
## 2072                                        Charlemagne        -1            -1
## 2073                                        Charlemagne         1            -1
## 2079                                        Charlemagne         1            -1
## 2081                                        Charlemagne         1            -1
## 2082                                        Charlemagne        -1            -1
## 2083                                        Charlemagne         1            -1
## 2085                                        Charlemagne        -1            -1
## 2086                                        Charlemagne        -1            -1
## 2087                                        Charlemagne         1            -1
## 2088                                        Charlemagne         1            -1
## 2091                                        Charlemagne         1            -1
## 2094                                        Charlemagne        -1            -1
## 2095                                        Charlemagne         1            -1
## 2097                                        Charlemagne         1            -1
## 2099                                        Charlemagne        -1            -1
## 2101                                        Charlemagne         1            -1
## 2103                                        Charlemagne        -1            -1
## 2107                                           Polk Ave         1             1
## 2108                                           Polk Ave         1             1
## 2109                                           Polk Ave         1             1
## 2110                                           Polk Ave        -1             1
## 2111                                           Polk Ave        -1             1
## 2112                                           Polk Ave         1             1
## 2113                                           Polk Ave         1             1
## 2115                                           Polk Ave         1             1
## 2116                                           Polk Ave        -1             1
## 2117                                           Polk Ave         1             1
## 2118                         torn tips         Polk Ave         1             1
## 2119                                           Polk Ave        -1             1
## 2120                                           Polk Ave         1             1
## 2121                                           Polk Ave        -1             1
## 2122                                           Polk Ave         1             1
## 2123                                           Polk Ave         1             1
## 2124                                           Polk Ave        -1             1
## 2125                                           Polk Ave         1             1
## 2126                                           Polk Ave         1             1
## 2127                                           Polk Ave         1             1
## 2128                                           Polk Ave        -1             1
## 2129                                           Polk Ave        -1             1
## 2130                                           Polk Ave         1             1
## 2131                                           Polk Ave        -1             1
## 2133                                           Polk Ave        -1             1
## 2134                                           Polk Ave         1             1
## 2136                         torn tips         Polk Ave         1             1
## 2137                         torn tips         Polk Ave        -1             1
## 2138                                           Polk Ave         1             1
## 2139                         torn tips         Polk Ave         1             1
## 2140                                           Polk Ave         1             1
## 2141                                           Polk Ave         1             1
## 2142                                           Polk Ave         1             1
## 2143                                           Polk Ave         1             1
## 2144                                           Polk Ave        -1             1
## 2145                                           Polk Ave        -1             1
## 2146                                           Polk Ave        -1             1
## 2147                                        Mount & 8th        -1             1
## 2148                                         23rd & 8th         1             1
## 2149                                         23rd & 8th         1             1
## 2150                                         23rd & 8th        -1             1
## 2151                                         23rd & 8th         1             1
## 2152                                         23rd & 8th        -1             1
## 2154                                         23rd & 8th         1             1
## 2155                                         23rd & 8th        -1             1
## 2156                                         23rd & 8th        -1             1
## 2157                                         23rd & 8th         1             1
## 2158                                         23rd & 8th         1             1
## 2159                                         23rd & 8th         1             1
## 2160                                         23rd & 8th        -1             1
## 2161                                         23rd & 8th         1             1
## 2162                                         23rd & 8th         1             1
## 2163                                         23rd & 8th         1             1
## 2164                                         23rd & 8th         1             1
## 2165                                         23rd & 8th         1             1
## 2166                                         23rd & 8th         1             1
## 2168                                         23rd & 8th         1             1
## 2169                                         23rd & 8th         1             1
## 2170                                         23rd & 8th         1             1
## 2171                                         23rd & 8th         1             1
## 2172                                         23rd & 8th        -1             1
## 2173                                         23rd & 8th         1             1
## 2174                                         23rd & 8th         1             1
## 2175                                         23rd & 8th        -1             1
## 2176                                         23rd & 8th         1             1
## 2177                                         23rd & 8th         1             1
## 2178                                         23rd & 8th        -1             1
## 2179                                         23rd & 8th         1             1
## 2180                                         23rd & 8th         1             1
## 2181                                         23rd & 8th         1             1
## 2182                                         23rd & 8th         1             1
## 2183                                         23rd & 8th         1             1
## 2184                                         23rd & 8th         1             1
## 2185                                         23rd & 8th         1             1
## 2186                                         23rd & 8th         1             1
## 2187                                         23rd & 8th         1             1
## 2188                                         23rd & 8th         1             1
## 2189                                         23rd & 8th         1             1
## 2190                                         23rd & 8th        -1             1
## 2191                                         23rd & 8th         1             1
## 2192                                         23rd & 8th         1             1
## 2193                                         23rd & 8th         1             1
## 2194                                         23rd & 8th         1             1
## 2195                                         23rd & 8th         1             1
## 2196                                         23rd & 8th         1             1
## 2198                                        SW 296th St        -1             1
## 2199                                        SW 296th St         1             1
## 2200                                        SW 296th St         1             1
## 2201                                        SW 296th St        -1             1
## 2202                                        SW 296th St        -1             1
## 2204                                        SW 296th St        -1             1
## 2212                                        SW 296th St        -1             1
## 2213                                        SW 296th St         1             1
## 2218                                                 JP        -1            -1
## 2219                      d1+d2 yellow               JP         1            -1
## 2220                                                 JP        -1            -1
## 2221                      d1+d2 yellow               JP        -1            -1
## 2228                                                 JP         1            -1
## 2232                                                 JP         1            -1
## 2233                        d1+d2 blue               JP        -1            -1
## 2234                                                 JP        -1            -1
## 2235                         d1 yellow               JP        -1            -1
## 2237                                                 JP        -1            -1
## 2238                                                 JP        -1            -1
## 2240                         d3 yellow               JP        -1            -1
## 2245                                                 JP        -1            -1
## 2247                                                 JP        -1            -1
## 2251                         d3 yellow               JP        -1            -1
## 2256                           d1 pink               JP        -1            -1
## 2261                                                 JP        -1            -1
## 2262                                                 JP         1            -1
## 2263                         d1 yellow               JP        -1            -1
## 2266                                                 JP        -1            -1
## 2268                                                 JP        -1            -1
## 2270                                                 JP        -1            -1
## 2274                                                 JP         1            -1
## 2282                           d2 pink               JP        -1            -1
## 2285                         d2 yellow               JP        -1            -1
## 2288                                                 JP        -1            -1
## 2291                                          110N Main         1             1
## 2292                                          110N Main         1             1
## 2293                                          110N Main         1             1
## 2294                                          110N Main         1             1
## 2295                                          110N Main         1             1
## 2296                                          110N Main         1             1
## 2297                                          110N Main         1             1
## 2298                                          110N Main         1             1
## 2300                                          110N Main         1             1
## 2302                                          110N Main         1             1
## 2305                                          110N Main         1             1
## 2306                                          110N Main        -1             1
## 2308                                          110N Main         1             1
## 2310                                          110N Main         1             1
## 2312                                          110N Main         1             1
## 2313                                          110N Main         1             1
## 2314                                          110N Main         1             1
## 2315                                          110N Main         1             1
## 2316                                          110N Main         1             1
## 2317                                          110N Main        -1             1
## 2318                                          110N Main         1             1
## 2319                                          110N Main         1             1
## 2320                                          110N Main         1             1
## 2321                       torn thorax        110N Main         1             1
## 2322                                          110N Main         1             1
## 2323                                          110N Main         1             1
## 2324                                          110N Main         1             1
## 2325                                          110N Main         1             1
## 2326                                          110N Main         1             1
## 2327                                          110N Main         1             1
## 2328                                          110N Main         1             1
## 2329                                          110N Main         1             1
## 2330                                          110N Main         1             1
## 2331                                          110N Main         1             1
## 2332                                          110N Main         1             1
## 2333                                          110N Main         1             1
## 2334                                          110N Main         1             1
## 2335                                          110N Main         1             1
## 2337                                          110N Main         1             1
## 2338                                          110N Main         1             1
## 2340                                          110N Main        -1             1
## 2342                       torn thorax        110N Main        -1             1
## 2343                                          110N Main         1             1
## 2344                                          110N Main        -1             1
## 2345                                          110N Main         1             1
## 2346                                          110N Main        -1             1
## 2347                                          110N Main         1             1
## 2348                                          110N Main         1             1
## 2349                                          110N Main         1             1
## 2350                                          110N Main         1             1
## 2351                                          110N Main         1             1
## 2352                                          110N Main         1             1
## 2353                                          110N Main        -1             1
## 2354                                        Charlemagne         1            -1
## 2355                                        Charlemagne        -1            -1
## 2356                                        Charlemagne        -1            -1
## 2357                                        Charlemagne        -1            -1
## 2359                                        Charlemagne         1            -1
## 2361                                        Charlemagne        -1            -1
## 2362                                        Charlemagne         1            -1
## 2363                                        Charlemagne        -1            -1
## 2365                         tips torn      Charlemagne        -1            -1
## 2366                                        Charlemagne        -1            -1
## 2367                                        Charlemagne        -1            -1
## 2368                                        Charlemagne        -1            -1
## 2370 tips torn; marked purple hind leg      Charlemagne        -1            -1
## 2371                                        Charlemagne        -1            -1
## 2372                                        Charlemagne        -1            -1
## 2373                                        Charlemagne        -1            -1
## 2374                         tips torn      Charlemagne        -1            -1
## 2376                                        Charlemagne        -1            -1
## 2379                                        Charlemagne        -1            -1
## 2381                                        Charlemagne         1            -1
## 2383                                        Charlemagne        -1            -1
## 2386                                        Charlemagne         1            -1
## 2387                                        Charlemagne        -1            -1
## 2388                                        Charlemagne        -1            -1
## 2389                                        Charlemagne         1            -1
## 2390                                        Charlemagne         1            -1
## 2391                                        Charlemagne         1            -1
## 2392                                        Charlemagne        -1            -1
## 2394                                        Charlemagne         1            -1
## 2395                                        Charlemagne         1            -1
## 2398                                        Charlemagne         1            -1
## 2399                                        Charlemagne        -1            -1
## 2400                                        Charlemagne         1            -1
## 2401                                        Charlemagne        -1            -1
## 2403                       marked blue      Charlemagne        -1            -1
## 2404                                        Charlemagne        -1            -1
## 2406                                        Charlemagne        -1            -1
## 2408                       marked blue      Charlemagne         1            -1
## 2409                                        Charlemagne        -1            -1
## 2410                       marked blue      Charlemagne        -1            -1
## 2417                                        Charlemagne         1            -1
## 2418                       marked blue      Charlemagne        -1            -1
## 2420                                        Charlemagne         1            -1
## 2421                                        Charlemagne         1            -1
## 2422                    marked blue x2      Charlemagne         1            -1
## 2423                                        Charlemagne         1            -1
## 2425                    marked blue x3      Charlemagne        -1            -1
## 2428                    marked blue x2      Charlemagne        -1            -1
## 2429                                        Charlemagne         1            -1
## 2431                                        Charlemagne        -1            -1
## 2432                                        Charlemagne        -1            -1
## 2434                       marked blue      Charlemagne        -1            -1
## 2436                                        Charlemagne        -1            -1
## 2439                                        Charlemagne        -1            -1
## 2440                                        Charlemagne        -1            -1
## 2441                                        Charlemagne        -1            -1
## 2447                       marked blue      Charlemagne        -1            -1
## 2452                                        Charlemagne        -1            -1
## 2456                 torn tips; marked      Charlemagne         1            -1
## 2457                        torn tips       Charlemagne        -1            -1
## 2459                                        Charlemagne        -1            -1
## 2466                         marked x2      Charlemagne         1            -1
## 2469                            marked      Charlemagne         1            -1
## 2470                            marked      Charlemagne        -1            -1
## 2472                            marked      Charlemagne         1            -1
## 2473                                        Charlemagne        -1            -1
## 2476                                        Charlemagne        -1            -1
## 2477                                        Charlemagne        -1            -1
## 2478                                        Charlemagne         1            -1
## 2479                                        Charlemagne         1            -1
## 2480                                        Charlemagne         1            -1
## 2482                                        Charlemagne        -1            -1
## 2484                                        Charlemagne         1            -1
## 2487                                        Charlemagne        -1            -1
## 2496                                        Charlemagne        -1            -1
## 2497                                        Charlemagne        -1            -1
## 2498                                        Charlemagne         1            -1
## 2499                                        Charlemagne         1            -1
## 2501                                        Charlemagne        -1            -1
## 2502                                        Charlemagne         1            -1
## 2503                                        Charlemagne         1            -1
## 2504                   marked white x2      Charlemagne        -1            -1
## 2505                                        Charlemagne        -1            -1
## 2507                       marked pink      Charlemagne         1            -1
## 2510                                        Charlemagne         1            -1
## 2512                       marked pink      Charlemagne        -1            -1
## 2514                                        Charlemagne         1            -1
## 2518                       marked pink      Charlemagne         1            -1
## 2519                      marked white      Charlemagne         1            -1
## 2521                      marked white      Charlemagne        -1            -1
## 2523                      marked white      Charlemagne        -1            -1
## 2524                                        Charlemagne        -1            -1
## 2525                                        Charlemagne        -1            -1
## 2526                                        Charlemagne         1            -1
## 2527                                        Charlemagne         1            -1
## 2530                                        Charlemagne         1            -1
## 2535                                        Charlemagne         1            -1
## 2537                   marked white d2      Charlemagne         1            -1
## 2541                   marked white d3      Charlemagne        -1            -1
## 2543                                        Charlemagne        -1            -1
## 2544                                        Charlemagne        -1            -1
## 2545                   marked white d2      Charlemagne        -1            -1
## 2546               marked pink d1 + d3      Charlemagne         1            -1
## 2549                                        Charlemagne        -1            -1
## 2554                          white d2      Charlemagne         1            -1
## 2561                                        Charlemagne        -1            -1
## 2566                                        Charlemagne        -1            -1
## 2567                                        Charlemagne         1            -1
## 2568                         marked d3      Charlemagne         1            -1
## 2569                         marked d3      Charlemagne         1            -1
## 2570                         marked d3      Charlemagne        -1            -1
## 2572                    marked d1 + d2      Charlemagne        -1            -1
## 2573                                        Charlemagne         1            -1
## 2574                    marked d2 + d3      Charlemagne         1            -1
## 2575                                        Charlemagne        -1            -1
## 2576                                        Charlemagne         1            -1
## 2577                         marked d1      Charlemagne        -1            -1
## 2578                                        Charlemagne         1            -1
## 2579                    marked d1 + d3      Charlemagne        -1            -1
## 2580                    marked d1 + d3      Charlemagne        -1            -1
## 2581                         marked d3      Charlemagne         1            -1
## 2582                                        Charlemagne        -1            -1
## 2584                                        Charlemagne        -1            -1
## 2585                         marked d3      Charlemagne         1            -1
## 2586                                        Charlemagne        -1            -1
## 2587                                        Charlemagne         1            -1
## 2588                         marked d1      Charlemagne        -1            -1
## 2590                         marked d1      Charlemagne         1            -1
## 2591                                        Charlemagne        -1            -1
## 2592                                        Charlemagne        -1            -1
## 2593                         marked d1      Charlemagne        -1            -1
## 2595                                        Charlemagne        -1            -1
## 2596                                        Charlemagne         1            -1
## 2597          marked turquoise d1 + d3      Charlemagne         1            -1
## 2598               marked turquoise d3      Charlemagne         1            -1
## 2600                                        Charlemagne         1            -1
## 2604                                          Founder's        -1            -1
## 2606                                          Founder's        -1            -1
## 2607                                          Founder's        -1            -1
## 2608                                          Founder's         1            -1
## 2614                                          Founder's        -1            -1
## 2622                                          Founder's        -1            -1
## 2624                                          Founder's        -1            -1
## 2625                                          Founder's        -1            -1
## 2628                                          Founder's        -1            -1
## 2629                                          Founder's         1            -1
## 2634                                          Founder's         1            -1
## 2637                                         23rd & 8th         1             1
## 2638                                         23rd & 8th        -1             1
## 2639                                         23rd & 8th        -1             1
## 2640                                         23rd & 8th         1             1
## 2641                                         23rd & 8th         1             1
## 2645                                         23rd & 8th        -1             1
## 2647                                         23rd & 8th         1             1
## 2651                                         23rd & 8th        -1             1
## 2652                                         23rd & 8th        -1             1
## 2653                                        SW 296th St        -1             1
## 2654                                        SW 296th St         1             1
## 2655                                        SW 296th St        -1             1
## 2656                                        SW 296th St        -1             1
## 2657                                        SW 296th St         1             1
## 2658                                        SW 296th St        -1             1
## 2659                                        SW 296th St         1             1
## 2660                                        SW 296th St        -1             1
## 2661                                        SW 296th St        -1             1
## 2662                                        SW 296th St         1             1
## 2663                                        SW 296th St        -1             1
## 2664                                        SW 296th St         1             1
## 2665                                        SW 296th St         1             1
## 2666                                        SW 296th St         1             1
## 2667                                        SW 296th St         1             1
## 2669                                        SW 296th St        -1             1
## 2670                                        SW 296th St        -1             1
## 2671                                        SW 296th St        -1             1
## 2672                                        SW 296th St        -1             1
## 2673                                        SW 296th St        -1             1
## 2674                                        SW 296th St        -1             1
## 2675                                        SW 296th St        -1             1
## 2676                                        SW 296th St        -1             1
## 2677                                        SW 296th St        -1             1
## 2678                                        SW 296th St        -1             1
## 2679                                        SW 296th St        -1             1
## 2683                                        SW 296th St         1             1
## 2684                                        SW 296th St        -1             1
## 2685                                        SW 296th St        -1             1
## 2686                                        SW 296th St         1             1
## 2687                                        SW 296th St        -1             1
## 2693                                        Charlemagne         1            -1
## 2695                                        Charlemagne        -1            -1
## 2697                                        Charlemagne        -1            -1
## 2698                                        Charlemagne        -1            -1
## 2701                                        Charlemagne         1            -1
## 2704                                          110N Main        -1             1
## 2705                                          110N Main         1             1
## 2706                                          110N Main         1             1
## 2707                                          110N Main        -1             1
## 2709                                          110N Main         1             1
## 2710                                          110N Main         1             1
## 2711                                          110N Main         1             1
## 2712                                          110N Main        -1             1
## 2713                                          110N Main         1             1
## 2716                                          110N Main         1             1
## 2717                                          110N Main         1             1
## 2718                                          110N Main         1             1
## 2719                                          110N Main        -1             1
## 2720                                          110N Main         1             1
## 2721                                          110N Main         1             1
## 2722                                          110N Main        -1             1
## 2723                                          110N Main        -1             1
## 2724                                          110N Main         1             1
## 2725                                          110N Main        -1             1
## 2726                                          110N Main        -1             1
## 2727                                          110N Main         1             1
## 2728                                          110N Main        -1             1
## 2730                                          110N Main         1             1
## 2731                                          110N Main        -1             1
## 2733                                          110N Main        -1             1
## 2734                                          110N Main         1             1
## 2735                                          110N Main         1             1
## 2736                                          110N Main        -1             1
## 2737                                          110N Main        -1             1
## 2738                                          110N Main         1             1
## 2739                                          110N Main         1             1
## 2740                                          110N Main        -1             1
## 2741                                          110N Main        -1             1
## 2742                                          110N Main        -1             1
## 2743                                          110N Main        -1             1
## 2744                                          110N Main        -1             1
## 2745                                          110N Main        -1             1
## 2747                                           Polk Ave         1             1
## 2748                                           Polk Ave         1             1
## 2749                                           Polk Ave         1             1
## 2752                                           Polk Ave        -1             1
## 2754                                           Polk Ave         1             1
## 2756                                           Polk Ave        -1             1
## 2757                                           Polk Ave        -1             1
## 2758                                           Polk Ave         1             1
## 2759                                           Polk Ave        -1             1
## 2760                                           Polk Ave         1             1
## 2761                                           Polk Ave         1             1
## 2763                                           Polk Ave        -1             1
## 2764                                           Polk Ave        -1             1
## 2765                                           Polk Ave         1             1
## 2767                                           Polk Ave        -1             1
## 2768                                           Polk Ave         1             1
## 2769                                           Polk Ave         1             1
## 2772                                        Mount & 8th         1             1
## 2773                                        Mount & 8th         1             1
## 2774                                        Mount & 8th         1             1
## 2777                                        Mount & 8th        -1             1
## 2779                                        Mount & 8th         1             1
## 2780                                        Mount & 8th        -1             1
## 2781                                        Mount & 8th        -1             1
## 2782                                        Mount & 8th         1             1
## 2784                                        Mount & 8th        -1             1
## 2785                                        Mount & 8th        -1             1
## 2786                                        Mount & 8th        -1             1
## 2787                                        Mount & 8th         1             1
## 2788                                        Mount & 8th        -1             1
## 2789                                        Mount & 8th        -1             1
## 2791                                        Mount & 8th         1             1
## 2792                                        Mount & 8th        -1             1
## 2794                                        Mount & 8th         1             1
## 2795                                        Mount & 8th         1             1
## 2797                                        Mount & 8th        -1             1
## 2798                                        Charlemagne         1            -1
## 2799                                        Charlemagne        -1            -1
## 2800                                        Charlemagne         1            -1
## 2801                                        Charlemagne         1            -1
## 2802                                        Charlemagne        -1            -1
## 2806                                        Charlemagne        -1            -1
## 2807                                        Charlemagne        -1            -1
## 2808                                        Charlemagne        -1            -1
## 2810                                        Charlemagne        -1            -1
## 2812                                        Charlemagne        -1            -1
## 2813                                        Charlemagne         1            -1
## 2816                                        Charlemagne        -1            -1
## 2820                                        Charlemagne         1            -1
## 2823                                        Charlemagne         1            -1
## 2826                                        Charlemagne         1            -1
## 2830                                        Charlemagne         1            -1
## 2831                                        Charlemagne         1            -1
## 2833                                        Charlemagne        -1            -1
## 2834                                        Charlemagne         1            -1
## 2835                                        Charlemagne         1            -1
## 2836                                        Charlemagne         1            -1
## 2837                                        Charlemagne         1            -1
## 2839                                        Charlemagne         1            -1
## 2841                                        Charlemagne         1            -1
## 2842                                        Charlemagne         1            -1
## 2844                                        Charlemagne         1            -1
## 2845                                        Charlemagne         1            -1
## 2847                                        Charlemagne        -1            -1
## 2848                                        Charlemagne         1            -1
## 2850                                        Charlemagne        -1            -1
## 2851                                        Charlemagne        -1            -1
## 2853                                        Charlemagne        -1            -1
## 2854                                        Charlemagne         1            -1
## 2855                                        Charlemagne        -1            -1
## 2856                                        Charlemagne         1            -1
## 2859                                        Charlemagne        -1            -1
## 2860                                        Charlemagne         1            -1
## 2862                                        Charlemagne        -1            -1
## 2863                                        Charlemagne        -1            -1
## 2864                                        Charlemagne        -1            -1
## 2868                                        Charlemagne         1            -1
## 2869                                        Charlemagne        -1            -1
## 2871                                        Charlemagne        -1            -1
## 2878                                        Charlemagne         1            -1
## 2884                                          Mohawk St         1            -1
## 2886                                          Mohawk St        -1            -1
## 2887                                          Mohawk St         1            -1
## 2891                                          Mohawk St        -1            -1
## 2892                                          Mohawk St         1            -1
## 2893                                          Mohawk St        -1            -1
## 2895                                          Mohawk St         1            -1
## 2896                                          Mohawk St        -1            -1
## 2897                                         23rd & 8th        -1             1
## 2899                                         23rd & 8th        -1             1
## 2900                                         23rd & 8th        -1             1
## 2901                                         23rd & 8th        -1             1
## 2904                                         23rd & 8th        -1             1
## 2905                                         23rd & 8th        -1             1
## 2906                                         23rd & 8th        -1             1
## 2907                                         23rd & 8th         1             1
## 2908                                         23rd & 8th        -1             1
## 2911                                         23rd & 8th        -1             1
## 2912                                         23rd & 8th        -1             1
## 2914                                         23rd & 8th         1             1
## 2917                                         23rd & 8th        -1             1
## 2919                                         23rd & 8th        -1             1
## 2921                                         23rd & 8th        -1             1
## 2923                                         23rd & 8th        -1             1
## 2929                                         23rd & 8th        -1             1
## 2930                                         23rd & 8th         1             1
## 2931                                         23rd & 8th        -1             1
## 2932                                         23rd & 8th        -1             1
## 2933                                        SW 296th St        -1             1
## 2934                                        SW 296th St         1             1
## 2935                                        SW 296th St         1             1
## 2936                                        SW 296th St         1             1
## 2937                                        SW 296th St         1             1
## 2939                                        SW 296th St        -1             1
## 2940                                        SW 296th St         1             1
## 2944                                        SW 296th St        -1             1
## 2945                                        SW 296th St        -1             1
## 2947                                        SW 296th St         1             1
## 2948                                        SW 296th St         1             1
## 2949                                        SW 296th St         1             1
## 2950                                        SW 296th St        -1             1
## 2951                                        SW 296th St        -1             1
## 2952                                        SW 296th St         1             1
## 2953                                        SW 296th St        -1             1
## 2954                                        SW 296th St         1             1
## 2955                                        SW 296th St         1             1
## 2956                                        SW 296th St        -1             1
## 2957                                        SW 296th St        -1             1
## 2958                                        SW 296th St        -1             1
## 2959                                        SW 296th St        -1             1
## 2960                                        SW 296th St        -1             1
## 2964                                        SW 296th St        -1             1
## 2965                                        SW 296th St        -1             1
## 2970                                        SW 296th St         1             1
## 2971                                        SW 296th St        -1             1
## 2972                                        SW 296th St        -1             1
## 2973                                        SW 296th St        -1             1
## 2974                                        SW 296th St        -1             1
## 2975                                              KLMRL        -1            -1
## 2976                                              KLMRL         1            -1
## 2978                                              KLMRL        -1            -1
## 2979                                                 JP        -1            -1
## 2980                                                 JP         1            -1
## 2981                                                 JP        -1            -1
## 2982                                                 JP        -1            -1
## 2983                                                 JP         1            -1
## 2984                                                 JP        -1            -1
## 2985                                              KLMRL         1            -1
## 2986                                              KLMRL         1            -1
## 2987                                              KLMRL        -1            -1
## 2988                                              KLMRL        -1            -1
## 2990                                                 JP         1            -1
## 2991                                                 JP        -1            -1
## 2992                                                 JP         1            -1
## 2994                                              KLMRL         1            -1
## 2995                                              KLMRL        -1            -1
## 2997                                              KLMRL         1            -1
## 2998                                              KLMRL        -1            -1
## 2999                                                 JP        -1            -1
## 3000                                                 JP         1            -1
## 3001                                                 JP        -1            -1
## 3002                                                 JP         1            -1
## 3004                                              KLMRL        -1            -1
## 3005                                              KLMRL        -1            -1
## 3006           thorax torn on one side            KLMRL         1            -1
## 3007                                              KLMRL        -1            -1
## 3009                                                 JP         1            -1
## 3010                                                 JP         1            -1
## 3011                                                 JP        -1            -1
## 3013                                              KLMRL        -1            -1
## 3014                                              KLMRL        -1            -1
## 3015                                              KLMRL        -1            -1
## 3016                                              KLMRL        -1            -1
## 3019                                                 JP        -1            -1
## 3020                                                 JP        -1            -1
## 3045                                                 JP         1            -1
## 3050                                                 JP         1            -1
## 3052                                                 JP        -1            -1
## 3053                                                 JP        -1            -1
## 3054                                          110N Main        -1             1
## 3055                                          110N Main         1             1
## 3056                                          110N Main         1             1
## 3057                                          110N Main        -1             1
## 3058                                          110N Main        -1             1
## 3059                                          110N Main         1             1
## 3060                                          110N Main         1             1
## 3061                                          110N Main         1             1
## 3062                                          110N Main        -1             1
## 3063                                          110N Main         1             1
## 3064                                          110N Main        -1             1
## 3066                                          110N Main        -1             1
## 3067                                          110N Main        -1             1
## 3068                                          110N Main         1             1
## 3069                                          110N Main        -1             1
## 3070                                          110N Main         1             1
## 3071                                          110N Main        -1             1
## 3072                                          110N Main        -1             1
## 3073                                          110N Main        -1             1
## 3074                                          110N Main         1             1
## 3075                                          110N Main        -1             1
## 3076                                          110N Main        -1             1
## 3077                                          110N Main         1             1
## 3078                                          110N Main         1             1
## 3079                                          110N Main        -1             1
## 3080                                          110N Main         1             1
## 3081                                          110N Main         1             1
## 3082                                          110N Main        -1             1
## 3083                                          110N Main        -1             1
## 3084                                          110N Main        -1             1
## 3085                                          110N Main        -1             1
## 3086                                          110N Main        -1             1
## 3087                                          110N Main        -1             1
## 3088                                          110N Main         1             1
## 3089                                          110N Main        -1             1
## 3090                                          110N Main         1             1
## 3091                                          110N Main        -1             1
## 3092                                          110N Main        -1             1
## 3093                                          110N Main        -1             1
## 3094                                          110N Main         1             1
## 3095                                          110N Main        -1             1
## 3096                                          110N Main        -1             1
## 3097                                           Polk Ave        -1             1
## 3098                                           Polk Ave         1             1
## 3099                                           Polk Ave        -1             1
## 3100                                           Polk Ave         1             1
## 3101                                           Polk Ave         1             1
## 3102                                           Polk Ave         1             1
## 3103                                           Polk Ave         1             1
## 3105                                           Polk Ave        -1             1
## 3107                                           Polk Ave        -1             1
## 3108                                           Polk Ave        -1             1
## 3109                                           Polk Ave        -1             1
## 3110                                           Polk Ave         1             1
## 3111                                           Polk Ave         1             1
## 3112                                           Polk Ave        -1             1
## 3113                                           Polk Ave        -1             1
## 3115                                           Polk Ave         1             1
## 3116                                           Polk Ave        -1             1
## 3117                                           Polk Ave        -1             1
## 3118                                           Polk Ave         1             1
## 3119                                           Polk Ave        -1             1
## 3120                                           Polk Ave         1             1
## 3121                                           Polk Ave        -1             1
## 3122                                           Polk Ave         1             1
## 3123                                           Polk Ave         1             1
## 3124                                           Polk Ave        -1             1
## 3125                                           Polk Ave        -1             1
## 3126                                           Polk Ave         1             1
## 3127                                           Polk Ave         1             1
## 3128                                           Polk Ave         1             1
## 3129                                           Polk Ave        -1             1
## 3131                                           Polk Ave         1             1
## 3132                                           Polk Ave        -1             1
## 3133                                           Polk Ave        -1             1
## 3134                                           Polk Ave        -1             1
## 3135                                           Polk Ave        -1             1
## 3136                                           Polk Ave        -1             1
## 3137                                           Polk Ave         1             1
## 3138                                           Polk Ave        -1             1
## 3139                                           Polk Ave        -1             1
## 3140                                           Polk Ave        -1             1
## 3141                                           Polk Ave         1             1
## 3142                                           Polk Ave        -1             1
## 3143                                           Polk Ave         1             1
## 3144                                           Polk Ave         1             1
## 3145                                           Polk Ave        -1             1
## 3146                                           Polk Ave        -1             1
## 3147                                        Mount & 8th        -1             1
## 3148                                        Mount & 8th        -1             1
## 3149                                        Mount & 8th        -1             1
## 3150                                        Mount & 8th        -1             1
## 3151                                        Mount & 8th        -1             1
## 3152                                        Mount & 8th        -1             1
## 3153                                        Mount & 8th         1             1
## 3154                                        Mount & 8th         1             1
## 3155                                        Mount & 8th         1             1
## 3157                                        Mount & 8th        -1             1
## 3158                                        Mount & 8th        -1             1
## 3159                                        Mount & 8th         1             1
## 3160                                        Mount & 8th        -1             1
## 3162                                        Mount & 8th         1             1
## 3164                                        Mount & 8th        -1             1
## 3165                                        Mount & 8th        -1             1
## 3167                                        Mount & 8th        -1             1
## 3168                                        Mount & 8th        -1             1
## 3169                                        Mount & 8th        -1             1
## 3170                                        Mount & 8th         1             1
## 3171                                        Mount & 8th         1             1
## 3172                                        Mount & 8th        -1             1
## 3175                                        Mount & 8th        -1             1
## 3176                                        Mount & 8th        -1             1
## 3177                                        Charlemagne        -1            -1
## 3178                                        Charlemagne        -1            -1
## 3180                                        Charlemagne        -1            -1
## 3181                                        Charlemagne         1            -1
## 3182                                        Charlemagne         1            -1
## 3183                                        Charlemagne         1            -1
## 3185                                        Charlemagne         1            -1
## 3186                                        Charlemagne         1            -1
## 3187                                        Charlemagne         1            -1
## 3189                                        Charlemagne        -1            -1
## 3190                                        Charlemagne        -1            -1
## 3191                                        Charlemagne        -1            -1
## 3192                                        Charlemagne        -1            -1
## 3193                                        Charlemagne         1            -1
## 3194                                        Charlemagne        -1            -1
## 3196                                        Charlemagne         1            -1
## 3197                                        Charlemagne         1            -1
## 3198                                        Charlemagne        -1            -1
## 3199                                        Charlemagne         1            -1
## 3200                                        Charlemagne         1            -1
## 3201                                        Charlemagne        -1            -1
## 3202                                        Charlemagne        -1            -1
## 3203                                        Charlemagne        -1            -1
## 3205                                        Charlemagne        -1            -1
## 3206                                        Charlemagne        -1            -1
## 3207                                        Charlemagne        -1            -1
## 3209                                        Charlemagne        -1            -1
## 3210                                        Charlemagne         1            -1
## 3211                                        Charlemagne        -1            -1
## 3212                                        Charlemagne         1            -1
## 3213                                        Charlemagne         1            -1
## 3214                                        Charlemagne         1            -1
## 3215                                        Charlemagne         1            -1
## 3216                                        Charlemagne        -1            -1
## 3218                                        Charlemagne        -1            -1
## 3219                                        Charlemagne         1            -1
## 3220                                        Charlemagne         1            -1
## 3221                                        Charlemagne         1            -1
## 3222                                        Charlemagne        -1            -1
## 3223                                        Charlemagne        -1            -1
## 3224                                        Charlemagne        -1            -1
## 3226                                        Charlemagne         1            -1
## 3227                                        Charlemagne         1            -1
## 3229                                        Charlemagne         1            -1
## 3230                                        Charlemagne        -1            -1
## 3231                                        Charlemagne        -1            -1
## 3232                                        Charlemagne        -1            -1
## 3234                                        Charlemagne         1            -1
## 3235                                        Charlemagne        -1            -1
## 3236                                        Charlemagne         1            -1
## 3237                                        Charlemagne        -1            -1
## 3238                                        Charlemagne        -1            -1
## 3239                                        Charlemagne        -1            -1
## 3240                                        Charlemagne         1            -1
## 3241                                        Charlemagne         1            -1
## 3242                                        Charlemagne        -1            -1
## 3243           thorax torn on one side      Charlemagne        -1            -1
## 3244                                        Charlemagne         1            -1
## 3246                                        Charlemagne        -1            -1
## 3247                                        Charlemagne        -1            -1
## 3248                                        Charlemagne        -1            -1
## 3249                                        Charlemagne         1            -1
## 3250                                        Charlemagne        -1            -1
## 3251                                        Charlemagne        -1            -1
## 3252                                        Charlemagne        -1            -1
## 3253                                        Charlemagne        -1            -1
## 3254                                        Charlemagne        -1            -1
## 3255                                        Charlemagne         1            -1
## 3256                                        Charlemagne         1            -1
## 3257                                        Charlemagne         1            -1
## 3258                                        Charlemagne        -1            -1
## 3259                                        Charlemagne        -1            -1
## 3260                                        Charlemagne        -1            -1
## 3261                                        Charlemagne         1            -1
## 3262                                        Charlemagne         1            -1
## 3263                                        Charlemagne         1            -1
## 3264                                        Charlemagne         1            -1
## 3265                                        Charlemagne         1            -1
## 3266                                        Charlemagne        -1            -1
## 3267                                        Charlemagne        -1            -1
## 3268                                        Charlemagne        -1            -1
## 3269                                        Charlemagne         1            -1
## 3270                                        Charlemagne        -1            -1
## 3271                                        Charlemagne         1            -1
## 3273                                        Charlemagne         1            -1
## 3274                                        Charlemagne        -1            -1
## 3279                                        Charlemagne        -1            -1
## 3280                                        Charlemagne        -1            -1
## 3281                                        Charlemagne        -1            -1
## 3282                                        Charlemagne        -1            -1
## 3283                                        Charlemagne        -1            -1
## 3285                                        Charlemagne        -1            -1
## 3287                                        Charlemagne        -1            -1
## 3288                                        Charlemagne        -1            -1
## 3289                                        Charlemagne        -1            -1
## 3290                                        Charlemagne         1            -1
## 3291                                        Charlemagne        -1            -1
## 3292                                        Charlemagne        -1            -1
## 3293                                        Charlemagne        -1            -1
## 3294                                        Charlemagne        -1            -1
## 3295                                        Charlemagne        -1            -1
## 3296                                        Charlemagne        -1            -1
## 3297                                        Charlemagne        -1            -1
## 3300                                        Charlemagne        -1            -1
## 3301                                        Charlemagne        -1            -1
## 3302                                        Charlemagne         1            -1
## 3303                                        Charlemagne        -1            -1
## 3304                                        Charlemagne        -1            -1
## 3305                                        Charlemagne        -1            -1
## 3306                                        Charlemagne         1            -1
## 3307                                        Charlemagne         1            -1
## 3308                                        Charlemagne        -1            -1
## 3309                                        Charlemagne        -1            -1
## 3311                                        Charlemagne        -1            -1
## 3312                                        Charlemagne        -1            -1
## 3313                                        Charlemagne        -1            -1
## 3314                                        Charlemagne         1            -1
## 3315                                        Charlemagne        -1            -1
## 3316                                        Charlemagne        -1            -1
## 3317                                        Charlemagne        -1            -1
## 3318                                        Charlemagne        -1            -1
## 3319                                        Charlemagne        -1            -1
## 3320                                        Charlemagne        -1            -1
## 3321                                        Charlemagne        -1            -1
## 3322                                        Charlemagne         1            -1
## 3323                                        Charlemagne         1            -1
## 3325                                        Charlemagne         1            -1
## 3327                                        Charlemagne        -1            -1
## 3332                                        Charlemagne         1            -1
## 3339                                        Charlemagne        -1            -1
## 3340                                        Charlemagne         1            -1
## 3341                                        Charlemagne         1            -1
## 3342                                        Charlemagne        -1            -1
## 3343                                        Charlemagne        -1            -1
## 3348                                        Charlemagne         1            -1
## 3350                                        Charlemagne        -1            -1
## 3351                                        Charlemagne         1            -1
## 3379                                        Charlemagne         1            -1
## 3391                                        Charlemagne         1            -1
## 3394                                        Charlemagne         1            -1
## 3396                                        Charlemagne        -1            -1
## 3398                                        Charlemagne         1            -1
## 3399                                        Charlemagne         1            -1
## 3400                                        Charlemagne        -1            -1
## 3401                                        Charlemagne         1            -1
## 3402                                        Charlemagne        -1            -1
## 3404                                         Aregood Ln        -1            -1
## 3405                                         Aregood Ln        -1            -1
## 3406                                         Aregood Ln        -1            -1
## 3407                                         Aregood Ln         1            -1
## 3408                                          Founder's        -1            -1
## 3409                                          Founder's         1            -1
## 3410                                          Founder's         1            -1
## 3411                                          Founder's        -1            -1
## 3412                                          Founder's        -1            -1
## 3414                                         Aregood Ln        -1            -1
## 3415                                         Aregood Ln         1            -1
## 3418                                          Founder's         1            -1
## 3419                                          Founder's        -1            -1
## 3420                                          Founder's        -1            -1
## 3421                                          Founder's         1            -1
## 3422                                          Founder's        -1            -1
## 3423                                         Aregood Ln        -1            -1
## 3424                                         Aregood Ln        -1            -1
## 3425                                         Aregood Ln        -1            -1
## 3426           thorax torn on one side       Aregood Ln        -1            -1
## 3428                                          Founder's        -1            -1
## 3429                                          Founder's        -1            -1
## 3430                                          Founder's        -1            -1
## 3431                                          Founder's         1            -1
## 3432                                         Aregood Ln        -1            -1
## 3433                                         Aregood Ln        -1            -1
## 3434                                         Aregood Ln        -1            -1
## 3435                                          Founder's        -1            -1
## 3436                                          Founder's        -1            -1
## 3437                                          Founder's         1            -1
## 3438                                          Founder's        -1            -1
## 3439                                          Founder's        -1            -1
## 3440                                          Founder's        -1            -1
## 3441                                          Founder's        -1            -1
## 3442                                          Founder's        -1            -1
## 3443                                          Founder's         1            -1
## 3444                                          Founder's         1            -1
## 3445                                          Founder's        -1            -1
## 3448                                          Founder's         1            -1
## 3451                                          Founder's        -1            -1
## 3452                                          Founder's         1            -1
## 3453                                          Founder's        -1            -1
## 3454                                          Founder's        -1            -1
## 3461                                          Founder's         1            -1
## 3462                                          Founder's        -1            -1
## 3466                                          Founder's        -1            -1
## 3473                                          Founder's         1            -1
## 3476                                          Founder's        -1            -1
## 3477                                          Founder's         1            -1
## 3478                                          Founder's         1            -1
## 3479                                          Founder's        -1            -1
## 3480                                          Founder's        -1            -1
## 3481                                          Founder's         1            -1
## 3482                                          Founder's         1            -1
## 3483                                          Founder's        -1            -1
## 3485                                          Founder's         1            -1
## 3486                                          Founder's        -1            -1
## 3487                                          Founder's        -1            -1
## 3488                                          Founder's        -1            -1
## 3489                                          Founder's        -1            -1
## 3492                                          Founder's        -1            -1
## 3493                                          Founder's         1            -1
## 3496                                          Founder's         1            -1
## 3498                                          Founder's        -1            -1
## 3499                                          Founder's        -1            -1
## 3500                                          Founder's        -1            -1
## 3501                                          Founder's         1            -1
## 3502                                          Founder's         1            -1
## 3503                                        SW 296th St        -1             1
## 3504                                        SW 296th St        -1             1
## 3505                                        SW 296th St         1             1
## 3506                                        SW 296th St        -1             1
## 3507                                        SW 296th St         1             1
## 3508                                        SW 296th St         1             1
## 3509                                        SW 296th St        -1             1
## 3510                                        SW 296th St         1             1
## 3511                                        SW 296th St         1             1
## 3513                                        SW 296th St        -1             1
## 3514                                        SW 296th St         1             1
## 3515                                        Charlemagne         1            -1
## 3516                                        Charlemagne         1            -1
## 3517                                        Charlemagne         1            -1
## 3518                                        Charlemagne         1            -1
## 3519                                        Charlemagne        -1            -1
## 3520                                        Charlemagne         1            -1
## 3521                                        Charlemagne        -1            -1
## 3522                                        Charlemagne         1            -1
## 3523                                        Charlemagne         1            -1
## 3524                                        Charlemagne         1            -1
## 3525                                        Charlemagne        -1            -1
## 3526                                        Charlemagne         1            -1
## 3528                                        Charlemagne        -1            -1
## 3529                                        Charlemagne         1            -1
## 3530                                        Charlemagne        -1            -1
## 3531                                        Charlemagne         1            -1
## 3532                                        Charlemagne        -1            -1
## 3533                                        Charlemagne         1            -1
## 3534                                        Charlemagne        -1            -1
## 3535                                        Charlemagne         1            -1
## 3536                                        Charlemagne        -1            -1
## 3537                                        Charlemagne         1            -1
## 3538                                        Charlemagne        -1            -1
## 3539                                        Charlemagne        -1            -1
## 3540                                        Charlemagne        -1            -1
## 3541                                          110N Main        -1             1
## 3542                                          110N Main         1             1
## 3543                                          110N Main        -1             1
## 3544                                          110N Main        -1             1
## 3545                                          110N Main         1             1
## 3546                                          110N Main         1             1
## 3547                                          110N Main         1             1
## 3549                                          110N Main        -1             1
## 3550                                          110N Main         1             1
## 3551                                          110N Main        -1             1
## 3552                                          110N Main         1             1
## 3553                                          110N Main        -1             1
## 3554                                          110N Main         1             1
## 3555                                          110N Main        -1             1
## 3556                                          110N Main         1             1
## 3557                                          110N Main         1             1
## 3558                                          110N Main        -1             1
## 3559                                          110N Main         1             1
## 3560                                          110N Main        -1             1
## 3561                                          110N Main        -1             1
## 3562                                        Charlemagne        -1            -1
## 3563                                        Charlemagne         1            -1
## 3564                                        Charlemagne        -1            -1
## 3565                                        Charlemagne        -1            -1
## 3566                                        SW 142nd St         1             1
## 3570                                                 JP        -1            -1
## 3571                                                 JP        -1            -1
## 3572                                                 JP         1            -1
## 3573                                                 JP        -1            -1
## 3574                                                 JP         1            -1
## 3575                                                 JP         1            -1
## 3576                                                 JP         1            -1
## 3577                                        Charlemagne        -1            -1
## 3578                                        Charlemagne         1            -1
## 3579                                        Charlemagne         1            -1
## 3581                                        Charlemagne        -1            -1
## 3583                                                 JP        -1            -1
## 3584                                                 JP         1            -1
## 3585                                                 JP        -1            -1
## 3586                                        Charlemagne         1            -1
## 3587                                        Charlemagne         1            -1
## 3588                                        Charlemagne        -1            -1
## 3589                                        Charlemagne         1            -1
## 3590                                        Charlemagne        -1            -1
## 3591                                        Charlemagne         1            -1
## 3592                                           Polk Ave         1             1
## 3594                                           Polk Ave         1             1
## 3595                                           Polk Ave         1             1
## 3596                       torn thorax         Polk Ave         1             1
## 3597                                           Polk Ave         1             1
## 3598                                           Polk Ave         1             1
## 3599                                           Polk Ave         1             1
## 3600                                           Polk Ave         1             1
## 3601                                           Polk Ave        -1             1
## 3602                                           Polk Ave         1             1
## 3603                                           Polk Ave        -1             1
## 3604                                           Polk Ave         1             1
## 3605                                           Polk Ave         1             1
## 3606                                           Polk Ave         1             1
## 3607                                           Polk Ave         1             1
## 3608                                           Polk Ave         1             1
## 3609                                           Polk Ave         1             1
## 3610                                           Polk Ave         1             1
## 3611                                           Polk Ave         1             1
## 3612                                           Polk Ave         1             1
## 3613                                           Polk Ave         1             1
## 3614                                           Polk Ave        -1             1
## 3615                                           Polk Ave        -1             1
## 3616                                           Polk Ave         1             1
## 3617                                           Polk Ave         1             1
## 3618                                           Polk Ave         1             1
## 3619                                           Polk Ave         1             1
## 3620                                           Polk Ave        -1             1
## 3621                                           Polk Ave        -1             1
## 3622                                           Polk Ave         1             1
## 3623                                           Polk Ave         1             1
## 3624                                           Polk Ave         1             1
## 3625                                           Polk Ave        -1             1
## 3626                                           Polk Ave         1             1
## 3627                                           Polk Ave        -1             1
## 3628                                           Polk Ave         1             1
## 3629                                           Polk Ave         1             1
## 3630                                           Polk Ave         1             1
## 3631                                           Polk Ave        -1             1
## 3632                                           Polk Ave        -1             1
## 3633                                           Polk Ave         1             1
## 3634                                           Polk Ave        -1             1
## 3635                                           Polk Ave         1             1
## 3636                                           Polk Ave         1             1
## 3637                                           Polk Ave         1             1
## 3638                                           Polk Ave        -1             1
## 3639                                           Polk Ave         1             1
## 3640                                           Polk Ave        -1             1
## 3641                                           Polk Ave         1             1
## 3642                                           Polk Ave         1             1
## 3643                                           Polk Ave         1             1
## 3644                                           Polk Ave         1             1
## 3645                                           Polk Ave        -1             1
## 3646                     (8th x Mound)      Mount & 8th        -1             1
## 3647                                        Mount & 8th         1             1
## 3648                                        Mount & 8th         1             1
## 3649                                        Mount & 8th         1             1
## 3650                                        Mount & 8th         1             1
## 3651                                        Mount & 8th        -1             1
## 3652                                        Mount & 8th         1             1
## 3653                                        Mount & 8th         1             1
## 3655                                        Mount & 8th         1             1
## 3656                                        Mount & 8th        -1             1
## 3658                                        Mount & 8th        -1             1
## 3659                                        Mount & 8th         1             1
## 3660                                        Mount & 8th         1             1
## 3661                                        Mount & 8th         1             1
## 3662                                        Mount & 8th         1             1
## 3663                                        Mount & 8th        -1             1
## 3664                                        Mount & 8th         1             1
## 3665                                        Mount & 8th         1             1
## 3666                                        Mount & 8th        -1             1
## 3667                                        Mount & 8th        -1             1
## 3668                                        Mount & 8th         1             1
## 3669                                        Mount & 8th         1             1
## 3670                                        Mount & 8th         1             1
## 3671                                        Mount & 8th         1             1
## 3672                                        Mount & 8th         1             1
## 3673                                        Mount & 8th         1             1
## 3674                                        Mount & 8th         1             1
## 3675                                        Mount & 8th         1             1
## 3676                                        Mount & 8th         1             1
## 3677                                        Mount & 8th         1             1
## 3678                                        Mount & 8th         1             1
## 3680                                        Mount & 8th         1             1
## 3681                                        Mount & 8th         1             1
## 3682                                        Mount & 8th        -1             1
## 3683                                        Mount & 8th         1             1
## 3684                                        Mount & 8th         1             1
## 3685                                        Mount & 8th        -1             1
## 3686                                        Mount & 8th         1             1
## 3687                                        Mount & 8th         1             1
## 3688                                        Mount & 8th         1             1
## 3689                                        Mount & 8th         1             1
## 3690                                        Mount & 8th         1             1
## 3691                                        Mount & 8th        -1             1
## 3692                                        Mount & 8th         1             1
## 3693                                        Mount & 8th         1             1
## 3694                                        Mount & 8th        -1             1
## 3695                                        Mount & 8th         1             1
## 3696                                        Mount & 8th         1             1
## 3698                                        Mount & 8th        -1             1
## 3700                                        SW 296th St         1             1
## 3701                                        SW 296th St         1             1
## 3703                                        SW 296th St        -1             1
## 3704                                        SW 296th St         1             1
## 3705                                        SW 296th St         1             1
## 3706                                        SW 296th St        -1             1
## 3707                                        SW 296th St         1             1
## 3708                                        SW 296th St        -1             1
## 3709                                        SW 296th St         1             1
## 3711                                        SW 296th St         1             1
## 3712                                        SW 296th St        -1             1
## 3713                                        SW 296th St         1             1
## 3714                                        SW 296th St         1             1
## 3715                                        SW 296th St         1             1
## 3716                                        SW 296th St        -1             1
## 3717                                        SW 296th St        -1             1
## 3718                                        SW 296th St         1             1
## 3719                                        SW 296th St        -1             1
## 3720                                        SW 296th St         1             1
## 3721                                        SW 296th St         1             1
## 3722                                        SW 296th St         1             1
## 3723                                        SW 296th St         1             1
## 3724                         torn tips      SW 296th St         1             1
## 3725                                        SW 296th St         1             1
## 3726                                        SW 296th St         1             1
## 3727                                        SW 296th St         1             1
## 3728                                        SW 296th St        -1             1
## 3729                                        SW 296th St         1             1
## 3731                                        SW 296th St         1             1
## 3734                                        SW 296th St        -1             1
## 3735                                        SW 296th St         1             1
## 3736                                        SW 296th St         1             1
##                date datetime      dates month_of_year wing2thorax
## 1        April/2013 Apr 2013 2013-04-01             4    2.790210
## 2        April/2013 Apr 2013 2013-04-01             4    2.676375
## 3        April/2013 Apr 2013 2013-04-01             4    2.812903
## 4        April/2013 Apr 2013 2013-04-01             4    2.617530
## 5        April/2013 Apr 2013 2013-04-01             4    2.821549
## 6        April/2013 Apr 2013 2013-04-01             4    2.652027
## 7        April/2013 Apr 2013 2013-04-01             4    2.794425
## 8        April/2013 Apr 2013 2013-04-01             4    2.830769
## 9        April/2013 Apr 2013 2013-04-01             4    2.721254
## 10       April/2013 Apr 2013 2013-04-01             4    2.626984
## 11       April/2013 Apr 2013 2013-04-01             4    2.707463
## 12       April/2013 Apr 2013 2013-04-01             4    2.765125
## 13       April/2013 Apr 2013 2013-04-01             4    2.686520
## 14       April/2013 Apr 2013 2013-04-01             4    2.555556
## 16       April/2013 Apr 2013 2013-04-01             4    2.652459
## 17       April/2013 Apr 2013 2013-04-01             4    2.652459
## 18       April/2013 Apr 2013 2013-04-01             4    2.743316
## 19       April/2013 Apr 2013 2013-04-01             4    2.770492
## 20       April/2013 Apr 2013 2013-04-01             4    2.762658
## 21       April/2013 Apr 2013 2013-04-01             4    2.887608
## 22       April/2013 Apr 2013 2013-04-01             4    2.485246
## 23       April/2013 Apr 2013 2013-04-01             4    2.848138
## 24       April/2013 Apr 2013 2013-04-01             4    2.710247
## 25       April/2013 Apr 2013 2013-04-01             4    2.781250
## 26       April/2013 Apr 2013 2013-04-01             4    2.817857
## 104      April/2013 Apr 2013 2013-04-01             4    2.120301
## 105      April/2013 Apr 2013 2013-04-01             4    2.693548
## 106      April/2013 Apr 2013 2013-04-01             4    2.727829
## 107      April/2013 Apr 2013 2013-04-01             4    2.713396
## 109      April/2013 Apr 2013 2013-04-01             4    2.851266
## 110      April/2013 Apr 2013 2013-04-01             4    2.667702
## 111      April/2013 Apr 2013 2013-04-01             4    2.803448
## 112      April/2013 Apr 2013 2013-04-01             4    2.746082
## 114      April/2013 Apr 2013 2013-04-01             4    2.449275
## 141      April/2013 Apr 2013 2013-04-01             4    2.813380
## 142      April/2013 Apr 2013 2013-04-01             4    2.678344
## 143      April/2013 Apr 2013 2013-04-01             4    2.529114
## 144      April/2013 Apr 2013 2013-04-01             4    2.707547
## 146      April/2013 Apr 2013 2013-04-01             4    2.551320
## 147      April/2013 Apr 2013 2013-04-01             4    2.657609
## 148      April/2013 Apr 2013 2013-04-01             4    2.974684
## 149      April/2013 Apr 2013 2013-04-01             4    2.773649
## 150      April/2013 Apr 2013 2013-04-01             4    2.689231
## 152      April/2013 Apr 2013 2013-04-01             4    2.799228
## 153      April/2013 Apr 2013 2013-04-01             4    2.698413
## 202      April/2013 Apr 2013 2013-04-01             4    2.559486
## 203      April/2013 Apr 2013 2013-04-01             4    2.422481
## 204      April/2013 Apr 2013 2013-04-01             4    2.635783
## 205      April/2013 Apr 2013 2013-04-01             4    2.964744
## 206      April/2013 Apr 2013 2013-04-01             4    2.826568
## 207      April/2013 Apr 2013 2013-04-01             4    2.827309
## 208      April/2013 Apr 2013 2013-04-01             4    2.722388
## 209      April/2013 Apr 2013 2013-04-01             4    2.989130
## 210      April/2013 Apr 2013 2013-04-01             4    2.482072
## 211      April/2013 Apr 2013 2013-04-01             4    2.532680
## 213      April/2013 Apr 2013 2013-04-01             4    2.796562
## 214      April/2013 Apr 2013 2013-04-01             4    2.596429
## 215      April/2013 Apr 2013 2013-04-01             4    2.521875
## 217      April/2013 Apr 2013 2013-04-01             4    2.396104
## 219      April/2013 Apr 2013 2013-04-01             4    2.670103
## 221      April/2013 Apr 2013 2013-04-01             4    2.744275
## 222      April/2013 Apr 2013 2013-04-01             4    2.655914
## 223      April/2013 Apr 2013 2013-04-01             4    2.602410
## 224      April/2013 Apr 2013 2013-04-01             4    2.738255
## 225      April/2013 Apr 2013 2013-04-01             4    2.858657
## 226      April/2013 Apr 2013 2013-04-01             4    2.649007
## 228      April/2013 Apr 2013 2013-04-01             4    2.738170
## 229      April/2013 Apr 2013 2013-04-01             4    2.608280
## 230      April/2013 Apr 2013 2013-04-01             4    2.647651
## 837      April/2014 Apr 2014 2014-04-01             4    2.667722
## 839      April/2014 Apr 2014 2014-04-01             4    2.680272
## 840      April/2014 Apr 2014 2014-04-01             4    2.629820
## 841      April/2014 Apr 2014 2014-04-01             4    2.749319
## 844      April/2014 Apr 2014 2014-04-01             4    2.785965
## 845      April/2014 Apr 2014 2014-04-01             4    2.619565
## 847      April/2014 Apr 2014 2014-04-01             4    2.782090
## 848      April/2014 Apr 2014 2014-04-01             4    2.674740
## 849      April/2014 Apr 2014 2014-04-01             4    2.824138
## 850      April/2014 Apr 2014 2014-04-01             4    2.693498
## 851      April/2014 Apr 2014 2014-04-01             4    2.726727
## 852      April/2014 Apr 2014 2014-04-01             4    2.648387
## 853      April/2014 Apr 2014 2014-04-01             4    2.686649
## 854      April/2014 Apr 2014 2014-04-01             4    2.555215
## 856      April/2014 Apr 2014 2014-04-01             4    2.706667
## 857      April/2014 Apr 2014 2014-04-01             4    2.840391
## 858      April/2014 Apr 2014 2014-04-01             4    2.637771
## 859      April/2014 Apr 2014 2014-04-01             4    2.525641
## 860      April/2014 Apr 2014 2014-04-01             4    2.730887
## 861      April/2014 Apr 2014 2014-04-01             4    2.863481
## 862      April/2014 Apr 2014 2014-04-01             4    2.827839
## 863      April/2014 Apr 2014 2014-04-01             4    2.711246
## 865      April/2014 Apr 2014 2014-04-01             4    2.621993
## 866      April/2014 Apr 2014 2014-04-01             4    2.598160
## 867      April/2014 Apr 2014 2014-04-01             4    2.752475
## 868      April/2014 Apr 2014 2014-04-01             4    2.630682
## 870      April/2014 Apr 2014 2014-04-01             4    2.665653
## 871      April/2014 Apr 2014 2014-04-01             4    2.934211
## 872      April/2014 Apr 2014 2014-04-01             4    2.456338
## 873      April/2014 Apr 2014 2014-04-01             4    2.722071
## 874      April/2014 Apr 2014 2014-04-01             4    2.523810
## 875      April/2014 Apr 2014 2014-04-01             4    2.747720
## 877      April/2014 Apr 2014 2014-04-01             4    2.727586
## 878      April/2014 Apr 2014 2014-04-01             4    2.772109
## 879      April/2014 Apr 2014 2014-04-01             4    2.756579
## 880      April/2014 Apr 2014 2014-04-01             4    2.770227
## 881      April/2014 Apr 2014 2014-04-01             4    2.803175
## 882      April/2014 Apr 2014 2014-04-01             4    2.472789
## 883      April/2014 Apr 2014 2014-04-01             4    2.428571
## 884      April/2014 Apr 2014 2014-04-01             4    2.598662
## 886      April/2014 Apr 2014 2014-04-01             4    2.727829
## 887      April/2014 Apr 2014 2014-04-01             4    2.944444
## 888      April/2014 Apr 2014 2014-04-01             4    2.727575
## 889      April/2014 Apr 2014 2014-04-01             4    2.723810
## 890      April/2014 Apr 2014 2014-04-01             4    2.631250
## 905      April/2014 Apr 2014 2014-04-01             4    2.788690
## 907      April/2014 Apr 2014 2014-04-01             4    2.729167
## 911      April/2014 Apr 2014 2014-04-01             4    2.696594
## 912      April/2014 Apr 2014 2014-04-01             4    2.608414
## 915      April/2014 Apr 2014 2014-04-01             4    2.826667
## 917      April/2014 Apr 2014 2014-04-01             4    2.625749
## 918      April/2014 Apr 2014 2014-04-01             4    2.792388
## 975      April/2015 Apr 2015 2015-04-01             4    2.583554
## 978      April/2015 Apr 2015 2015-04-01             4    2.812903
## 986      April/2015 Apr 2015 2015-04-01             4    2.705502
## 990      April/2015 Apr 2015 2015-04-01             4    2.675585
## 993      April/2015 Apr 2015 2015-04-01             4    2.615917
## 995      April/2015 Apr 2015 2015-04-01             4    2.511628
## 996      April/2015 Apr 2015 2015-04-01             4    2.575221
## 997      April/2015 Apr 2015 2015-04-01             4    2.644295
## 1001     April/2015 Apr 2015 2015-04-01             4    2.596774
## 1012     April/2015 Apr 2015 2015-04-01             4    2.653595
## 1017     April/2015 Apr 2015 2015-04-01             4    2.721854
## 1023     April/2015 Apr 2015 2015-04-01             4    2.663551
## 1024     April/2015 Apr 2015 2015-04-01             4    2.703583
## 1025     April/2015 Apr 2015 2015-04-01             4    2.881720
## 1026     April/2015 Apr 2015 2015-04-01             4    2.731392
## 1027     April/2015 Apr 2015 2015-04-01             4    2.571429
## 1028     April/2015 Apr 2015 2015-04-01             4    2.547401
## 1029     April/2015 Apr 2015 2015-04-01             4    2.674051
## 1030     April/2015 Apr 2015 2015-04-01             4    2.574307
## 1031     April/2015 Apr 2015 2015-04-01             4    2.690554
## 1032     April/2015 Apr 2015 2015-04-01             4    2.636628
## 1033     April/2015 Apr 2015 2015-04-01             4    2.550152
## 1034     April/2015 Apr 2015 2015-04-01             4    2.934708
## 1035     April/2015 Apr 2015 2015-04-01             4    2.639394
## 1036     April/2015 Apr 2015 2015-04-01             4    2.433584
## 1037     April/2015 Apr 2015 2015-04-01             4    2.636667
## 1038     April/2015 Apr 2015 2015-04-01             4    2.668449
## 1039     April/2015 Apr 2015 2015-04-01             4    2.737430
## 1040     April/2015 Apr 2015 2015-04-01             4    2.689944
## 1041     April/2015 Apr 2015 2015-04-01             4    2.467456
## 1042     April/2015 Apr 2015 2015-04-01             4    2.681063
## 1043     April/2015 Apr 2015 2015-04-01             4    2.571429
## 1044     April/2015 Apr 2015 2015-04-01             4    2.573427
## 1045     April/2015 Apr 2015 2015-04-01             4    2.620130
## 1046     April/2015 Apr 2015 2015-04-01             4    2.705015
## 1047     April/2015 Apr 2015 2015-04-01             4    2.755556
## 1048     April/2015 Apr 2015 2015-04-01             4    2.946023
## 1049     April/2015 Apr 2015 2015-04-01             4    2.664634
## 1050     April/2015 Apr 2015 2015-04-01             4    2.616438
## 1051     April/2015 Apr 2015 2015-04-01             4    2.704762
## 1052     April/2015 Apr 2015 2015-04-01             4    2.731629
## 1054     April/2015 Apr 2015 2015-04-01             4    2.731861
## 1055     April/2015 Apr 2015 2015-04-01             4    2.667732
## 1056     April/2015 Apr 2015 2015-04-01             4    2.604222
## 1057     April/2015 Apr 2015 2015-04-01             4    2.664894
## 1058     April/2015 Apr 2015 2015-04-01             4    2.693151
## 1059     April/2015 Apr 2015 2015-04-01             4    2.656338
## 1060     April/2015 Apr 2015 2015-04-01             4    2.656250
## 1061     April/2015 Apr 2015 2015-04-01             4    2.666667
## 1062     April/2015 Apr 2015 2015-04-01             4    2.552910
## 1063     April/2015 Apr 2015 2015-04-01             4    2.661442
## 1064     April/2015 Apr 2015 2015-04-01             4    2.659375
## 1065     April/2015 Apr 2015 2015-04-01             4    2.736842
## 1066     April/2015 Apr 2015 2015-04-01             4    2.638418
## 1067     April/2015 Apr 2015 2015-04-01             4    2.717105
## 1068     April/2015 Apr 2015 2015-04-01             4    2.645604
## 1069     April/2015 Apr 2015 2015-04-01             4    2.788690
## 1070     April/2015 Apr 2015 2015-04-01             4    2.541796
## 1071     April/2015 Apr 2015 2015-04-01             4    2.605333
## 1072     April/2015 Apr 2015 2015-04-01             4    2.746835
## 1073     April/2015 Apr 2015 2015-04-01             4    2.661376
## 1074     April/2015 Apr 2015 2015-04-01             4    2.730061
## 1075     April/2015 Apr 2015 2015-04-01             4    2.753247
## 1076     April/2015 Apr 2015 2015-04-01             4    2.887052
## 1077     April/2015 Apr 2015 2015-04-01             4    2.516575
## 1078     April/2015 Apr 2015 2015-04-01             4    2.796825
## 1079     April/2015 Apr 2015 2015-04-01             4    2.737003
## 1080     April/2015 Apr 2015 2015-04-01             4    2.763231
## 1081     April/2015 Apr 2015 2015-04-01             4    3.021148
## 1082     April/2015 Apr 2015 2015-04-01             4    2.567657
## 1083     April/2015 Apr 2015 2015-04-01             4    2.728395
## 1084     April/2015 Apr 2015 2015-04-01             4    2.841935
## 1085     April/2015 Apr 2015 2015-04-01             4    2.926421
## 1086     April/2015 Apr 2015 2015-04-01             4    2.556410
## 1088     April/2015 Apr 2015 2015-04-01             4    2.914089
## 1089     April/2015 Apr 2015 2015-04-01             4    2.798658
## 1090     April/2015 Apr 2015 2015-04-01             4    2.813725
## 1091     April/2015 Apr 2015 2015-04-01             4    2.693182
## 1092     April/2015 Apr 2015 2015-04-01             4    2.874214
## 1093     April/2015 Apr 2015 2015-04-01             4    2.828070
## 1094     April/2015 Apr 2015 2015-04-01             4    2.755486
## 1095     April/2015 Apr 2015 2015-04-01             4    2.764120
## 1096     April/2015 Apr 2015 2015-04-01             4    2.563187
## 1097     April/2015 Apr 2015 2015-04-01             4    2.581921
## 1098     April/2015 Apr 2015 2015-04-01             4    2.813253
## 1099     April/2015 Apr 2015 2015-04-01             4    2.781538
## 1100     April/2015 Apr 2015 2015-04-01             4    2.651297
## 1101     April/2015 Apr 2015 2015-04-01             4    2.723776
## 1103     April/2015 Apr 2015 2015-04-01             4    2.736232
## 1104     April/2015 Apr 2015 2015-04-01             4    2.581267
## 1105     April/2015 Apr 2015 2015-04-01             4    2.250689
## 1106     April/2015 Apr 2015 2015-04-01             4    2.750000
## 1107     April/2015 Apr 2015 2015-04-01             4    2.660714
## 1108     April/2015 Apr 2015 2015-04-01             4    2.818815
## 1110     April/2015 Apr 2015 2015-04-01             4    3.048544
## 1111     April/2015 Apr 2015 2015-04-01             4    2.744262
## 1112     April/2015 Apr 2015 2015-04-01             4    2.594771
## 1117     April/2015 Apr 2015 2015-04-01             4    2.544262
## 1118     April/2015 Apr 2015 2015-04-01             4    2.509485
## 1119     April/2015 Apr 2015 2015-04-01             4    2.679894
## 1121     April/2015 Apr 2015 2015-04-01             4    2.600575
## 1122     April/2015 Apr 2015 2015-04-01             4    2.591592
## 1124     April/2015 Apr 2015 2015-04-01             4    2.589888
## 1125  December/2016 Dec 2016 2016-12-01            12    2.564417
## 1126  December/2016 Dec 2016 2016-12-01            12    2.743516
## 1127  December/2016 Dec 2016 2016-12-01            12    3.006472
## 1128  December/2016 Dec 2016 2016-12-01            12    2.691030
## 1129  December/2016 Dec 2016 2016-12-01            12    2.844444
## 1130  December/2016 Dec 2016 2016-12-01            12    2.539846
## 1131  December/2016 Dec 2016 2016-12-01            12    2.575198
## 1132  December/2016 Dec 2016 2016-12-01            12    2.654494
## 1133  December/2016 Dec 2016 2016-12-01            12    2.626741
## 1134  December/2016 Dec 2016 2016-12-01            12    2.635097
## 1135  December/2016 Dec 2016 2016-12-01            12    2.662207
## 1136  December/2016 Dec 2016 2016-12-01            12    2.742297
## 1137  December/2016 Dec 2016 2016-12-01            12    2.728395
## 1138  December/2016 Dec 2016 2016-12-01            12    2.710692
## 1142  December/2016 Dec 2016 2016-12-01            12    2.609290
## 1143  December/2016 Dec 2016 2016-12-01            12    2.587432
## 1144  December/2016 Dec 2016 2016-12-01            12    2.699659
## 1146  December/2016 Dec 2016 2016-12-01            12    2.749296
## 1148  December/2016 Dec 2016 2016-12-01            12    2.673653
## 1155  December/2016 Dec 2016 2016-12-01            12    2.648936
## 1156  December/2016 Dec 2016 2016-12-01            12    2.677419
## 1158  December/2016 Dec 2016 2016-12-01            12    2.639205
## 1160  December/2016 Dec 2016 2016-12-01            12    2.600000
## 1161  December/2016 Dec 2016 2016-12-01            12    2.657343
## 1162  December/2016 Dec 2016 2016-12-01            12    2.632708
## 1164  December/2016 Dec 2016 2016-12-01            12    2.605714
## 1166  December/2016 Dec 2016 2016-12-01            12    2.640483
## 1167  December/2016 Dec 2016 2016-12-01            12    2.669697
## 1170  December/2016 Dec 2016 2016-12-01            12    2.794872
## 1174  December/2016 Dec 2016 2016-12-01            12    2.573099
## 1176  December/2016 Dec 2016 2016-12-01            12    3.076412
## 1177  December/2016 Dec 2016 2016-12-01            12    2.856688
## 1178  December/2016 Dec 2016 2016-12-01            12    2.886667
## 1179  December/2016 Dec 2016 2016-12-01            12    2.721739
## 1180  December/2016 Dec 2016 2016-12-01            12    2.726496
## 1181  December/2016 Dec 2016 2016-12-01            12    2.743056
## 1182  December/2016 Dec 2016 2016-12-01            12    2.800000
## 1185  December/2016 Dec 2016 2016-12-01            12    2.661585
## 1186  December/2016 Dec 2016 2016-12-01            12    2.750760
## 1188  December/2016 Dec 2016 2016-12-01            12    2.789617
## 1189  December/2016 Dec 2016 2016-12-01            12    2.752542
## 1191  December/2016 Dec 2016 2016-12-01            12    2.729299
## 1192  December/2016 Dec 2016 2016-12-01            12    2.889241
## 1193  December/2016 Dec 2016 2016-12-01            12    2.818750
## 1194  December/2016 Dec 2016 2016-12-01            12    2.733746
## 1203  December/2016 Dec 2016 2016-12-01            12    2.721264
## 1204  December/2016 Dec 2016 2016-12-01            12    2.410494
## 1205  December/2016 Dec 2016 2016-12-01            12    2.571066
## 1208  December/2016 Dec 2016 2016-12-01            12    2.814286
## 1209  December/2016 Dec 2016 2016-12-01            12    2.527950
## 1210  December/2016 Dec 2016 2016-12-01            12    2.610778
## 1213  December/2016 Dec 2016 2016-12-01            12    2.662921
## 1215  December/2016 Dec 2016 2016-12-01            12    2.716511
## 1217  December/2016 Dec 2016 2016-12-01            12    2.370370
## 1219  December/2016 Dec 2016 2016-12-01            12    2.665706
## 1221  December/2016 Dec 2016 2016-12-01            12    2.473545
## 1222  December/2016 Dec 2016 2016-12-01            12    2.557065
## 1225  December/2016 Dec 2016 2016-12-01            12    2.495601
## 1228  December/2016 Dec 2016 2016-12-01            12    2.652778
## 1230  December/2016 Dec 2016 2016-12-01            12    2.787781
## 1235  December/2016 Dec 2016 2016-12-01            12    2.593315
## 1238  December/2016 Dec 2016 2016-12-01            12    2.484419
## 1239  December/2016 Dec 2016 2016-12-01            12    2.652308
## 1241  December/2016 Dec 2016 2016-12-01            12    2.790123
## 1246  December/2016 Dec 2016 2016-12-01            12    2.703571
## 1247  December/2016 Dec 2016 2016-12-01            12    2.607717
## 1248  December/2016 Dec 2016 2016-12-01            12    2.368564
## 1249  December/2016 Dec 2016 2016-12-01            12    2.776271
## 1250  December/2016 Dec 2016 2016-12-01            12    2.613333
## 1252  December/2016 Dec 2016 2016-12-01            12    2.460568
## 1253  December/2016 Dec 2016 2016-12-01            12    2.615836
## 1255  December/2016 Dec 2016 2016-12-01            12    2.660870
## 1257  December/2016 Dec 2016 2016-12-01            12    2.545455
## 1258  December/2016 Dec 2016 2016-12-01            12    2.682243
## 1268  December/2016 Dec 2016 2016-12-01            12    2.833333
## 1272  December/2016 Dec 2016 2016-12-01            12    2.821053
## 1276  December/2016 Dec 2016 2016-12-01            12    2.675676
## 1281  December/2016 Dec 2016 2016-12-01            12    2.840116
## 1285  December/2016 Dec 2016 2016-12-01            12    2.809689
## 1289  December/2016 Dec 2016 2016-12-01            12    3.127907
## 1290  December/2016 Dec 2016 2016-12-01            12    2.866450
## 1291  December/2016 Dec 2016 2016-12-01            12    2.710843
## 1292  December/2016 Dec 2016 2016-12-01            12    2.729373
## 1294  December/2016 Dec 2016 2016-12-01            12    2.466667
## 1295  December/2016 Dec 2016 2016-12-01            12    2.776836
## 1296  December/2016 Dec 2016 2016-12-01            12    2.611594
## 1297  December/2016 Dec 2016 2016-12-01            12    2.530055
## 1298  December/2016 Dec 2016 2016-12-01            12    2.603352
## 1299  December/2016 Dec 2016 2016-12-01            12    2.797101
## 1300  December/2016 Dec 2016 2016-12-01            12    2.744792
## 1301  December/2016 Dec 2016 2016-12-01            12    2.895082
## 1302  December/2016 Dec 2016 2016-12-01            12    2.718841
## 1303  December/2016 Dec 2016 2016-12-01            12    2.845455
## 1304  December/2016 Dec 2016 2016-12-01            12    2.702941
## 1306  December/2016 Dec 2016 2016-12-01            12    2.533537
## 1307  December/2016 Dec 2016 2016-12-01            12    2.832168
## 1308  December/2016 Dec 2016 2016-12-01            12    2.760736
## 1309  December/2016 Dec 2016 2016-12-01            12    2.766892
## 1310  December/2016 Dec 2016 2016-12-01            12    2.558065
## 1311  December/2016 Dec 2016 2016-12-01            12    2.672414
## 1312  December/2016 Dec 2016 2016-12-01            12    2.674931
## 1313  December/2016 Dec 2016 2016-12-01            12    2.974843
## 1315  December/2016 Dec 2016 2016-12-01            12    2.501538
## 1316  December/2016 Dec 2016 2016-12-01            12    2.822485
## 1317  December/2016 Dec 2016 2016-12-01            12    2.656642
## 1318  December/2016 Dec 2016 2016-12-01            12    2.693662
## 1319  December/2016 Dec 2016 2016-12-01            12    2.518519
## 1320  December/2016 Dec 2016 2016-12-01            12    2.678161
## 1321  December/2016 Dec 2016 2016-12-01            12    2.821326
## 1322  December/2016 Dec 2016 2016-12-01            12    2.629179
## 1323  December/2016 Dec 2016 2016-12-01            12    2.535897
## 1324  December/2016 Dec 2016 2016-12-01            12    2.595679
## 1325  December/2016 Dec 2016 2016-12-01            12    2.737542
## 1326  December/2016 Dec 2016 2016-12-01            12    2.739255
## 1327  December/2016 Dec 2016 2016-12-01            12    2.729032
## 1328  December/2016 Dec 2016 2016-12-01            12    2.686007
## 1329  December/2016 Dec 2016 2016-12-01            12    2.738889
## 1330  December/2016 Dec 2016 2016-12-01            12    2.632312
## 1331  December/2016 Dec 2016 2016-12-01            12    2.779264
## 1332  December/2016 Dec 2016 2016-12-01            12    2.689024
## 1333  December/2016 Dec 2016 2016-12-01            12    2.678808
## 1334  December/2016 Dec 2016 2016-12-01            12    2.781350
## 1335  December/2016 Dec 2016 2016-12-01            12    2.888179
## 1336  December/2016 Dec 2016 2016-12-01            12    2.642405
## 1337  December/2016 Dec 2016 2016-12-01            12    2.731629
## 1338  December/2016 Dec 2016 2016-12-01            12    2.710963
## 1340  December/2016 Dec 2016 2016-12-01            12    2.716612
## 1341  December/2016 Dec 2016 2016-12-01            12    2.931271
## 1343  December/2016 Dec 2016 2016-12-01            12    2.699422
## 1344  December/2016 Dec 2016 2016-12-01            12    2.739550
## 1346  December/2016 Dec 2016 2016-12-01            12    2.790036
## 1347  December/2016 Dec 2016 2016-12-01            12    2.607843
## 1349  December/2016 Dec 2016 2016-12-01            12    2.733974
## 1354  December/2016 Dec 2016 2016-12-01            12    2.663580
## 1355  December/2016 Dec 2016 2016-12-01            12    2.389439
## 1356  December/2016 Dec 2016 2016-12-01            12    2.694215
## 1357  December/2016 Dec 2016 2016-12-01            12    2.922360
## 1358  December/2016 Dec 2016 2016-12-01            12    2.792244
## 1361  December/2016 Dec 2016 2016-12-01            12    2.900709
## 1364  December/2016 Dec 2016 2016-12-01            12    2.728302
## 1365  December/2016 Dec 2016 2016-12-01            12    2.580858
## 1367  December/2016 Dec 2016 2016-12-01            12    2.678788
## 1368  December/2016 Dec 2016 2016-12-01            12    2.635452
## 1369  December/2016 Dec 2016 2016-12-01            12    2.605797
## 1370  December/2016 Dec 2016 2016-12-01            12    2.613383
## 1371  December/2016 Dec 2016 2016-12-01            12    2.722222
## 1372  December/2016 Dec 2016 2016-12-01            12    2.646465
## 1375  December/2016 Dec 2016 2016-12-01            12    2.619377
## 1545    August/2017 Aug 2017 2017-08-01             8    2.769481
## 1546    August/2017 Aug 2017 2017-08-01             8    2.755034
## 1547    August/2017 Aug 2017 2017-08-01             8    2.607843
## 1549    August/2017 Aug 2017 2017-08-01             8    2.816129
## 1550    August/2017 Aug 2017 2017-08-01             8    2.779026
## 1552    August/2017 Aug 2017 2017-08-01             8    2.645963
## 1553    August/2017 Aug 2017 2017-08-01             8    2.675900
## 1554    August/2017 Aug 2017 2017-08-01             8    2.757862
## 1555    August/2017 Aug 2017 2017-08-01             8    2.685246
## 1556    August/2017 Aug 2017 2017-08-01             8    2.732143
## 1557    August/2017 Aug 2017 2017-08-01             8    2.609610
## 1558    August/2017 Aug 2017 2017-08-01             8    2.663818
## 1559    August/2017 Aug 2017 2017-08-01             8    2.857143
## 1560    August/2017 Aug 2017 2017-08-01             8    2.672297
## 1562    August/2017 Aug 2017 2017-08-01             8    2.578348
## 1563    August/2017 Aug 2017 2017-08-01             8    2.525373
## 1565    August/2017 Aug 2017 2017-08-01             8    2.815789
## 1566    August/2017 Aug 2017 2017-08-01             8    2.631737
## 1567    August/2017 Aug 2017 2017-08-01             8    2.807829
## 1568    August/2017 Aug 2017 2017-08-01             8    2.674658
## 1569    August/2017 Aug 2017 2017-08-01             8    2.728188
## 1571    August/2017 Aug 2017 2017-08-01             8    2.702312
## 1572    August/2017 Aug 2017 2017-08-01             8    2.443425
## 1573    August/2017 Aug 2017 2017-08-01             8    2.713805
## 1574    August/2017 Aug 2017 2017-08-01             8    2.680251
## 1575    August/2017 Aug 2017 2017-08-01             8    2.681818
## 1576    August/2017 Aug 2017 2017-08-01             8    2.574648
## 1577    August/2017 Aug 2017 2017-08-01             8    2.548896
## 1578    August/2017 Aug 2017 2017-08-01             8    2.789474
## 1579    August/2017 Aug 2017 2017-08-01             8    2.737003
## 1580    August/2017 Aug 2017 2017-08-01             8    2.700000
## 1581    August/2017 Aug 2017 2017-08-01             8    2.740223
## 1582    August/2017 Aug 2017 2017-08-01             8    2.730435
## 1583    August/2017 Aug 2017 2017-08-01             8    2.762376
## 1584    August/2017 Aug 2017 2017-08-01             8    2.676976
## 1585    August/2017 Aug 2017 2017-08-01             8    2.726761
## 1586    August/2017 Aug 2017 2017-08-01             8    2.712991
## 1587    August/2017 Aug 2017 2017-08-01             8    2.725989
## 1589    August/2017 Aug 2017 2017-08-01             8    2.785479
## 1590    August/2017 Aug 2017 2017-08-01             8    2.752778
## 1591    August/2017 Aug 2017 2017-08-01             8    2.818182
## 1592    August/2017 Aug 2017 2017-08-01             8    2.791809
## 1593    August/2017 Aug 2017 2017-08-01             8    2.657658
## 1594    August/2017 Aug 2017 2017-08-01             8    2.517483
## 1595    August/2017 Aug 2017 2017-08-01             8    2.735669
## 1596    August/2017 Aug 2017 2017-08-01             8    2.808023
## 1597    August/2017 Aug 2017 2017-08-01             8    2.730519
## 1598    August/2017 Aug 2017 2017-08-01             8    2.740845
## 1599    August/2017 Aug 2017 2017-08-01             8    2.601744
## 1600    August/2017 Aug 2017 2017-08-01             8    2.728223
## 1601    August/2017 Aug 2017 2017-08-01             8    2.616959
## 1602    August/2017 Aug 2017 2017-08-01             8    2.649573
## 1603    August/2017 Aug 2017 2017-08-01             8    2.873134
## 1605    August/2017 Aug 2017 2017-08-01             8    2.635514
## 1607    August/2017 Aug 2017 2017-08-01             8    2.627168
## 1608    August/2017 Aug 2017 2017-08-01             8    2.638889
## 1610    August/2017 Aug 2017 2017-08-01             8    2.696793
## 1611    August/2017 Aug 2017 2017-08-01             8    2.561538
## 1612    August/2017 Aug 2017 2017-08-01             8    2.511173
## 1613    August/2017 Aug 2017 2017-08-01             8    2.693333
## 1614    August/2017 Aug 2017 2017-08-01             8    2.860215
## 1615    August/2017 Aug 2017 2017-08-01             8    2.749164
## 1616    August/2017 Aug 2017 2017-08-01             8    2.695187
## 1617    August/2017 Aug 2017 2017-08-01             8    2.572327
## 1618    August/2017 Aug 2017 2017-08-01             8    2.601156
## 1620    August/2017 Aug 2017 2017-08-01             8    2.710191
## 1621    August/2017 Aug 2017 2017-08-01             8    2.552817
## 1622    August/2017 Aug 2017 2017-08-01             8    2.701695
## 1624    August/2017 Aug 2017 2017-08-01             8    2.590625
## 1625    August/2017 Aug 2017 2017-08-01             8    2.722054
## 1626    August/2017 Aug 2017 2017-08-01             8    2.722930
## 1627    August/2017 Aug 2017 2017-08-01             8    2.646341
## 1628    August/2017 Aug 2017 2017-08-01             8    2.714286
## 1629    August/2017 Aug 2017 2017-08-01             8    2.621469
## 1630    August/2017 Aug 2017 2017-08-01             8    2.583815
## 1631    August/2017 Aug 2017 2017-08-01             8    2.581662
## 1632    August/2017 Aug 2017 2017-08-01             8    2.554839
## 1634    August/2017 Aug 2017 2017-08-01             8    2.820755
## 1635    August/2017 Aug 2017 2017-08-01             8    2.787356
## 1636    August/2017 Aug 2017 2017-08-01             8    2.397059
## 1641    August/2017 Aug 2017 2017-08-01             8    2.681347
## 1642    August/2017 Aug 2017 2017-08-01             8    2.680233
## 1643    August/2017 Aug 2017 2017-08-01             8    2.674912
## 1644    August/2017 Aug 2017 2017-08-01             8    2.758410
## 1645    August/2017 Aug 2017 2017-08-01             8    2.631902
## 1646    August/2017 Aug 2017 2017-08-01             8    2.679083
## 1647    August/2017 Aug 2017 2017-08-01             8    2.692042
## 1648    August/2017 Aug 2017 2017-08-01             8    2.600515
## 1651    August/2017 Aug 2017 2017-08-01             8    2.725979
## 1652    August/2017 Aug 2017 2017-08-01             8    2.790909
## 1654    August/2017 Aug 2017 2017-08-01             8    2.549488
## 1655    August/2017 Aug 2017 2017-08-01             8    2.748588
## 1656    August/2017 Aug 2017 2017-08-01             8    2.686275
## 1657    August/2017 Aug 2017 2017-08-01             8    2.757764
## 1658    August/2017 Aug 2017 2017-08-01             8    2.837758
## 1659    August/2017 Aug 2017 2017-08-01             8    2.706070
## 1660    August/2017 Aug 2017 2017-08-01             8    2.661808
## 1661    August/2017 Aug 2017 2017-08-01             8    2.648101
## 1662    August/2017 Aug 2017 2017-08-01             8    2.549575
## 1663    August/2017 Aug 2017 2017-08-01             8    2.707831
## 1664    August/2017 Aug 2017 2017-08-01             8    2.766026
## 1665    August/2017 Aug 2017 2017-08-01             8    2.784264
## 1666    August/2017 Aug 2017 2017-08-01             8    2.602041
## 1667    August/2017 Aug 2017 2017-08-01             8    2.713924
## 1668    August/2017 Aug 2017 2017-08-01             8    2.750000
## 1669    August/2017 Aug 2017 2017-08-01             8    2.649852
## 1670    August/2017 Aug 2017 2017-08-01             8    2.621891
## 1671    August/2017 Aug 2017 2017-08-01             8    2.754839
## 1672    August/2017 Aug 2017 2017-08-01             8    2.742331
## 1673    August/2017 Aug 2017 2017-08-01             8    2.763077
## 1674    August/2017 Aug 2017 2017-08-01             8    2.598784
## 1675    August/2017 Aug 2017 2017-08-01             8    2.825243
## 1676    August/2017 Aug 2017 2017-08-01             8    2.762058
## 1677    August/2017 Aug 2017 2017-08-01             8    2.544794
## 1678    August/2017 Aug 2017 2017-08-01             8    2.745407
## 1679    August/2017 Aug 2017 2017-08-01             8    2.617162
## 1680    August/2017 Aug 2017 2017-08-01             8    2.763407
## 1681    August/2017 Aug 2017 2017-08-01             8    2.693671
## 1682    August/2017 Aug 2017 2017-08-01             8    2.757009
## 1683    August/2017 Aug 2017 2017-08-01             8    2.932394
## 1684    August/2017 Aug 2017 2017-08-01             8    2.712121
## 1685    August/2017 Aug 2017 2017-08-01             8    2.659459
## 1686    August/2017 Aug 2017 2017-08-01             8    2.857143
## 1687    August/2017 Aug 2017 2017-08-01             8    2.651376
## 1688    August/2017 Aug 2017 2017-08-01             8    2.739247
## 1689    August/2017 Aug 2017 2017-08-01             8    2.671779
## 1690    August/2017 Aug 2017 2017-08-01             8    2.694268
## 1691    August/2017 Aug 2017 2017-08-01             8    2.559113
## 1692    August/2017 Aug 2017 2017-08-01             8    2.729050
## 1693    August/2017 Aug 2017 2017-08-01             8    2.698361
## 1694    August/2017 Aug 2017 2017-08-01             8    2.688347
## 1695    August/2017 Aug 2017 2017-08-01             8    2.707602
## 1696    August/2017 Aug 2017 2017-08-01             8    2.666667
## 1697    August/2017 Aug 2017 2017-08-01             8    2.652893
## 1698    August/2017 Aug 2017 2017-08-01             8    2.711688
## 1699    August/2017 Aug 2017 2017-08-01             8    2.814404
## 1700    August/2017 Aug 2017 2017-08-01             8    2.704969
## 1701    August/2017 Aug 2017 2017-08-01             8    2.692090
## 1702    August/2017 Aug 2017 2017-08-01             8    2.803175
## 1703    August/2017 Aug 2017 2017-08-01             8    2.820144
## 1704    August/2017 Aug 2017 2017-08-01             8    2.753846
## 1705    August/2017 Aug 2017 2017-08-01             8    2.506112
## 1706    August/2017 Aug 2017 2017-08-01             8    2.653333
## 1707    August/2017 Aug 2017 2017-08-01             8    2.577259
## 1708    August/2017 Aug 2017 2017-08-01             8    2.669492
## 1709    August/2017 Aug 2017 2017-08-01             8    2.672872
## 1710    August/2017 Aug 2017 2017-08-01             8    2.582210
## 1711    August/2017 Aug 2017 2017-08-01             8    2.622283
## 1712    August/2017 Aug 2017 2017-08-01             8    2.615183
## 1713    August/2017 Aug 2017 2017-08-01             8    2.645963
## 1714    August/2017 Aug 2017 2017-08-01             8    2.663317
## 1715    August/2017 Aug 2017 2017-08-01             8    2.597884
## 1716    August/2017 Aug 2017 2017-08-01             8    2.806548
## 1717    August/2017 Aug 2017 2017-08-01             8    2.721180
## 1718    August/2017 Aug 2017 2017-08-01             8    2.664935
## 1719    August/2017 Aug 2017 2017-08-01             8    2.784247
## 1720    August/2017 Aug 2017 2017-08-01             8    2.752294
## 1721    August/2017 Aug 2017 2017-08-01             8    2.761610
## 1722    August/2017 Aug 2017 2017-08-01             8    2.768730
## 1723    August/2017 Aug 2017 2017-08-01             8    2.691131
## 1724    August/2017 Aug 2017 2017-08-01             8    2.711656
## 1725    August/2017 Aug 2017 2017-08-01             8    2.726519
## 1726    August/2017 Aug 2017 2017-08-01             8    2.698413
## 1727    August/2017 Aug 2017 2017-08-01             8    2.815013
## 1728    August/2017 Aug 2017 2017-08-01             8    2.835484
## 1729    August/2017 Aug 2017 2017-08-01             8    2.726727
## 1730    August/2017 Aug 2017 2017-08-01             8    2.624339
## 1731    August/2017 Aug 2017 2017-08-01             8    2.728435
## 1732    August/2017 Aug 2017 2017-08-01             8    2.803681
## 1733    August/2017 Aug 2017 2017-08-01             8    2.969697
## 1734    August/2017 Aug 2017 2017-08-01             8    2.580110
## 1735    August/2017 Aug 2017 2017-08-01             8    2.757475
## 1736    August/2017 Aug 2017 2017-08-01             8    2.882759
## 1738    August/2017 Aug 2017 2017-08-01             8    2.769231
## 1739    August/2017 Aug 2017 2017-08-01             8    2.600000
## 1740    August/2017 Aug 2017 2017-08-01             8    2.748175
## 1741    August/2017 Aug 2017 2017-08-01             8    2.687273
## 1742    August/2017 Aug 2017 2017-08-01             8    2.691643
## 1743    August/2017 Aug 2017 2017-08-01             8    2.598639
## 1744    August/2017 Aug 2017 2017-08-01             8    2.754491
## 1746    August/2017 Aug 2017 2017-08-01             8    2.651466
## 1747    August/2017 Aug 2017 2017-08-01             8    2.596721
## 1748    August/2017 Aug 2017 2017-08-01             8    2.813149
## 1749    August/2017 Aug 2017 2017-08-01             8    2.481928
## 1750    August/2017 Aug 2017 2017-08-01             8    2.577419
## 1751    August/2017 Aug 2017 2017-08-01             8    2.785714
## 1752    August/2017 Aug 2017 2017-08-01             8    2.630814
## 1753    August/2017 Aug 2017 2017-08-01             8    2.540541
## 1754    August/2017 Aug 2017 2017-08-01             8    2.618076
## 1755    August/2017 Aug 2017 2017-08-01             8    2.593923
## 1758    August/2017 Aug 2017 2017-08-01             8    2.894737
## 1759    August/2017 Aug 2017 2017-08-01             8    2.768392
## 1760    August/2017 Aug 2017 2017-08-01             8    2.588785
## 1761    August/2017 Aug 2017 2017-08-01             8    2.581749
## 1762    August/2017 Aug 2017 2017-08-01             8    2.713896
## 1763    August/2017 Aug 2017 2017-08-01             8    2.697740
## 1764    August/2017 Aug 2017 2017-08-01             8    2.631068
## 1765    August/2017 Aug 2017 2017-08-01             8    2.695971
## 1766    August/2017 Aug 2017 2017-08-01             8    2.741135
## 1768    August/2017 Aug 2017 2017-08-01             8    2.743056
## 1769    August/2017 Aug 2017 2017-08-01             8    2.700000
## 1770    August/2017 Aug 2017 2017-08-01             8    2.614943
## 1771    August/2017 Aug 2017 2017-08-01             8    2.646865
## 1772    August/2017 Aug 2017 2017-08-01             8    2.642651
## 1774    August/2017 Aug 2017 2017-08-01             8    2.751534
## 1775    August/2017 Aug 2017 2017-08-01             8    2.698413
## 1776    August/2017 Aug 2017 2017-08-01             8    2.678344
## 1779    August/2017 Aug 2017 2017-08-01             8    2.492401
## 1780    August/2017 Aug 2017 2017-08-01             8    2.663793
## 1782    August/2017 Aug 2017 2017-08-01             8    2.792763
## 1785    August/2017 Aug 2017 2017-08-01             8    2.673973
## 1786    August/2017 Aug 2017 2017-08-01             8    2.924342
## 1788    August/2017 Aug 2017 2017-08-01             8    2.622074
## 1789    August/2017 Aug 2017 2017-08-01             8    2.720430
## 1790    August/2017 Aug 2017 2017-08-01             8    2.588972
## 1791    August/2017 Aug 2017 2017-08-01             8    2.796667
## 1793    August/2017 Aug 2017 2017-08-01             8    2.766871
## 1800    August/2017 Aug 2017 2017-08-01             8    2.814394
## 1802    August/2017 Aug 2017 2017-08-01             8    2.749129
## 1805    August/2017 Aug 2017 2017-08-01             8    2.737542
## 1806    August/2017 Aug 2017 2017-08-01             8    2.444744
## 1807    August/2017 Aug 2017 2017-08-01             8    2.763736
## 1808    August/2017 Aug 2017 2017-08-01             8    2.674699
## 1809    August/2017 Aug 2017 2017-08-01             8    2.968858
## 1810    August/2017 Aug 2017 2017-08-01             8    2.748485
## 1811    August/2017 Aug 2017 2017-08-01             8    2.770308
## 1812    August/2017 Aug 2017 2017-08-01             8    2.707006
## 1813    August/2017 Aug 2017 2017-08-01             8    2.649547
## 1814    August/2017 Aug 2017 2017-08-01             8    2.541219
## 1815    August/2017 Aug 2017 2017-08-01             8    2.776536
## 1816    August/2017 Aug 2017 2017-08-01             8    3.048860
## 1817    August/2017 Aug 2017 2017-08-01             8    2.679310
## 1819    August/2017 Aug 2017 2017-08-01             8    2.806584
## 1821    August/2017 Aug 2017 2017-08-01             8    2.601852
## 1822    August/2017 Aug 2017 2017-08-01             8    2.741818
## 1823    August/2017 Aug 2017 2017-08-01             8    2.839879
## 1824    August/2017 Aug 2017 2017-08-01             8    2.660000
## 1826    August/2017 Aug 2017 2017-08-01             8    2.831715
## 1827    August/2017 Aug 2017 2017-08-01             8    2.596306
## 1828    August/2017 Aug 2017 2017-08-01             8    2.702703
## 1829    August/2017 Aug 2017 2017-08-01             8    2.647841
## 1831    August/2017 Aug 2017 2017-08-01             8    2.664516
## 1832    August/2017 Aug 2017 2017-08-01             8    2.779070
## 1833    August/2017 Aug 2017 2017-08-01             8    2.696078
## 1834    August/2017 Aug 2017 2017-08-01             8    2.650273
## 1835    August/2017 Aug 2017 2017-08-01             8    2.850365
## 1836    August/2017 Aug 2017 2017-08-01             8    2.766551
## 1837    August/2017 Aug 2017 2017-08-01             8    2.779605
## 1838    August/2017 Aug 2017 2017-08-01             8    2.678571
## 1839    August/2017 Aug 2017 2017-08-01             8    2.660057
## 1840    August/2017 Aug 2017 2017-08-01             8    2.612069
## 1842    August/2017 Aug 2017 2017-08-01             8    2.644699
## 1844    August/2017 Aug 2017 2017-08-01             8    2.546980
## 1845    August/2017 Aug 2017 2017-08-01             8    2.731988
## 1846    August/2017 Aug 2017 2017-08-01             8    2.645963
## 1847    August/2017 Aug 2017 2017-08-01             8    2.630573
## 1848    August/2017 Aug 2017 2017-08-01             8    2.724359
## 1849    August/2017 Aug 2017 2017-08-01             8    2.553719
## 1850    August/2017 Aug 2017 2017-08-01             8    2.604294
## 1852    August/2017 Aug 2017 2017-08-01             8    2.603878
## 1853    August/2017 Aug 2017 2017-08-01             8    2.711806
## 1854    August/2017 Aug 2017 2017-08-01             8    2.567485
## 1855    August/2017 Aug 2017 2017-08-01             8    2.787986
## 1856    August/2017 Aug 2017 2017-08-01             8    2.737160
## 1857    August/2017 Aug 2017 2017-08-01             8    2.675758
## 1858    August/2017 Aug 2017 2017-08-01             8    2.716216
## 1859    August/2017 Aug 2017 2017-08-01             8    2.728188
## 1862    August/2017 Aug 2017 2017-08-01             8    2.813291
## 1863    August/2017 Aug 2017 2017-08-01             8    2.584046
## 1864    August/2017 Aug 2017 2017-08-01             8          NA
## 1867    August/2017 Aug 2017 2017-08-01             8    2.812500
## 1868    August/2017 Aug 2017 2017-08-01             8    2.676101
## 1871    August/2017 Aug 2017 2017-08-01             8    2.828383
## 1874    August/2017 Aug 2017 2017-08-01             8    2.715762
## 1876    August/2017 Aug 2017 2017-08-01             8    2.755700
## 1878    August/2017 Aug 2017 2017-08-01             8    2.582418
## 1879    August/2017 Aug 2017 2017-08-01             8    2.879870
## 1881    August/2017 Aug 2017 2017-08-01             8    2.841317
## 1882    August/2017 Aug 2017 2017-08-01             8    2.755486
## 1884    August/2017 Aug 2017 2017-08-01             8    2.879880
## 1885    August/2017 Aug 2017 2017-08-01             8    2.413174
## 1887    August/2017 Aug 2017 2017-08-01             8    2.527132
## 1892    August/2017 Aug 2017 2017-08-01             8    2.694915
## 1894    August/2017 Aug 2017 2017-08-01             8    2.854305
## 1895    August/2017 Aug 2017 2017-08-01             8    2.735294
## 1896    August/2017 Aug 2017 2017-08-01             8    2.624138
## 1897    August/2017 Aug 2017 2017-08-01             8    2.714286
## 1898    August/2017 Aug 2017 2017-08-01             8    2.714744
## 1901    August/2017 Aug 2017 2017-08-01             8    2.668675
## 1905    August/2017 Aug 2017 2017-08-01             8          NA
## 1907    August/2017 Aug 2017 2017-08-01             8    2.684015
## 1912    August/2017 Aug 2017 2017-08-01             8    2.603960
## 1914    August/2017 Aug 2017 2017-08-01             8    2.811912
## 1915    August/2017 Aug 2017 2017-08-01             8    2.429134
## 1917    August/2017 Aug 2017 2017-08-01             8    2.868852
## 1918    August/2017 Aug 2017 2017-08-01             8    2.750760
## 1922    August/2017 Aug 2017 2017-08-01             8    2.641104
## 1923    August/2017 Aug 2017 2017-08-01             8    2.853125
## 1924    August/2017 Aug 2017 2017-08-01             8    2.853147
## 1925    August/2017 Aug 2017 2017-08-01             8    2.730104
## 1927    August/2017 Aug 2017 2017-08-01             8    2.753571
## 1928    August/2017 Aug 2017 2017-08-01             8    2.675393
## 1929    August/2017 Aug 2017 2017-08-01             8    2.685792
## 1930    August/2017 Aug 2017 2017-08-01             8    2.799242
## 1933    August/2017 Aug 2017 2017-08-01             8    2.787356
## 1935    August/2017 Aug 2017 2017-08-01             8    2.643243
## 1936    August/2017 Aug 2017 2017-08-01             8    2.837838
## 1937    August/2017 Aug 2017 2017-08-01             8    2.726667
## 1938    August/2017 Aug 2017 2017-08-01             8    2.729537
## 1939    August/2017 Aug 2017 2017-08-01             8    2.738971
## 1941    August/2017 Aug 2017 2017-08-01             8    2.854545
## 1942    August/2017 Aug 2017 2017-08-01             8    2.732938
## 1944    August/2017 Aug 2017 2017-08-01             8    2.957295
## 1945    August/2017 Aug 2017 2017-08-01             8    2.704762
## 1946    August/2017 Aug 2017 2017-08-01             8    2.777027
## 1947    August/2017 Aug 2017 2017-08-01             8    2.733333
## 1948    August/2017 Aug 2017 2017-08-01             8    2.690544
## 1949    August/2017 Aug 2017 2017-08-01             8    2.778502
## 1952    August/2017 Aug 2017 2017-08-01             8    2.886792
## 1953    August/2017 Aug 2017 2017-08-01             8    2.815331
## 1955    August/2017 Aug 2017 2017-08-01             8    2.612676
## 1956    August/2017 Aug 2017 2017-08-01             8    2.824926
## 1958    August/2017 Aug 2017 2017-08-01             8    2.850174
## 1959    August/2017 Aug 2017 2017-08-01             8    2.775510
## 1960    August/2017 Aug 2017 2017-08-01             8    2.720497
## 1963    August/2017 Aug 2017 2017-08-01             8    2.883212
## 1964    August/2017 Aug 2017 2017-08-01             8    2.764479
## 1965    August/2017 Aug 2017 2017-08-01             8    2.559871
## 1973    August/2017 Aug 2017 2017-08-01             8    2.708197
## 1975 September/2018 Sep 2018 2018-09-01             9    2.779783
## 1976 September/2018 Sep 2018 2018-09-01             9    2.916955
## 1977 September/2018 Sep 2018 2018-09-01             9    2.907285
## 1978 September/2018 Sep 2018 2018-09-01             9    2.664935
## 1979 September/2018 Sep 2018 2018-09-01             9    2.666667
## 1980 September/2018 Sep 2018 2018-09-01             9    2.770677
## 1981 September/2018 Sep 2018 2018-09-01             9    2.859873
## 1982 September/2018 Sep 2018 2018-09-01             9    2.760606
## 1983 September/2018 Sep 2018 2018-09-01             9    2.747059
## 1984 September/2018 Sep 2018 2018-09-01             9    2.849315
## 1985 September/2018 Sep 2018 2018-09-01             9    2.735385
## 1986 September/2018 Sep 2018 2018-09-01             9    2.740845
## 1987 September/2018 Sep 2018 2018-09-01             9    2.857143
## 1988 September/2018 Sep 2018 2018-09-01             9    2.813754
## 1989 September/2018 Sep 2018 2018-09-01             9    2.894410
## 1990 September/2018 Sep 2018 2018-09-01             9    2.691429
## 1992 September/2018 Sep 2018 2018-09-01             9    2.874150
## 1993 September/2018 Sep 2018 2018-09-01             9    2.828947
## 1994 September/2018 Sep 2018 2018-09-01             9    2.911864
## 1995 September/2018 Sep 2018 2018-09-01             9    2.758503
## 1996 September/2018 Sep 2018 2018-09-01             9    2.622150
## 1997 September/2018 Sep 2018 2018-09-01             9    2.650307
## 1998 September/2018 Sep 2018 2018-09-01             9    2.881533
## 1999 September/2018 Sep 2018 2018-09-01             9    2.668588
## 2000 September/2018 Sep 2018 2018-09-01             9    2.717868
## 2001 September/2018 Sep 2018 2018-09-01             9    2.892593
## 2002 September/2018 Sep 2018 2018-09-01             9    2.855219
## 2003 September/2018 Sep 2018 2018-09-01             9    2.723183
## 2004 September/2018 Sep 2018 2018-09-01             9    2.594595
## 2005 September/2018 Sep 2018 2018-09-01             9    2.846386
## 2006 September/2018 Sep 2018 2018-09-01             9    2.630058
## 2007 September/2018 Sep 2018 2018-09-01             9    2.596257
## 2008 September/2018 Sep 2018 2018-09-01             9    2.989247
## 2009 September/2018 Sep 2018 2018-09-01             9    2.694444
## 2010 September/2018 Sep 2018 2018-09-01             9    2.841424
## 2011 September/2018 Sep 2018 2018-09-01             9    2.790769
## 2012 September/2018 Sep 2018 2018-09-01             9    2.822581
## 2013 September/2018 Sep 2018 2018-09-01             9    2.677054
## 2014 September/2018 Sep 2018 2018-09-01             9    2.785978
## 2015 September/2018 Sep 2018 2018-09-01             9    2.743590
## 2016 September/2018 Sep 2018 2018-09-01             9    2.725543
## 2017 September/2018 Sep 2018 2018-09-01             9    2.766129
## 2018 September/2018 Sep 2018 2018-09-01             9    2.905797
## 2019 September/2018 Sep 2018 2018-09-01             9    2.741611
## 2020 September/2018 Sep 2018 2018-09-01             9    2.778098
## 2021 September/2018 Sep 2018 2018-09-01             9    2.849462
## 2022 September/2018 Sep 2018 2018-09-01             9    2.698305
## 2023 September/2018 Sep 2018 2018-09-01             9    2.767442
## 2024 September/2018 Sep 2018 2018-09-01             9    2.797059
## 2025 September/2018 Sep 2018 2018-09-01             9    2.921136
## 2026 September/2018 Sep 2018 2018-09-01             9    2.928144
## 2027 September/2018 Sep 2018 2018-09-01             9    2.825083
## 2028 September/2018 Sep 2018 2018-09-01             9    2.761194
## 2029 September/2018 Sep 2018 2018-09-01             9    2.678063
## 2031 September/2018 Sep 2018 2018-09-01             9    2.649390
## 2032 September/2018 Sep 2018 2018-09-01             9    2.679412
## 2033 September/2018 Sep 2018 2018-09-01             9    2.782918
## 2034 September/2018 Sep 2018 2018-09-01             9    2.910299
## 2036 September/2018 Sep 2018 2018-09-01             9    2.739726
## 2037 September/2018 Sep 2018 2018-09-01             9    2.593220
## 2038 September/2018 Sep 2018 2018-09-01             9    2.867797
## 2039 September/2018 Sep 2018 2018-09-01             9    2.796774
## 2040 September/2018 Sep 2018 2018-09-01             9    2.655172
## 2041 September/2018 Sep 2018 2018-09-01             9    2.822695
## 2042 September/2018 Sep 2018 2018-09-01             9    2.598007
## 2047 September/2018 Sep 2018 2018-09-01             9    2.576316
## 2050 September/2018 Sep 2018 2018-09-01             9    2.754448
## 2053 September/2018 Sep 2018 2018-09-01             9    2.717857
## 2055 September/2018 Sep 2018 2018-09-01             9    2.715100
## 2057 September/2018 Sep 2018 2018-09-01             9    2.449367
## 2058 September/2018 Sep 2018 2018-09-01             9    2.730159
## 2059 September/2018 Sep 2018 2018-09-01             9    2.785016
## 2062 September/2018 Sep 2018 2018-09-01             9    2.601719
## 2064 September/2018 Sep 2018 2018-09-01             9    2.711111
## 2065 September/2018 Sep 2018 2018-09-01             9    2.677019
## 2069 September/2018 Sep 2018 2018-09-01             9    2.816901
## 2071 September/2018 Sep 2018 2018-09-01             9    2.732852
## 2072 September/2018 Sep 2018 2018-09-01             9    2.520408
## 2073 September/2018 Sep 2018 2018-09-01             9    2.493197
## 2079 September/2018 Sep 2018 2018-09-01             9    2.661972
## 2081 September/2018 Sep 2018 2018-09-01             9    2.641566
## 2082 September/2018 Sep 2018 2018-09-01             9    2.650794
## 2083 September/2018 Sep 2018 2018-09-01             9    2.543956
## 2085 September/2018 Sep 2018 2018-09-01             9    2.758730
## 2086 September/2018 Sep 2018 2018-09-01             9    2.750000
## 2087 September/2018 Sep 2018 2018-09-01             9    2.735202
## 2088 September/2018 Sep 2018 2018-09-01             9    2.850610
## 2091 September/2018 Sep 2018 2018-09-01             9    2.567901
## 2094 September/2018 Sep 2018 2018-09-01             9    2.828897
## 2095 September/2018 Sep 2018 2018-09-01             9    2.675362
## 2097 September/2018 Sep 2018 2018-09-01             9    2.968652
## 2099 September/2018 Sep 2018 2018-09-01             9    2.858182
## 2101 September/2018 Sep 2018 2018-09-01             9    2.633028
## 2103 September/2018 Sep 2018 2018-09-01             9    2.903780
## 2107 September/2018 Sep 2018 2018-09-01             9    2.778116
## 2108 September/2018 Sep 2018 2018-09-01             9    2.696486
## 2109 September/2018 Sep 2018 2018-09-01             9    2.684058
## 2110 September/2018 Sep 2018 2018-09-01             9    2.698361
## 2111 September/2018 Sep 2018 2018-09-01             9    2.884758
## 2112 September/2018 Sep 2018 2018-09-01             9    2.874598
## 2113 September/2018 Sep 2018 2018-09-01             9    2.907348
## 2115 September/2018 Sep 2018 2018-09-01             9    2.705502
## 2116 September/2018 Sep 2018 2018-09-01             9    2.693333
## 2117 September/2018 Sep 2018 2018-09-01             9    3.016026
## 2118 September/2018 Sep 2018 2018-09-01             9    2.985380
## 2119 September/2018 Sep 2018 2018-09-01             9    2.779935
## 2120 September/2018 Sep 2018 2018-09-01             9    2.720548
## 2121 September/2018 Sep 2018 2018-09-01             9    2.795918
## 2122 September/2018 Sep 2018 2018-09-01             9    2.861963
## 2123 September/2018 Sep 2018 2018-09-01             9    2.677914
## 2124 September/2018 Sep 2018 2018-09-01             9    2.827362
## 2125 September/2018 Sep 2018 2018-09-01             9    2.766484
## 2126 September/2018 Sep 2018 2018-09-01             9    2.846369
## 2127 September/2018 Sep 2018 2018-09-01             9    2.733333
## 2128 September/2018 Sep 2018 2018-09-01             9    2.852830
## 2129 September/2018 Sep 2018 2018-09-01             9    2.661538
## 2130 September/2018 Sep 2018 2018-09-01             9    2.642857
## 2131 September/2018 Sep 2018 2018-09-01             9    2.758741
## 2133 September/2018 Sep 2018 2018-09-01             9    2.856631
## 2134 September/2018 Sep 2018 2018-09-01             9    2.774603
## 2136 September/2018 Sep 2018 2018-09-01             9    2.704787
## 2137 September/2018 Sep 2018 2018-09-01             9    2.769231
## 2138 September/2018 Sep 2018 2018-09-01             9    2.662857
## 2139 September/2018 Sep 2018 2018-09-01             9    2.834320
## 2140 September/2018 Sep 2018 2018-09-01             9    2.691667
## 2141 September/2018 Sep 2018 2018-09-01             9    2.771014
## 2142 September/2018 Sep 2018 2018-09-01             9    2.854489
## 2143 September/2018 Sep 2018 2018-09-01             9    2.696721
## 2144 September/2018 Sep 2018 2018-09-01             9    2.709677
## 2145 September/2018 Sep 2018 2018-09-01             9    2.638298
## 2146 September/2018 Sep 2018 2018-09-01             9    2.763636
## 2147 September/2018 Sep 2018 2018-09-01             9    2.724832
## 2148       May/2019 May 2019 2019-05-01             5    2.651163
## 2149       May/2019 May 2019 2019-05-01             5    2.776536
## 2150       May/2019 May 2019 2019-05-01             5    2.855513
## 2151       May/2019 May 2019 2019-05-01             5    2.715818
## 2152       May/2019 May 2019 2019-05-01             5    2.667674
## 2154       May/2019 May 2019 2019-05-01             5    2.648000
## 2155       May/2019 May 2019 2019-05-01             5    2.600733
## 2156       May/2019 May 2019 2019-05-01             5    2.835664
## 2157       May/2019 May 2019 2019-05-01             5    2.448101
## 2158       May/2019 May 2019 2019-05-01             5    2.486111
## 2159       May/2019 May 2019 2019-05-01             5    2.750000
## 2160       May/2019 May 2019 2019-05-01             5    2.619597
## 2161       May/2019 May 2019 2019-05-01             5    2.553371
## 2162       May/2019 May 2019 2019-05-01             5    2.822535
## 2163       May/2019 May 2019 2019-05-01             5    2.493606
## 2164       May/2019 May 2019 2019-05-01             5    2.629944
## 2165       May/2019 May 2019 2019-05-01             5    2.685976
## 2166       May/2019 May 2019 2019-05-01             5    2.584856
## 2168       May/2019 May 2019 2019-05-01             5    2.604730
## 2169       May/2019 May 2019 2019-05-01             5    2.997101
## 2170       May/2019 May 2019 2019-05-01             5    2.657895
## 2171       May/2019 May 2019 2019-05-01             5    2.464198
## 2172       May/2019 May 2019 2019-05-01             5    3.057047
## 2173       May/2019 May 2019 2019-05-01             5    2.906137
## 2174       May/2019 May 2019 2019-05-01             5    2.917582
## 2175       May/2019 May 2019 2019-05-01             5    2.486553
## 2176       May/2019 May 2019 2019-05-01             5    2.647230
## 2177       May/2019 May 2019 2019-05-01             5    2.901818
## 2178       May/2019 May 2019 2019-05-01             5    2.794788
## 2179       May/2019 May 2019 2019-05-01             5    2.752412
## 2180       May/2019 May 2019 2019-05-01             5    2.820652
## 2181       May/2019 May 2019 2019-05-01             5    2.730871
## 2182       May/2019 May 2019 2019-05-01             5    2.448276
## 2183       May/2019 May 2019 2019-05-01             5    2.723183
## 2184       May/2019 May 2019 2019-05-01             5    2.790378
## 2185       May/2019 May 2019 2019-05-01             5    2.735294
## 2186       May/2019 May 2019 2019-05-01             5    2.842444
## 2187       May/2019 May 2019 2019-05-01             5    2.645902
## 2188       May/2019 May 2019 2019-05-01             5    2.604592
## 2189       May/2019 May 2019 2019-05-01             5    2.622356
## 2190       May/2019 May 2019 2019-05-01             5    2.835866
## 2191       May/2019 May 2019 2019-05-01             5    2.671470
## 2192       May/2019 May 2019 2019-05-01             5    2.533923
## 2193       May/2019 May 2019 2019-05-01             5    2.844595
## 2194       May/2019 May 2019 2019-05-01             5    3.067449
## 2195       May/2019 May 2019 2019-05-01             5    2.792507
## 2196       May/2019 May 2019 2019-05-01             5    2.540625
## 2198       May/2019 May 2019 2019-05-01             5    2.652459
## 2199       May/2019 May 2019 2019-05-01             5    1.830040
## 2200       May/2019 May 2019 2019-05-01             5    2.468750
## 2201       May/2019 May 2019 2019-05-01             5    2.720149
## 2202       May/2019 May 2019 2019-05-01             5    2.775920
## 2204       May/2019 May 2019 2019-05-01             5    1.907336
## 2212       May/2019 May 2019 2019-05-01             5    2.694158
## 2213       May/2019 May 2019 2019-05-01             5    2.215152
## 2218       May/2019 May 2019 2019-05-01             5    2.416357
## 2219       May/2019 May 2019 2019-05-01             5    2.556757
## 2220       May/2019 May 2019 2019-05-01             5    2.714777
## 2221       May/2019 May 2019 2019-05-01             5    2.670330
## 2228       May/2019 May 2019 2019-05-01             5    2.569182
## 2232       May/2019 May 2019 2019-05-01             5    2.696697
## 2233       May/2019 May 2019 2019-05-01             5    2.734694
## 2234       May/2019 May 2019 2019-05-01             5    2.510714
## 2235       May/2019 May 2019 2019-05-01             5    2.616487
## 2237       May/2019 May 2019 2019-05-01             5    2.589342
## 2238       May/2019 May 2019 2019-05-01             5    2.817276
## 2240       May/2019 May 2019 2019-05-01             5    2.625352
## 2245       May/2019 May 2019 2019-05-01             5    2.733564
## 2247       May/2019 May 2019 2019-05-01             5    2.664577
## 2251       May/2019 May 2019 2019-05-01             5    2.539216
## 2256       May/2019 May 2019 2019-05-01             5    2.700348
## 2261       May/2019 May 2019 2019-05-01             5    2.346570
## 2262       May/2019 May 2019 2019-05-01             5    2.617647
## 2263       May/2019 May 2019 2019-05-01             5    2.721014
## 2266       May/2019 May 2019 2019-05-01             5    2.725753
## 2268       May/2019 May 2019 2019-05-01             5    2.695238
## 2270       May/2019 May 2019 2019-05-01             5    2.534722
## 2274       May/2019 May 2019 2019-05-01             5    2.661342
## 2282       May/2019 May 2019 2019-05-01             5    2.688000
## 2285       May/2019 May 2019 2019-05-01             5    2.762987
## 2288       May/2019 May 2019 2019-05-01             5    2.684411
## 2291       May/2019 May 2019 2019-05-01             5    2.619048
## 2292       May/2019 May 2019 2019-05-01             5    2.799308
## 2293       May/2019 May 2019 2019-05-01             5    2.571429
## 2294       May/2019 May 2019 2019-05-01             5    3.061889
## 2295       May/2019 May 2019 2019-05-01             5    2.714286
## 2296       May/2019 May 2019 2019-05-01             5    2.833333
## 2297       May/2019 May 2019 2019-05-01             5    2.656168
## 2298       May/2019 May 2019 2019-05-01             5    2.799331
## 2300       May/2019 May 2019 2019-05-01             5    2.376623
## 2302       May/2019 May 2019 2019-05-01             5    2.592593
## 2305       May/2019 May 2019 2019-05-01             5    2.908046
## 2306       May/2019 May 2019 2019-05-01             5    2.927393
## 2308       May/2019 May 2019 2019-05-01             5    2.944853
## 2310       May/2019 May 2019 2019-05-01             5    2.533333
## 2312       May/2019 May 2019 2019-05-01             5    2.664537
## 2313       May/2019 May 2019 2019-05-01             5    2.755556
## 2314       May/2019 May 2019 2019-05-01             5    2.643454
## 2315       May/2019 May 2019 2019-05-01             5    2.781609
## 2316       May/2019 May 2019 2019-05-01             5    2.900344
## 2317       May/2019 May 2019 2019-05-01             5    2.674772
## 2318       May/2019 May 2019 2019-05-01             5    2.905488
## 2319       May/2019 May 2019 2019-05-01             5    2.278873
## 2320       May/2019 May 2019 2019-05-01             5    2.715625
## 2321       May/2019 May 2019 2019-05-01             5    2.248815
## 2322       May/2019 May 2019 2019-05-01             5    2.785507
## 2323       May/2019 May 2019 2019-05-01             5    1.987437
## 2324       May/2019 May 2019 2019-05-01             5    2.808081
## 2325       May/2019 May 2019 2019-05-01             5    3.023166
## 2326       May/2019 May 2019 2019-05-01             5    2.386792
## 2327       May/2019 May 2019 2019-05-01             5    2.503704
## 2328       May/2019 May 2019 2019-05-01             5    2.725857
## 2329       May/2019 May 2019 2019-05-01             5    2.223022
## 2330       May/2019 May 2019 2019-05-01             5    2.910112
## 2331       May/2019 May 2019 2019-05-01             5    2.667702
## 2332       May/2019 May 2019 2019-05-01             5    2.669841
## 2333       May/2019 May 2019 2019-05-01             5    2.733333
## 2334       May/2019 May 2019 2019-05-01             5    2.583562
## 2335       May/2019 May 2019 2019-05-01             5    2.717391
## 2337       May/2019 May 2019 2019-05-01             5    2.701863
## 2338       May/2019 May 2019 2019-05-01             5    2.862974
## 2340       May/2019 May 2019 2019-05-01             5    2.804487
## 2342       May/2019 May 2019 2019-05-01             5    2.770227
## 2343       May/2019 May 2019 2019-05-01             5    2.650704
## 2344       May/2019 May 2019 2019-05-01             5    2.725000
## 2345       May/2019 May 2019 2019-05-01             5    2.619048
## 2346       May/2019 May 2019 2019-05-01             5    2.578073
## 2347       May/2019 May 2019 2019-05-01             5    3.015385
## 2348       May/2019 May 2019 2019-05-01             5    2.693291
## 2349       May/2019 May 2019 2019-05-01             5    2.781250
## 2350       May/2019 May 2019 2019-05-01             5    2.544872
## 2351       May/2019 May 2019 2019-05-01             5    2.750000
## 2352       May/2019 May 2019 2019-05-01             5    2.568862
## 2353       May/2019 May 2019 2019-05-01             5    2.623418
## 2354       May/2019 May 2019 2019-05-01             5    2.560224
## 2355       May/2019 May 2019 2019-05-01             5    2.763158
## 2356       May/2019 May 2019 2019-05-01             5    2.762963
## 2357       May/2019 May 2019 2019-05-01             5    2.692308
## 2359       May/2019 May 2019 2019-05-01             5    2.726727
## 2361       May/2019 May 2019 2019-05-01             5    2.621359
## 2362       May/2019 May 2019 2019-05-01             5    2.830084
## 2363       May/2019 May 2019 2019-05-01             5    2.709459
## 2365       May/2019 May 2019 2019-05-01             5    2.859779
## 2366       May/2019 May 2019 2019-05-01             5    2.693548
## 2367       May/2019 May 2019 2019-05-01             5    2.812261
## 2368       May/2019 May 2019 2019-05-01             5    2.683636
## 2370       May/2019 May 2019 2019-05-01             5    2.809365
## 2371       May/2019 May 2019 2019-05-01             5    2.688645
## 2372       May/2019 May 2019 2019-05-01             5    2.680782
## 2373       May/2019 May 2019 2019-05-01             5    2.667683
## 2374       May/2019 May 2019 2019-05-01             5    2.685065
## 2376       May/2019 May 2019 2019-05-01             5    2.760383
## 2379       May/2019 May 2019 2019-05-01             5    2.683673
## 2381       May/2019 May 2019 2019-05-01             5    2.525568
## 2383       May/2019 May 2019 2019-05-01             5    2.604096
## 2386       May/2019 May 2019 2019-05-01             5    2.660131
## 2387       May/2019 May 2019 2019-05-01             5    2.772727
## 2388       May/2019 May 2019 2019-05-01             5    2.709343
## 2389       May/2019 May 2019 2019-05-01             5    2.651163
## 2390       May/2019 May 2019 2019-05-01             5    2.659701
## 2391       May/2019 May 2019 2019-05-01             5    2.667722
## 2392       May/2019 May 2019 2019-05-01             5    2.649518
## 2394       May/2019 May 2019 2019-05-01             5    2.657738
## 2395       May/2019 May 2019 2019-05-01             5    2.720149
## 2398       May/2019 May 2019 2019-05-01             5    2.482650
## 2399       May/2019 May 2019 2019-05-01             5    2.671975
## 2400       May/2019 May 2019 2019-05-01             5    2.539773
## 2401       May/2019 May 2019 2019-05-01             5    2.757143
## 2403       May/2019 May 2019 2019-05-01             5    2.692308
## 2404       May/2019 May 2019 2019-05-01             5    2.796935
## 2406       May/2019 May 2019 2019-05-01             5    2.891386
## 2408       May/2019 May 2019 2019-05-01             5    2.603675
## 2409       May/2019 May 2019 2019-05-01             5    2.703833
## 2410       May/2019 May 2019 2019-05-01             5    2.573883
## 2417       May/2019 May 2019 2019-05-01             5    2.536517
## 2418       May/2019 May 2019 2019-05-01             5    2.663082
## 2420       May/2019 May 2019 2019-05-01             5    2.691358
## 2421       May/2019 May 2019 2019-05-01             5    2.639037
## 2422       May/2019 May 2019 2019-05-01             5    2.652406
## 2423       May/2019 May 2019 2019-05-01             5    2.496753
## 2425       May/2019 May 2019 2019-05-01             5    2.668874
## 2428       May/2019 May 2019 2019-05-01             5    2.816547
## 2429       May/2019 May 2019 2019-05-01             5    2.616000
## 2431       May/2019 May 2019 2019-05-01             5    2.637584
## 2432       May/2019 May 2019 2019-05-01             5    2.727273
## 2434       May/2019 May 2019 2019-05-01             5    2.769231
## 2436       May/2019 May 2019 2019-05-01             5    2.760656
## 2439       May/2019 May 2019 2019-05-01             5    2.766187
## 2440       May/2019 May 2019 2019-05-01             5    2.787072
## 2441       May/2019 May 2019 2019-05-01             5    2.728814
## 2447       May/2019 May 2019 2019-05-01             5    2.784553
## 2452       May/2019 May 2019 2019-05-01             5    2.693380
## 2456       May/2019 May 2019 2019-05-01             5    2.639665
## 2457       May/2019 May 2019 2019-05-01             5    2.670175
## 2459       May/2019 May 2019 2019-05-01             5    2.661972
## 2466       May/2019 May 2019 2019-05-01             5    2.601744
## 2469       May/2019 May 2019 2019-05-01             5    2.652047
## 2470       May/2019 May 2019 2019-05-01             5    2.562092
## 2472       May/2019 May 2019 2019-05-01             5    2.671795
## 2473       May/2019 May 2019 2019-05-01             5    2.716012
## 2476       May/2019 May 2019 2019-05-01             5    2.573099
## 2477       May/2019 May 2019 2019-05-01             5    2.709571
## 2478       May/2019 May 2019 2019-05-01             5    2.654434
## 2479       May/2019 May 2019 2019-05-01             5    2.549598
## 2480       May/2019 May 2019 2019-05-01             5    2.764075
## 2482       May/2019 May 2019 2019-05-01             5    2.607717
## 2484       May/2019 May 2019 2019-05-01             5    2.524540
## 2487       May/2019 May 2019 2019-05-01             5    2.342183
## 2496       May/2019 May 2019 2019-05-01             5    2.636066
## 2497       May/2019 May 2019 2019-05-01             5    2.684385
## 2498       May/2019 May 2019 2019-05-01             5    2.548571
## 2499       May/2019 May 2019 2019-05-01             5    2.443590
## 2501       May/2019 May 2019 2019-05-01             5    2.623656
## 2502       May/2019 May 2019 2019-05-01             5    2.587131
## 2503       May/2019 May 2019 2019-05-01             5    2.501377
## 2504       May/2019 May 2019 2019-05-01             5    2.841379
## 2505       May/2019 May 2019 2019-05-01             5    2.833333
## 2507       May/2019 May 2019 2019-05-01             5    2.608187
## 2510       May/2019 May 2019 2019-05-01             5    2.648649
## 2512       May/2019 May 2019 2019-05-01             5    2.754098
## 2514       May/2019 May 2019 2019-05-01             5    2.743590
## 2518       May/2019 May 2019 2019-05-01             5    2.666667
## 2519       May/2019 May 2019 2019-05-01             5    2.688889
## 2521       May/2019 May 2019 2019-05-01             5    2.719178
## 2523       May/2019 May 2019 2019-05-01             5    2.671010
## 2524       May/2019 May 2019 2019-05-01             5    2.567901
## 2525       May/2019 May 2019 2019-05-01             5    2.569892
## 2526       May/2019 May 2019 2019-05-01             5    2.549724
## 2527       May/2019 May 2019 2019-05-01             5    2.509383
## 2530       May/2019 May 2019 2019-05-01             5    2.715625
## 2535       May/2019 May 2019 2019-05-01             5    2.538874
## 2537       May/2019 May 2019 2019-05-01             5    2.509589
## 2541       May/2019 May 2019 2019-05-01             5    2.838488
## 2543       May/2019 May 2019 2019-05-01             5    2.896552
## 2544       May/2019 May 2019 2019-05-01             5    2.722034
## 2545       May/2019 May 2019 2019-05-01             5    2.545775
## 2546       May/2019 May 2019 2019-05-01             5    2.641096
## 2549       May/2019 May 2019 2019-05-01             5    2.612676
## 2554       May/2019 May 2019 2019-05-01             5    2.690625
## 2561       May/2019 May 2019 2019-05-01             5    2.705479
## 2566       May/2019 May 2019 2019-05-01             5    2.666667
## 2567       May/2019 May 2019 2019-05-01             5    2.440860
## 2568       May/2019 May 2019 2019-05-01             5    2.607629
## 2569       May/2019 May 2019 2019-05-01             5    2.485342
## 2570       May/2019 May 2019 2019-05-01             5    2.832335
## 2572       May/2019 May 2019 2019-05-01             5    2.697161
## 2573       May/2019 May 2019 2019-05-01             5    2.666667
## 2574       May/2019 May 2019 2019-05-01             5    2.647230
## 2575       May/2019 May 2019 2019-05-01             5    2.781768
## 2576       May/2019 May 2019 2019-05-01             5    2.651652
## 2577       May/2019 May 2019 2019-05-01             5    2.772242
## 2578       May/2019 May 2019 2019-05-01             5    2.640110
## 2579       May/2019 May 2019 2019-05-01             5    2.715686
## 2580       May/2019 May 2019 2019-05-01             5    2.630189
## 2581       May/2019 May 2019 2019-05-01             5    2.600619
## 2582       May/2019 May 2019 2019-05-01             5    2.674576
## 2584       May/2019 May 2019 2019-05-01             5    2.778169
## 2585       May/2019 May 2019 2019-05-01             5    2.620419
## 2586       May/2019 May 2019 2019-05-01             5    3.040404
## 2587       May/2019 May 2019 2019-05-01             5    2.638418
## 2588       May/2019 May 2019 2019-05-01             5    2.649351
## 2590       May/2019 May 2019 2019-05-01             5    2.654501
## 2591       May/2019 May 2019 2019-05-01             5    2.590759
## 2592       May/2019 May 2019 2019-05-01             5    2.546053
## 2593       May/2019 May 2019 2019-05-01             5    2.705674
## 2595       May/2019 May 2019 2019-05-01             5    2.582456
## 2596       May/2019 May 2019 2019-05-01             5    2.610119
## 2597       May/2019 May 2019 2019-05-01             5    2.614035
## 2598       May/2019 May 2019 2019-05-01             5    2.679083
## 2600       May/2019 May 2019 2019-05-01             5    2.637462
## 2604       May/2019 May 2019 2019-05-01             5    2.740310
## 2606       May/2019 May 2019 2019-05-01             5    2.708075
## 2607       May/2019 May 2019 2019-05-01             5    2.536508
## 2608       May/2019 May 2019 2019-05-01             5    2.579946
## 2614       May/2019 May 2019 2019-05-01             5    2.780405
## 2622       May/2019 May 2019 2019-05-01             5    2.683824
## 2624       May/2019 May 2019 2019-05-01             5    2.668919
## 2625       May/2019 May 2019 2019-05-01             5    2.624573
## 2628       May/2019 May 2019 2019-05-01             5    2.524430
## 2629       May/2019 May 2019 2019-05-01             5    2.654354
## 2634       May/2019 May 2019 2019-05-01             5    2.666667
## 2637   October/2019 Oct 2019 2019-10-01            10    2.673184
## 2638   October/2019 Oct 2019 2019-10-01            10    2.657738
## 2639   October/2019 Oct 2019 2019-10-01            10    2.606250
## 2640   October/2019 Oct 2019 2019-10-01            10    2.735376
## 2641   October/2019 Oct 2019 2019-10-01            10    2.897436
## 2645   October/2019 Oct 2019 2019-10-01            10    2.682390
## 2647   October/2019 Oct 2019 2019-10-01            10    2.778462
## 2651   October/2019 Oct 2019 2019-10-01            10    2.771513
## 2652   October/2019 Oct 2019 2019-10-01            10    2.712610
## 2653   October/2019 Oct 2019 2019-10-01            10    2.673716
## 2654   October/2019 Oct 2019 2019-10-01            10    2.741333
## 2655   October/2019 Oct 2019 2019-10-01            10    2.657321
## 2656   October/2019 Oct 2019 2019-10-01            10    2.730408
## 2657   October/2019 Oct 2019 2019-10-01            10    2.689474
## 2658   October/2019 Oct 2019 2019-10-01            10    2.806452
## 2659   October/2019 Oct 2019 2019-10-01            10    2.570025
## 2660   October/2019 Oct 2019 2019-10-01            10    2.933993
## 2661   October/2019 Oct 2019 2019-10-01            10    2.774603
## 2662   October/2019 Oct 2019 2019-10-01            10    2.682451
## 2663   October/2019 Oct 2019 2019-10-01            10    2.769231
## 2664   October/2019 Oct 2019 2019-10-01            10    2.672087
## 2665   October/2019 Oct 2019 2019-10-01            10    2.486631
## 2666   October/2019 Oct 2019 2019-10-01            10    2.724796
## 2667   October/2019 Oct 2019 2019-10-01            10    2.795082
## 2669   October/2019 Oct 2019 2019-10-01            10    2.740000
## 2670   October/2019 Oct 2019 2019-10-01            10    2.730159
## 2671   October/2019 Oct 2019 2019-10-01            10    2.885449
## 2672   October/2019 Oct 2019 2019-10-01            10    2.718033
## 2673   October/2019 Oct 2019 2019-10-01            10    2.774603
## 2674   October/2019 Oct 2019 2019-10-01            10    2.740132
## 2675   October/2019 Oct 2019 2019-10-01            10    2.643963
## 2676   October/2019 Oct 2019 2019-10-01            10    2.803681
## 2677   October/2019 Oct 2019 2019-10-01            10    2.674772
## 2678   October/2019 Oct 2019 2019-10-01            10    2.827586
## 2679   October/2019 Oct 2019 2019-10-01            10    2.654867
## 2683   October/2019 Oct 2019 2019-10-01            10    2.552430
## 2684   October/2019 Oct 2019 2019-10-01            10    2.722892
## 2685   October/2019 Oct 2019 2019-10-01            10    2.674051
## 2686   October/2019 Oct 2019 2019-10-01            10    2.719653
## 2687   October/2019 Oct 2019 2019-10-01            10    2.860465
## 2693   October/2019 Oct 2019 2019-10-01            10    2.569014
## 2695   October/2019 Oct 2019 2019-10-01            10    2.572700
## 2697   October/2019 Oct 2019 2019-10-01            10    3.008439
## 2698   October/2019 Oct 2019 2019-10-01            10    2.664336
## 2701   October/2019 Oct 2019 2019-10-01            10    2.551084
## 2704   October/2019 Oct 2019 2019-10-01            10    2.718354
## 2705   October/2019 Oct 2019 2019-10-01            10    2.603226
## 2706   October/2019 Oct 2019 2019-10-01            10    2.688889
## 2707   October/2019 Oct 2019 2019-10-01            10    2.774834
## 2709   October/2019 Oct 2019 2019-10-01            10    2.771978
## 2710   October/2019 Oct 2019 2019-10-01            10    2.706553
## 2711   October/2019 Oct 2019 2019-10-01            10    2.588384
## 2712   October/2019 Oct 2019 2019-10-01            10    2.574534
## 2713   October/2019 Oct 2019 2019-10-01            10    2.750685
## 2716   October/2019 Oct 2019 2019-10-01            10    2.678063
## 2717   October/2019 Oct 2019 2019-10-01            10    2.769663
## 2718   October/2019 Oct 2019 2019-10-01            10    2.671733
## 2719   October/2019 Oct 2019 2019-10-01            10    2.772414
## 2720   October/2019 Oct 2019 2019-10-01            10    2.680519
## 2721   October/2019 Oct 2019 2019-10-01            10    2.627119
## 2722   October/2019 Oct 2019 2019-10-01            10    2.849850
## 2723   October/2019 Oct 2019 2019-10-01            10    2.802676
## 2724   October/2019 Oct 2019 2019-10-01            10    2.551813
## 2725   October/2019 Oct 2019 2019-10-01            10    2.758410
## 2726   October/2019 Oct 2019 2019-10-01            10    2.661184
## 2727   October/2019 Oct 2019 2019-10-01            10    2.737805
## 2728   October/2019 Oct 2019 2019-10-01            10    2.659443
## 2730   October/2019 Oct 2019 2019-10-01            10    2.645251
## 2731   October/2019 Oct 2019 2019-10-01            10    2.777429
## 2733   October/2019 Oct 2019 2019-10-01            10    2.761745
## 2734   October/2019 Oct 2019 2019-10-01            10    2.615591
## 2735   October/2019 Oct 2019 2019-10-01            10    2.752294
## 2736   October/2019 Oct 2019 2019-10-01            10    2.664671
## 2737   October/2019 Oct 2019 2019-10-01            10    2.521994
## 2738   October/2019 Oct 2019 2019-10-01            10    2.672365
## 2739   October/2019 Oct 2019 2019-10-01            10    2.780980
## 2740   October/2019 Oct 2019 2019-10-01            10    2.789668
## 2741   October/2019 Oct 2019 2019-10-01            10    2.744526
## 2742   October/2019 Oct 2019 2019-10-01            10    2.587662
## 2743   October/2019 Oct 2019 2019-10-01            10    2.590214
## 2744   October/2019 Oct 2019 2019-10-01            10    2.798077
## 2745   October/2019 Oct 2019 2019-10-01            10    2.635179
## 2747   October/2019 Oct 2019 2019-10-01            10    2.785507
## 2748   October/2019 Oct 2019 2019-10-01            10    2.802292
## 2749   October/2019 Oct 2019 2019-10-01            10    2.679045
## 2752   October/2019 Oct 2019 2019-10-01            10    2.717391
## 2754   October/2019 Oct 2019 2019-10-01            10    2.838983
## 2756   October/2019 Oct 2019 2019-10-01            10    2.094697
## 2757   October/2019 Oct 2019 2019-10-01            10    2.654088
## 2758   October/2019 Oct 2019 2019-10-01            10    2.643590
## 2759   October/2019 Oct 2019 2019-10-01            10    2.793750
## 2760   October/2019 Oct 2019 2019-10-01            10    2.714674
## 2761   October/2019 Oct 2019 2019-10-01            10    2.852507
## 2763   October/2019 Oct 2019 2019-10-01            10    2.694631
## 2764   October/2019 Oct 2019 2019-10-01            10    2.591331
## 2765   October/2019 Oct 2019 2019-10-01            10    2.722513
## 2767   October/2019 Oct 2019 2019-10-01            10    2.702265
## 2768   October/2019 Oct 2019 2019-10-01            10    2.627507
## 2769   October/2019 Oct 2019 2019-10-01            10    2.500000
## 2772   October/2019 Oct 2019 2019-10-01            10    2.824798
## 2773   October/2019 Oct 2019 2019-10-01            10    2.690027
## 2774   October/2019 Oct 2019 2019-10-01            10    2.697406
## 2777   October/2019 Oct 2019 2019-10-01            10    2.650000
## 2779   October/2019 Oct 2019 2019-10-01            10    2.627692
## 2780   October/2019 Oct 2019 2019-10-01            10    2.764706
## 2781   October/2019 Oct 2019 2019-10-01            10    2.431973
## 2782   October/2019 Oct 2019 2019-10-01            10    2.653846
## 2784   October/2019 Oct 2019 2019-10-01            10    2.816054
## 2785   October/2019 Oct 2019 2019-10-01            10    2.688963
## 2786   October/2019 Oct 2019 2019-10-01            10    2.676364
## 2787   October/2019 Oct 2019 2019-10-01            10    2.609290
## 2788   October/2019 Oct 2019 2019-10-01            10    2.245353
## 2789   October/2019 Oct 2019 2019-10-01            10    2.695122
## 2791   October/2019 Oct 2019 2019-10-01            10    2.698630
## 2792   October/2019 Oct 2019 2019-10-01            10    2.775641
## 2794   October/2019 Oct 2019 2019-10-01            10    2.700767
## 2795   October/2019 Oct 2019 2019-10-01            10    2.672087
## 2797   October/2019 Oct 2019 2019-10-01            10    2.566154
## 2798   October/2019 Oct 2019 2019-10-01            10    2.596491
## 2799   October/2019 Oct 2019 2019-10-01            10    2.639456
## 2800   October/2019 Oct 2019 2019-10-01            10    2.681698
## 2801   October/2019 Oct 2019 2019-10-01            10    2.620991
## 2802   October/2019 Oct 2019 2019-10-01            10    2.739414
## 2806   October/2019 Oct 2019 2019-10-01            10    2.761246
## 2807   October/2019 Oct 2019 2019-10-01            10    2.637540
## 2808   October/2019 Oct 2019 2019-10-01            10    2.882943
## 2810   October/2019 Oct 2019 2019-10-01            10    2.707746
## 2812   October/2019 Oct 2019 2019-10-01            10    2.627451
## 2813   October/2019 Oct 2019 2019-10-01            10    2.461957
## 2816   October/2019 Oct 2019 2019-10-01            10    2.713816
## 2820   October/2019 Oct 2019 2019-10-01            10    2.736667
## 2823   October/2019 Oct 2019 2019-10-01            10    2.678261
## 2826   October/2019 Oct 2019 2019-10-01            10    2.560000
## 2830   October/2019 Oct 2019 2019-10-01            10    2.590164
## 2831   October/2019 Oct 2019 2019-10-01            10    2.481894
## 2833   October/2019 Oct 2019 2019-10-01            10    2.776632
## 2834   October/2019 Oct 2019 2019-10-01            10    2.645570
## 2835   October/2019 Oct 2019 2019-10-01            10    2.433584
## 2836   October/2019 Oct 2019 2019-10-01            10    2.663934
## 2837   October/2019 Oct 2019 2019-10-01            10    2.528190
## 2839   October/2019 Oct 2019 2019-10-01            10    2.638177
## 2841   October/2019 Oct 2019 2019-10-01            10    2.700272
## 2842   October/2019 Oct 2019 2019-10-01            10    2.494286
## 2844   October/2019 Oct 2019 2019-10-01            10    2.696532
## 2845   October/2019 Oct 2019 2019-10-01            10    2.522667
## 2847   October/2019 Oct 2019 2019-10-01            10    2.674194
## 2848   October/2019 Oct 2019 2019-10-01            10    2.564885
## 2850   October/2019 Oct 2019 2019-10-01            10    2.582043
## 2851   October/2019 Oct 2019 2019-10-01            10    2.690323
## 2853   October/2019 Oct 2019 2019-10-01            10    2.762058
## 2854   October/2019 Oct 2019 2019-10-01            10    2.608150
## 2855   October/2019 Oct 2019 2019-10-01            10    2.691803
## 2856   October/2019 Oct 2019 2019-10-01            10    2.681818
## 2859   October/2019 Oct 2019 2019-10-01            10    2.671827
## 2860   October/2019 Oct 2019 2019-10-01            10    2.695767
## 2862   October/2019 Oct 2019 2019-10-01            10    2.718750
## 2863   October/2019 Oct 2019 2019-10-01            10    2.592593
## 2864   October/2019 Oct 2019 2019-10-01            10    2.696049
## 2868   October/2019 Oct 2019 2019-10-01            10    2.589674
## 2869   October/2019 Oct 2019 2019-10-01            10    2.543860
## 2871   October/2019 Oct 2019 2019-10-01            10    2.602606
## 2878   October/2019 Oct 2019 2019-10-01            10    2.674699
## 2884   October/2019 Oct 2019 2019-10-01            10    2.506812
## 2886   October/2019 Oct 2019 2019-10-01            10    2.565657
## 2887   October/2019 Oct 2019 2019-10-01            10    2.651163
## 2891   October/2019 Oct 2019 2019-10-01            10    2.643059
## 2892   October/2019 Oct 2019 2019-10-01            10    2.524096
## 2893   October/2019 Oct 2019 2019-10-01            10    2.740741
## 2895   October/2019 Oct 2019 2019-10-01            10    2.525773
## 2896   October/2019 Oct 2019 2019-10-01            10    2.680135
## 2897  February/2020 Feb 2020 2020-02-01             2    2.648810
## 2899  February/2020 Feb 2020 2020-02-01             2    2.698361
## 2900  February/2020 Feb 2020 2020-02-01             2    2.737705
## 2901  February/2020 Feb 2020 2020-02-01             2    2.654839
## 2904  February/2020 Feb 2020 2020-02-01             2    2.670695
## 2905  February/2020 Feb 2020 2020-02-01             2    2.658863
## 2906  February/2020 Feb 2020 2020-02-01             2    2.739286
## 2907  February/2020 Feb 2020 2020-02-01             2    2.782609
## 2908  February/2020 Feb 2020 2020-02-01             2    2.797980
## 2911  February/2020 Feb 2020 2020-02-01             2    2.642857
## 2912  February/2020 Feb 2020 2020-02-01             2    2.564356
## 2914  February/2020 Feb 2020 2020-02-01             2    2.724432
## 2917  February/2020 Feb 2020 2020-02-01             2    2.685430
## 2919  February/2020 Feb 2020 2020-02-01             2    2.772414
## 2921  February/2020 Feb 2020 2020-02-01             2    2.506369
## 2923  February/2020 Feb 2020 2020-02-01             2    2.628975
## 2929  February/2020 Feb 2020 2020-02-01             2    2.662791
## 2930  February/2020 Feb 2020 2020-02-01             2    2.690554
## 2931  February/2020 Feb 2020 2020-02-01             2    2.626582
## 2932  February/2020 Feb 2020 2020-02-01             2    2.688312
## 2933  February/2020 Feb 2020 2020-02-01             2    2.640845
## 2934  February/2020 Feb 2020 2020-02-01             2    2.528796
## 2935  February/2020 Feb 2020 2020-02-01             2    2.671388
## 2936  February/2020 Feb 2020 2020-02-01             2    2.647458
## 2937  February/2020 Feb 2020 2020-02-01             2    2.689349
## 2939  February/2020 Feb 2020 2020-02-01             2    2.776471
## 2940  February/2020 Feb 2020 2020-02-01             2    2.641176
## 2944  February/2020 Feb 2020 2020-02-01             2    2.576208
## 2945  February/2020 Feb 2020 2020-02-01             2    2.906615
## 2947  February/2020 Feb 2020 2020-02-01             2    2.513846
## 2948  February/2020 Feb 2020 2020-02-01             2    2.596825
## 2949  February/2020 Feb 2020 2020-02-01             2    2.789137
## 2950  February/2020 Feb 2020 2020-02-01             2    2.756863
## 2951  February/2020 Feb 2020 2020-02-01             2    2.632727
## 2952  February/2020 Feb 2020 2020-02-01             2    2.612698
## 2953  February/2020 Feb 2020 2020-02-01             2    2.825000
## 2954  February/2020 Feb 2020 2020-02-01             2    2.765957
## 2955  February/2020 Feb 2020 2020-02-01             2    2.667763
## 2956  February/2020 Feb 2020 2020-02-01             2    2.482759
## 2957  February/2020 Feb 2020 2020-02-01             2    2.776978
## 2958  February/2020 Feb 2020 2020-02-01             2    2.724528
## 2959  February/2020 Feb 2020 2020-02-01             2    2.656716
## 2960  February/2020 Feb 2020 2020-02-01             2    2.506024
## 2964  February/2020 Feb 2020 2020-02-01             2    2.567474
## 2965  February/2020 Feb 2020 2020-02-01             2    2.652308
## 2970  February/2020 Feb 2020 2020-02-01             2    2.784314
## 2971  February/2020 Feb 2020 2020-02-01             2    2.718310
## 2972  February/2020 Feb 2020 2020-02-01             2    2.726974
## 2973  February/2020 Feb 2020 2020-02-01             2    2.705167
## 2974  February/2020 Feb 2020 2020-02-01             2    2.697749
## 2975  February/2020 Feb 2020 2020-02-01             2    2.671975
## 2976  February/2020 Feb 2020 2020-02-01             2    2.608808
## 2978  February/2020 Feb 2020 2020-02-01             2    2.893382
## 2979  February/2020 Feb 2020 2020-02-01             2    2.623377
## 2980  February/2020 Feb 2020 2020-02-01             2    2.636637
## 2981  February/2020 Feb 2020 2020-02-01             2    2.653465
## 2982  February/2020 Feb 2020 2020-02-01             2    2.626263
## 2983  February/2020 Feb 2020 2020-02-01             2    2.469208
## 2984  February/2020 Feb 2020 2020-02-01             2    2.704735
## 2985  February/2020 Feb 2020 2020-02-01             2    2.531507
## 2986  February/2020 Feb 2020 2020-02-01             2    2.605505
## 2987  February/2020 Feb 2020 2020-02-01             2    2.870432
## 2988  February/2020 Feb 2020 2020-02-01             2    2.608150
## 2990  February/2020 Feb 2020 2020-02-01             2    2.516517
## 2991  February/2020 Feb 2020 2020-02-01             2    2.833887
## 2992  February/2020 Feb 2020 2020-02-01             2    2.613208
## 2994  February/2020 Feb 2020 2020-02-01             2    2.723214
## 2995  February/2020 Feb 2020 2020-02-01             2    2.800664
## 2997  February/2020 Feb 2020 2020-02-01             2    2.507003
## 2998  February/2020 Feb 2020 2020-02-01             2    2.711974
## 2999  February/2020 Feb 2020 2020-02-01             2    2.685619
## 3000  February/2020 Feb 2020 2020-02-01             2    2.593668
## 3001  February/2020 Feb 2020 2020-02-01             2    2.861842
## 3002  February/2020 Feb 2020 2020-02-01             2    2.598726
## 3004  February/2020 Feb 2020 2020-02-01             2    2.745098
## 3005  February/2020 Feb 2020 2020-02-01             2    2.715232
## 3006  February/2020 Feb 2020 2020-02-01             2    2.878963
## 3007  February/2020 Feb 2020 2020-02-01             2    2.600649
## 3009  February/2020 Feb 2020 2020-02-01             2    2.719033
## 3010  February/2020 Feb 2020 2020-02-01             2    2.554896
## 3011  February/2020 Feb 2020 2020-02-01             2    2.562300
## 3013  February/2020 Feb 2020 2020-02-01             2    2.624615
## 3014  February/2020 Feb 2020 2020-02-01             2    2.626866
## 3015  February/2020 Feb 2020 2020-02-01             2    2.665635
## 3016  February/2020 Feb 2020 2020-02-01             2    2.692308
## 3019  February/2020 Feb 2020 2020-02-01             2    2.726236
## 3020  February/2020 Feb 2020 2020-02-01             2    2.682927
## 3045  February/2020 Feb 2020 2020-02-01             2    2.607345
## 3050  February/2020 Feb 2020 2020-02-01             2    2.558333
## 3052  February/2020 Feb 2020 2020-02-01             2    1.856164
## 3053  February/2020 Feb 2020 2020-02-01             2    2.534591
## 3054  February/2020 Feb 2020 2020-02-01             2    2.743333
## 3055  February/2020 Feb 2020 2020-02-01             2    2.633423
## 3056  February/2020 Feb 2020 2020-02-01             2    2.786982
## 3057  February/2020 Feb 2020 2020-02-01             2    2.802013
## 3058  February/2020 Feb 2020 2020-02-01             2    2.625000
## 3059  February/2020 Feb 2020 2020-02-01             2    3.009375
## 3060  February/2020 Feb 2020 2020-02-01             2    2.886850
## 3061  February/2020 Feb 2020 2020-02-01             2    2.630058
## 3062  February/2020 Feb 2020 2020-02-01             2    2.568702
## 3063  February/2020 Feb 2020 2020-02-01             2    2.708824
## 3064  February/2020 Feb 2020 2020-02-01             2    2.950820
## 3066  February/2020 Feb 2020 2020-02-01             2    2.883721
## 3067  February/2020 Feb 2020 2020-02-01             2    2.775920
## 3068  February/2020 Feb 2020 2020-02-01             2    2.713873
## 3069  February/2020 Feb 2020 2020-02-01             2    2.540070
## 3070  February/2020 Feb 2020 2020-02-01             2    2.508929
## 3071  February/2020 Feb 2020 2020-02-01             2    2.840580
## 3072  February/2020 Feb 2020 2020-02-01             2    2.900000
## 3073  February/2020 Feb 2020 2020-02-01             2    2.746479
## 3074  February/2020 Feb 2020 2020-02-01             2    2.654987
## 3075  February/2020 Feb 2020 2020-02-01             2    2.659722
## 3076  February/2020 Feb 2020 2020-02-01             2    2.721831
## 3077  February/2020 Feb 2020 2020-02-01             2    2.827893
## 3078  February/2020 Feb 2020 2020-02-01             2    2.557103
## 3079  February/2020 Feb 2020 2020-02-01             2    2.672297
## 3080  February/2020 Feb 2020 2020-02-01             2    2.642442
## 3081  February/2020 Feb 2020 2020-02-01             2    2.642857
## 3082  February/2020 Feb 2020 2020-02-01             2    2.520000
## 3083  February/2020 Feb 2020 2020-02-01             2    2.589831
## 3084  February/2020 Feb 2020 2020-02-01             2    2.786667
## 3085  February/2020 Feb 2020 2020-02-01             2    2.506711
## 3086  February/2020 Feb 2020 2020-02-01             2    2.773885
## 3087  February/2020 Feb 2020 2020-02-01             2    2.706485
## 3088  February/2020 Feb 2020 2020-02-01             2    2.708571
## 3089  February/2020 Feb 2020 2020-02-01             2    2.677193
## 3090  February/2020 Feb 2020 2020-02-01             2    2.657609
## 3091  February/2020 Feb 2020 2020-02-01             2    2.801471
## 3092  February/2020 Feb 2020 2020-02-01             2    2.859649
## 3093  February/2020 Feb 2020 2020-02-01             2    2.410256
## 3094  February/2020 Feb 2020 2020-02-01             2    2.707447
## 3095  February/2020 Feb 2020 2020-02-01             2    2.777409
## 3096  February/2020 Feb 2020 2020-02-01             2    2.612426
## 3097  February/2020 Feb 2020 2020-02-01             2    2.694631
## 3098  February/2020 Feb 2020 2020-02-01             2    2.608939
## 3099  February/2020 Feb 2020 2020-02-01             2    2.831034
## 3100  February/2020 Feb 2020 2020-02-01             2    2.696697
## 3101  February/2020 Feb 2020 2020-02-01             2    2.631098
## 3102  February/2020 Feb 2020 2020-02-01             2    2.648968
## 3103  February/2020 Feb 2020 2020-02-01             2    2.782477
## 3105  February/2020 Feb 2020 2020-02-01             2    2.854478
## 3107  February/2020 Feb 2020 2020-02-01             2    2.934307
## 3108  February/2020 Feb 2020 2020-02-01             2    2.635452
## 3109  February/2020 Feb 2020 2020-02-01             2    2.649852
## 3110  February/2020 Feb 2020 2020-02-01             2    2.648725
## 3111  February/2020 Feb 2020 2020-02-01             2    2.735905
## 3112  February/2020 Feb 2020 2020-02-01             2    2.649682
## 3113  February/2020 Feb 2020 2020-02-01             2    2.628289
## 3115  February/2020 Feb 2020 2020-02-01             2    2.571429
## 3116  February/2020 Feb 2020 2020-02-01             2    2.595016
## 3117  February/2020 Feb 2020 2020-02-01             2    2.792388
## 3118  February/2020 Feb 2020 2020-02-01             2    2.537190
## 3119  February/2020 Feb 2020 2020-02-01             2    2.786207
## 3120  February/2020 Feb 2020 2020-02-01             2    2.677326
## 3121  February/2020 Feb 2020 2020-02-01             2    2.835125
## 3122  February/2020 Feb 2020 2020-02-01             2    2.586957
## 3123  February/2020 Feb 2020 2020-02-01             2    2.750000
## 3124  February/2020 Feb 2020 2020-02-01             2    2.660000
## 3125  February/2020 Feb 2020 2020-02-01             2    2.797753
## 3126  February/2020 Feb 2020 2020-02-01             2    2.849398
## 3127  February/2020 Feb 2020 2020-02-01             2    2.783537
## 3128  February/2020 Feb 2020 2020-02-01             2    2.665738
## 3129  February/2020 Feb 2020 2020-02-01             2    2.670175
## 3131  February/2020 Feb 2020 2020-02-01             2    2.715170
## 3132  February/2020 Feb 2020 2020-02-01             2    2.631068
## 3133  February/2020 Feb 2020 2020-02-01             2    2.832787
## 3134  February/2020 Feb 2020 2020-02-01             2    2.577061
## 3135  February/2020 Feb 2020 2020-02-01             2    2.717262
## 3136  February/2020 Feb 2020 2020-02-01             2    2.750799
## 3137  February/2020 Feb 2020 2020-02-01             2    2.564972
## 3138  February/2020 Feb 2020 2020-02-01             2    2.791946
## 3139  February/2020 Feb 2020 2020-02-01             2    2.571429
## 3140  February/2020 Feb 2020 2020-02-01             2    2.861111
## 3141  February/2020 Feb 2020 2020-02-01             2    2.636111
## 3142  February/2020 Feb 2020 2020-02-01             2    3.033582
## 3143  February/2020 Feb 2020 2020-02-01             2    2.388060
## 3144  February/2020 Feb 2020 2020-02-01             2    2.575931
## 3145  February/2020 Feb 2020 2020-02-01             2    2.703947
## 3146  February/2020 Feb 2020 2020-02-01             2    2.751748
## 3147  February/2020 Feb 2020 2020-02-01             2    2.513605
## 3148  February/2020 Feb 2020 2020-02-01             2    2.521084
## 3149  February/2020 Feb 2020 2020-02-01             2    2.839858
## 3150  February/2020 Feb 2020 2020-02-01             2    2.848993
## 3151  February/2020 Feb 2020 2020-02-01             2    2.615385
## 3152  February/2020 Feb 2020 2020-02-01             2    2.551370
## 3153  February/2020 Feb 2020 2020-02-01             2    2.401639
## 3154  February/2020 Feb 2020 2020-02-01             2    2.707071
## 3155  February/2020 Feb 2020 2020-02-01             2    2.588406
## 3157  February/2020 Feb 2020 2020-02-01             2    2.551471
## 3158  February/2020 Feb 2020 2020-02-01             2    2.770968
## 3159  February/2020 Feb 2020 2020-02-01             2    2.671429
## 3160  February/2020 Feb 2020 2020-02-01             2    2.819728
## 3162  February/2020 Feb 2020 2020-02-01             2    2.656667
## 3164  February/2020 Feb 2020 2020-02-01             2    2.682432
## 3165  February/2020 Feb 2020 2020-02-01             2    2.683386
## 3167  February/2020 Feb 2020 2020-02-01             2    2.664653
## 3168  February/2020 Feb 2020 2020-02-01             2    2.820069
## 3169  February/2020 Feb 2020 2020-02-01             2    2.795987
## 3170  February/2020 Feb 2020 2020-02-01             2    2.745665
## 3171  February/2020 Feb 2020 2020-02-01             2    2.642651
## 3172  February/2020 Feb 2020 2020-02-01             2    2.564516
## 3175  February/2020 Feb 2020 2020-02-01             2    2.659016
## 3176  February/2020 Feb 2020 2020-02-01             2    2.466216
## 3177  February/2020 Feb 2020 2020-02-01             2    2.648276
## 3178  February/2020 Feb 2020 2020-02-01             2    2.823129
## 3180  February/2020 Feb 2020 2020-02-01             2    2.592593
## 3181  February/2020 Feb 2020 2020-02-01             2    2.654971
## 3182  February/2020 Feb 2020 2020-02-01             2    2.627907
## 3183  February/2020 Feb 2020 2020-02-01             2    2.456338
## 3185  February/2020 Feb 2020 2020-02-01             2    2.543624
## 3186  February/2020 Feb 2020 2020-02-01             2    2.509202
## 3187  February/2020 Feb 2020 2020-02-01             2    2.547692
## 3189  February/2020 Feb 2020 2020-02-01             2    2.482249
## 3190  February/2020 Feb 2020 2020-02-01             2    2.640000
## 3191  February/2020 Feb 2020 2020-02-01             2    2.525084
## 3192  February/2020 Feb 2020 2020-02-01             2    2.645161
## 3193  February/2020 Feb 2020 2020-02-01             2    2.560261
## 3194  February/2020 Feb 2020 2020-02-01             2    2.645390
## 3196  February/2020 Feb 2020 2020-02-01             2    2.603217
## 3197  February/2020 Feb 2020 2020-02-01             2    2.578313
## 3198  February/2020 Feb 2020 2020-02-01             2    2.654605
## 3199  February/2020 Feb 2020 2020-02-01             2    2.462644
## 3200  February/2020 Feb 2020 2020-02-01             2    2.531646
## 3201  February/2020 Feb 2020 2020-02-01             2    2.612795
## 3202  February/2020 Feb 2020 2020-02-01             2    2.606498
## 3203  February/2020 Feb 2020 2020-02-01             2    2.652308
## 3205  February/2020 Feb 2020 2020-02-01             2    2.484950
## 3206  February/2020 Feb 2020 2020-02-01             2    2.666667
## 3207  February/2020 Feb 2020 2020-02-01             2    2.618012
## 3209  February/2020 Feb 2020 2020-02-01             2    2.732877
## 3210  February/2020 Feb 2020 2020-02-01             2    2.552561
## 3211  February/2020 Feb 2020 2020-02-01             2    2.775510
## 3212  February/2020 Feb 2020 2020-02-01             2    2.744505
## 3213  February/2020 Feb 2020 2020-02-01             2    2.516216
## 3214  February/2020 Feb 2020 2020-02-01             2    2.721713
## 3215  February/2020 Feb 2020 2020-02-01             2    2.584337
## 3216  February/2020 Feb 2020 2020-02-01             2    2.596825
## 3218  February/2020 Feb 2020 2020-02-01             2    2.664384
## 3219  February/2020 Feb 2020 2020-02-01             2    2.609164
## 3220  February/2020 Feb 2020 2020-02-01             2    2.566225
## 3221  February/2020 Feb 2020 2020-02-01             2    2.528986
## 3222  February/2020 Feb 2020 2020-02-01             2    2.607774
## 3223  February/2020 Feb 2020 2020-02-01             2    2.786207
## 3224  February/2020 Feb 2020 2020-02-01             2    2.797468
## 3226  February/2020 Feb 2020 2020-02-01             2    2.518072
## 3227  February/2020 Feb 2020 2020-02-01             2    2.633245
## 3229  February/2020 Feb 2020 2020-02-01             2    2.565445
## 3230  February/2020 Feb 2020 2020-02-01             2    2.549020
## 3231  February/2020 Feb 2020 2020-02-01             2    2.896104
## 3232  February/2020 Feb 2020 2020-02-01             2    2.604096
## 3234  February/2020 Feb 2020 2020-02-01             2    2.552553
## 3235  February/2020 Feb 2020 2020-02-01             2    2.644654
## 3236  February/2020 Feb 2020 2020-02-01             2    2.692529
## 3237  February/2020 Feb 2020 2020-02-01             2    2.710884
## 3238  February/2020 Feb 2020 2020-02-01             2    2.709343
## 3239  February/2020 Feb 2020 2020-02-01             2    2.717532
## 3240  February/2020 Feb 2020 2020-02-01             2    2.625000
## 3241  February/2020 Feb 2020 2020-02-01             2    2.612299
## 3242  February/2020 Feb 2020 2020-02-01             2    2.781350
## 3243  February/2020 Feb 2020 2020-02-01             2    3.068966
## 3244  February/2020 Feb 2020 2020-02-01             2    2.493188
## 3246  February/2020 Feb 2020 2020-02-01             2    2.695035
## 3247  February/2020 Feb 2020 2020-02-01             2    2.615625
## 3248  February/2020 Feb 2020 2020-02-01             2    2.710526
## 3249  February/2020 Feb 2020 2020-02-01             2    2.488571
## 3250  February/2020 Feb 2020 2020-02-01             2    2.561873
## 3251  February/2020 Feb 2020 2020-02-01             2    2.542955
## 3252  February/2020 Feb 2020 2020-02-01             2    2.690852
## 3253  February/2020 Feb 2020 2020-02-01             2    2.655949
## 3254  February/2020 Feb 2020 2020-02-01             2    2.666667
## 3255  February/2020 Feb 2020 2020-02-01             2    2.603960
## 3256  February/2020 Feb 2020 2020-02-01             2    2.514745
## 3257  February/2020 Feb 2020 2020-02-01             2    2.517341
## 3258  February/2020 Feb 2020 2020-02-01             2    2.692053
## 3259  February/2020 Feb 2020 2020-02-01             2    2.643750
## 3260  February/2020 Feb 2020 2020-02-01             2    2.541916
## 3261  February/2020 Feb 2020 2020-02-01             2    2.542500
## 3262  February/2020 Feb 2020 2020-02-01             2    2.554098
## 3263  February/2020 Feb 2020 2020-02-01             2    2.600567
## 3264  February/2020 Feb 2020 2020-02-01             2    2.621538
## 3265  February/2020 Feb 2020 2020-02-01             2    2.671429
## 3266  February/2020 Feb 2020 2020-02-01             2    2.774306
## 3267  February/2020 Feb 2020 2020-02-01             2    2.630662
## 3268  February/2020 Feb 2020 2020-02-01             2    2.491228
## 3269  February/2020 Feb 2020 2020-02-01             2    2.681416
## 3270  February/2020 Feb 2020 2020-02-01             2    2.551495
## 3271  February/2020 Feb 2020 2020-02-01             2    2.581662
## 3273  February/2020 Feb 2020 2020-02-01             2    2.486239
## 3274  February/2020 Feb 2020 2020-02-01             2    2.742574
## 3279  February/2020 Feb 2020 2020-02-01             2    2.839041
## 3280  February/2020 Feb 2020 2020-02-01             2    2.627517
## 3281  February/2020 Feb 2020 2020-02-01             2    2.617940
## 3282  February/2020 Feb 2020 2020-02-01             2    2.585455
## 3283  February/2020 Feb 2020 2020-02-01             2    2.706422
## 3285  February/2020 Feb 2020 2020-02-01             2    2.472789
## 3287  February/2020 Feb 2020 2020-02-01             2    2.590580
## 3288  February/2020 Feb 2020 2020-02-01             2    2.433735
## 3289  February/2020 Feb 2020 2020-02-01             2    2.715909
## 3290  February/2020 Feb 2020 2020-02-01             2    2.637195
## 3291  February/2020 Feb 2020 2020-02-01             2    2.560403
## 3292  February/2020 Feb 2020 2020-02-01             2    2.635379
## 3293  February/2020 Feb 2020 2020-02-01             2    2.530675
## 3294  February/2020 Feb 2020 2020-02-01             2    2.761290
## 3295  February/2020 Feb 2020 2020-02-01             2    2.783333
## 3296  February/2020 Feb 2020 2020-02-01             2    2.670213
## 3297  February/2020 Feb 2020 2020-02-01             2    2.756014
## 3300  February/2020 Feb 2020 2020-02-01             2    2.507553
## 3301  February/2020 Feb 2020 2020-02-01             2    2.643123
## 3302  February/2020 Feb 2020 2020-02-01             2    2.734426
## 3303  February/2020 Feb 2020 2020-02-01             2    2.601375
## 3304  February/2020 Feb 2020 2020-02-01             2    2.626230
## 3305  February/2020 Feb 2020 2020-02-01             2    2.633094
## 3306  February/2020 Feb 2020 2020-02-01             2    2.435644
## 3307  February/2020 Feb 2020 2020-02-01             2    2.559871
## 3308  February/2020 Feb 2020 2020-02-01             2    2.695652
## 3309  February/2020 Feb 2020 2020-02-01             2    2.658784
## 3311  February/2020 Feb 2020 2020-02-01             2    2.652174
## 3312  February/2020 Feb 2020 2020-02-01             2    2.603960
## 3313  February/2020 Feb 2020 2020-02-01             2    2.665672
## 3314  February/2020 Feb 2020 2020-02-01             2    2.706371
## 3315  February/2020 Feb 2020 2020-02-01             2    2.776978
## 3316  February/2020 Feb 2020 2020-02-01             2    2.661677
## 3317  February/2020 Feb 2020 2020-02-01             2    2.745704
## 3318  February/2020 Feb 2020 2020-02-01             2    2.518519
## 3319  February/2020 Feb 2020 2020-02-01             2    2.682759
## 3320  February/2020 Feb 2020 2020-02-01             2    2.610169
## 3321  February/2020 Feb 2020 2020-02-01             2    2.773973
## 3322  February/2020 Feb 2020 2020-02-01             2    2.426513
## 3323  February/2020 Feb 2020 2020-02-01             2    2.500000
## 3325  February/2020 Feb 2020 2020-02-01             2    2.695652
## 3327  February/2020 Feb 2020 2020-02-01             2    2.708609
## 3332  February/2020 Feb 2020 2020-02-01             2    2.506849
## 3339  February/2020 Feb 2020 2020-02-01             2    2.562937
## 3340  February/2020 Feb 2020 2020-02-01             2    2.491620
## 3341  February/2020 Feb 2020 2020-02-01             2    2.516667
## 3342  February/2020 Feb 2020 2020-02-01             2    2.556667
## 3343  February/2020 Feb 2020 2020-02-01             2    2.821561
## 3348  February/2020 Feb 2020 2020-02-01             2    2.550409
## 3350  February/2020 Feb 2020 2020-02-01             2    2.515723
## 3351  February/2020 Feb 2020 2020-02-01             2    2.609756
## 3379  February/2020 Feb 2020 2020-02-01             2    2.589189
## 3391  February/2020 Feb 2020 2020-02-01             2    2.649231
## 3394  February/2020 Feb 2020 2020-02-01             2    2.612500
## 3396  February/2020 Feb 2020 2020-02-01             2    2.724138
## 3398  February/2020 Feb 2020 2020-02-01             2    2.692308
## 3399  February/2020 Feb 2020 2020-02-01             2    2.620779
## 3400  February/2020 Feb 2020 2020-02-01             2    2.445230
## 3401  February/2020 Feb 2020 2020-02-01             2    2.471751
## 3402  February/2020 Feb 2020 2020-02-01             2    2.576803
## 3404  February/2020 Feb 2020 2020-02-01             2    2.525641
## 3405  February/2020 Feb 2020 2020-02-01             2    2.523810
## 3406  February/2020 Feb 2020 2020-02-01             2    2.649832
## 3407  February/2020 Feb 2020 2020-02-01             2    2.509036
## 3408  February/2020 Feb 2020 2020-02-01             2    2.641447
## 3409  February/2020 Feb 2020 2020-02-01             2    2.554945
## 3410  February/2020 Feb 2020 2020-02-01             2    2.649718
## 3411  February/2020 Feb 2020 2020-02-01             2    2.672566
## 3412  February/2020 Feb 2020 2020-02-01             2    2.609756
## 3414  February/2020 Feb 2020 2020-02-01             2    2.704180
## 3415  February/2020 Feb 2020 2020-02-01             2    2.549575
## 3418  February/2020 Feb 2020 2020-02-01             2    2.579114
## 3419  February/2020 Feb 2020 2020-02-01             2    2.610224
## 3420  February/2020 Feb 2020 2020-02-01             2    2.607362
## 3421  February/2020 Feb 2020 2020-02-01             2    2.587744
## 3422  February/2020 Feb 2020 2020-02-01             2    2.666667
## 3423  February/2020 Feb 2020 2020-02-01             2    2.665574
## 3424  February/2020 Feb 2020 2020-02-01             2    2.667732
## 3425  February/2020 Feb 2020 2020-02-01             2    2.550898
## 3426  February/2020 Feb 2020 2020-02-01             2    2.833333
## 3428  February/2020 Feb 2020 2020-02-01             2    2.627660
## 3429  February/2020 Feb 2020 2020-02-01             2    2.797203
## 3430  February/2020 Feb 2020 2020-02-01             2    2.648649
## 3431  February/2020 Feb 2020 2020-02-01             2    2.713043
## 3432  February/2020 Feb 2020 2020-02-01             2    2.777778
## 3433  February/2020 Feb 2020 2020-02-01             2    2.662500
## 3434  February/2020 Feb 2020 2020-02-01             2    2.752542
## 3435  February/2020 Feb 2020 2020-02-01             2    2.712025
## 3436  February/2020 Feb 2020 2020-02-01             2    2.597222
## 3437  February/2020 Feb 2020 2020-02-01             2    2.679412
## 3438  February/2020 Feb 2020 2020-02-01             2    2.651877
## 3439  February/2020 Feb 2020 2020-02-01             2    2.721088
## 3440  February/2020 Feb 2020 2020-02-01             2    2.725632
## 3441  February/2020 Feb 2020 2020-02-01             2    2.652568
## 3442  February/2020 Feb 2020 2020-02-01             2    2.676976
## 3443  February/2020 Feb 2020 2020-02-01             2    2.733333
## 3444  February/2020 Feb 2020 2020-02-01             2    2.591900
## 3445  February/2020 Feb 2020 2020-02-01             2    2.672026
## 3448  February/2020 Feb 2020 2020-02-01             2    2.569697
## 3451  February/2020 Feb 2020 2020-02-01             2    2.824627
## 3452  February/2020 Feb 2020 2020-02-01             2    2.793103
## 3453  February/2020 Feb 2020 2020-02-01             2    2.705696
## 3454  February/2020 Feb 2020 2020-02-01             2    2.716981
## 3461  February/2020 Feb 2020 2020-02-01             2    2.711712
## 3462  February/2020 Feb 2020 2020-02-01             2    2.375000
## 3466  February/2020 Feb 2020 2020-02-01             2    2.843636
## 3473  February/2020 Feb 2020 2020-02-01             2    2.613990
## 3476   October/2019 Oct 2019 2019-10-01            10    2.642623
## 3477   October/2019 Oct 2019 2019-10-01            10    2.531447
## 3478   October/2019 Oct 2019 2019-10-01            10    2.461126
## 3479   October/2019 Oct 2019 2019-10-01            10    2.546547
## 3480   October/2019 Oct 2019 2019-10-01            10    2.609231
## 3481   October/2019 Oct 2019 2019-10-01            10    2.592262
## 3482   October/2019 Oct 2019 2019-10-01            10    2.581281
## 3483   October/2019 Oct 2019 2019-10-01            10    2.664360
## 3485   October/2019 Oct 2019 2019-10-01            10    2.652778
## 3486   October/2019 Oct 2019 2019-10-01            10    2.663333
## 3487   October/2019 Oct 2019 2019-10-01            10    2.631399
## 3488   October/2019 Oct 2019 2019-10-01            10    2.731959
## 3489   October/2019 Oct 2019 2019-10-01            10    2.677316
## 3492   October/2019 Oct 2019 2019-10-01            10    2.557003
## 3493   October/2019 Oct 2019 2019-10-01            10    2.493188
## 3496   October/2019 Oct 2019 2019-10-01            10    2.560773
## 3498   October/2019 Oct 2019 2019-10-01            10    2.893103
## 3499   October/2019 Oct 2019 2019-10-01            10    2.733788
## 3500   October/2019 Oct 2019 2019-10-01            10    2.682119
## 3501   October/2019 Oct 2019 2019-10-01            10    2.729345
## 3502   October/2019 Oct 2019 2019-10-01            10    2.713415
## 3503   October/2019 Oct 2019 2019-10-01            10    2.658462
## 3504   October/2019 Oct 2019 2019-10-01            10    2.616129
## 3505   October/2019 Oct 2019 2019-10-01            10    2.612466
## 3506   October/2019 Oct 2019 2019-10-01            10    2.815436
## 3507   October/2019 Oct 2019 2019-10-01            10    2.665746
## 3508   October/2019 Oct 2019 2019-10-01            10    2.681690
## 3509   October/2019 Oct 2019 2019-10-01            10    2.833333
## 3510   October/2019 Oct 2019 2019-10-01            10    2.603261
## 3511   October/2019 Oct 2019 2019-10-01            10    2.567123
## 3513   October/2019 Oct 2019 2019-10-01            10    2.577181
## 3514   October/2019 Oct 2019 2019-10-01            10    2.767956
## 3515   October/2019 Oct 2019 2019-10-01            10    2.672727
## 3516   October/2019 Oct 2019 2019-10-01            10    2.654255
## 3517   October/2019 Oct 2019 2019-10-01            10    2.675439
## 3518   October/2019 Oct 2019 2019-10-01            10    2.679790
## 3519   October/2019 Oct 2019 2019-10-01            10    2.737952
## 3520   October/2019 Oct 2019 2019-10-01            10    2.796657
## 3521   October/2019 Oct 2019 2019-10-01            10    2.697885
## 3522   October/2019 Oct 2019 2019-10-01            10    2.608696
## 3523   October/2019 Oct 2019 2019-10-01            10    2.673854
## 3524   October/2019 Oct 2019 2019-10-01            10    2.614493
## 3525   October/2019 Oct 2019 2019-10-01            10    2.735294
## 3526   October/2019 Oct 2019 2019-10-01            10    2.552707
## 3528   October/2019 Oct 2019 2019-10-01            10    2.734899
## 3529   October/2019 Oct 2019 2019-10-01            10    2.445652
## 3530   October/2019 Oct 2019 2019-10-01            10    2.668966
## 3531   October/2019 Oct 2019 2019-10-01            10    2.547945
## 3532   October/2019 Oct 2019 2019-10-01            10    2.625455
## 3533   October/2019 Oct 2019 2019-10-01            10    2.609756
## 3534   October/2019 Oct 2019 2019-10-01            10    2.683673
## 3535   October/2019 Oct 2019 2019-10-01            10    2.516304
## 3536   October/2019 Oct 2019 2019-10-01            10    2.658307
## 3537   October/2019 Oct 2019 2019-10-01            10    2.597633
## 3538   October/2019 Oct 2019 2019-10-01            10    2.654952
## 3539   October/2019 Oct 2019 2019-10-01            10    2.557377
## 3540   October/2019 Oct 2019 2019-10-01            10    2.677143
## 3541   October/2019 Oct 2019 2019-10-01            10    2.806950
## 3542   October/2019 Oct 2019 2019-10-01            10    2.626289
## 3543   October/2019 Oct 2019 2019-10-01            10    2.617241
## 3544   October/2019 Oct 2019 2019-10-01            10    2.868339
## 3545   October/2019 Oct 2019 2019-10-01            10    2.845070
## 3546   October/2019 Oct 2019 2019-10-01            10    2.698507
## 3547   October/2019 Oct 2019 2019-10-01            10    2.680912
## 3549   October/2019 Oct 2019 2019-10-01            10    2.513678
## 3550   October/2019 Oct 2019 2019-10-01            10    2.566085
## 3551   October/2019 Oct 2019 2019-10-01            10    2.821086
## 3552   October/2019 Oct 2019 2019-10-01            10    2.713864
## 3553   October/2019 Oct 2019 2019-10-01            10    2.765568
## 3554   October/2019 Oct 2019 2019-10-01            10    2.627451
## 3555   October/2019 Oct 2019 2019-10-01            10    2.691824
## 3556   October/2019 Oct 2019 2019-10-01            10    2.754601
## 3557   October/2019 Oct 2019 2019-10-01            10    2.758427
## 3558   October/2019 Oct 2019 2019-10-01            10    2.848185
## 3559   October/2019 Oct 2019 2019-10-01            10    2.587940
## 3560   October/2019 Oct 2019 2019-10-01            10    2.751678
## 3561   October/2019 Oct 2019 2019-10-01            10    2.700000
## 3562   October/2019 Oct 2019 2019-10-01            10    2.622356
## 3563   October/2019 Oct 2019 2019-10-01            10    2.569322
## 3564   October/2019 Oct 2019 2019-10-01            10    2.693603
## 3565   October/2019 Oct 2019 2019-10-01            10    2.575563
## 3566  December/2016 Dec 2016 2016-12-01            12    2.663185
## 3570   October/2019 Oct 2019 2019-10-01            10    2.669540
## 3571   October/2019 Oct 2019 2019-10-01            10    2.738739
## 3572   October/2019 Oct 2019 2019-10-01            10    2.601770
## 3573   October/2019 Oct 2019 2019-10-01            10    2.811688
## 3574   October/2019 Oct 2019 2019-10-01            10    2.621053
## 3575   October/2019 Oct 2019 2019-10-01            10    2.616519
## 3576   October/2019 Oct 2019 2019-10-01            10    2.645646
## 3577   October/2019 Oct 2019 2019-10-01            10    2.735016
## 3578   October/2019 Oct 2019 2019-10-01            10    2.580475
## 3579   October/2019 Oct 2019 2019-10-01            10    2.567976
## 3581   October/2019 Oct 2019 2019-10-01            10    2.681818
## 3583   October/2019 Oct 2019 2019-10-01            10    2.623794
## 3584   October/2019 Oct 2019 2019-10-01            10    2.845506
## 3585   October/2019 Oct 2019 2019-10-01            10    2.783088
## 3586   October/2019 Oct 2019 2019-10-01            10    2.438356
## 3587   October/2019 Oct 2019 2019-10-01            10    2.554913
## 3588   October/2019 Oct 2019 2019-10-01            10    2.627760
## 3589   October/2019 Oct 2019 2019-10-01            10    2.663073
## 3590   October/2019 Oct 2019 2019-10-01            10    2.695341
## 3591   October/2019 Oct 2019 2019-10-01            10    2.570571
## 3592       May/2019 May 2019 2019-05-01             5    2.498592
## 3594       May/2019 May 2019 2019-05-01             5    2.790123
## 3595       May/2019 May 2019 2019-05-01             5    2.841499
## 3596       May/2019 May 2019 2019-05-01             5    2.629213
## 3597       May/2019 May 2019 2019-05-01             5    2.706897
## 3598       May/2019 May 2019 2019-05-01             5    2.706840
## 3599       May/2019 May 2019 2019-05-01             5    2.712281
## 3600       May/2019 May 2019 2019-05-01             5    2.503521
## 3601       May/2019 May 2019 2019-05-01             5    2.579937
## 3602       May/2019 May 2019 2019-05-01             5    2.824561
## 3603       May/2019 May 2019 2019-05-01             5    2.731250
## 3604       May/2019 May 2019 2019-05-01             5    2.900662
## 3605       May/2019 May 2019 2019-05-01             5    2.284884
## 3606       May/2019 May 2019 2019-05-01             5    2.666667
## 3607       May/2019 May 2019 2019-05-01             5    2.766154
## 3608       May/2019 May 2019 2019-05-01             5    2.677165
## 3609       May/2019 May 2019 2019-05-01             5    2.854545
## 3610       May/2019 May 2019 2019-05-01             5    2.591503
## 3611       May/2019 May 2019 2019-05-01             5    2.325228
## 3612       May/2019 May 2019 2019-05-01             5    2.715596
## 3613       May/2019 May 2019 2019-05-01             5    2.523962
## 3614       May/2019 May 2019 2019-05-01             5    2.748344
## 3615       May/2019 May 2019 2019-05-01             5    3.248227
## 3616       May/2019 May 2019 2019-05-01             5    2.802985
## 3617       May/2019 May 2019 2019-05-01             5    2.889213
## 3618       May/2019 May 2019 2019-05-01             5    2.597911
## 3619       May/2019 May 2019 2019-05-01             5    2.439898
## 3620       May/2019 May 2019 2019-05-01             5    2.759791
## 3621       May/2019 May 2019 2019-05-01             5    2.934426
## 3622       May/2019 May 2019 2019-05-01             5    2.718579
## 3623       May/2019 May 2019 2019-05-01             5    2.692771
## 3624       May/2019 May 2019 2019-05-01             5    2.615873
## 3625       May/2019 May 2019 2019-05-01             5    3.033784
## 3626       May/2019 May 2019 2019-05-01             5    2.812698
## 3627       May/2019 May 2019 2019-05-01             5    2.730650
## 3628       May/2019 May 2019 2019-05-01             5    2.390909
## 3629       May/2019 May 2019 2019-05-01             5    2.729642
## 3630       May/2019 May 2019 2019-05-01             5    2.806878
## 3631       May/2019 May 2019 2019-05-01             5    2.325581
## 3632       May/2019 May 2019 2019-05-01             5    2.646875
## 3633       May/2019 May 2019 2019-05-01             5    2.740053
## 3634       May/2019 May 2019 2019-05-01             5    2.208000
## 3635       May/2019 May 2019 2019-05-01             5    2.219917
## 3636       May/2019 May 2019 2019-05-01             5    3.026012
## 3637       May/2019 May 2019 2019-05-01             5    2.792793
## 3638       May/2019 May 2019 2019-05-01             5    2.544000
## 3639       May/2019 May 2019 2019-05-01             5    2.697128
## 3640       May/2019 May 2019 2019-05-01             5    2.617021
## 3641       May/2019 May 2019 2019-05-01             5    2.567164
## 3642       May/2019 May 2019 2019-05-01             5    2.525316
## 3643       May/2019 May 2019 2019-05-01             5    2.812689
## 3644       May/2019 May 2019 2019-05-01             5    3.041045
## 3645       May/2019 May 2019 2019-05-01             5    2.948387
## 3646       May/2019 May 2019 2019-05-01             5    2.887755
## 3647       May/2019 May 2019 2019-05-01             5    2.571816
## 3648       May/2019 May 2019 2019-05-01             5    2.402367
## 3649       May/2019 May 2019 2019-05-01             5    2.720745
## 3650       May/2019 May 2019 2019-05-01             5    2.620000
## 3651       May/2019 May 2019 2019-05-01             5    2.951140
## 3652       May/2019 May 2019 2019-05-01             5    2.974522
## 3653       May/2019 May 2019 2019-05-01             5    2.856061
## 3655       May/2019 May 2019 2019-05-01             5    2.809816
## 3656       May/2019 May 2019 2019-05-01             5    2.506083
## 3658       May/2019 May 2019 2019-05-01             5    2.625330
## 3659       May/2019 May 2019 2019-05-01             5    2.780576
## 3660       May/2019 May 2019 2019-05-01             5    2.584000
## 3661       May/2019 May 2019 2019-05-01             5    2.731788
## 3662       May/2019 May 2019 2019-05-01             5    2.671010
## 3663       May/2019 May 2019 2019-05-01             5    2.567647
## 3664       May/2019 May 2019 2019-05-01             5    2.891374
## 3665       May/2019 May 2019 2019-05-01             5    2.912621
## 3666       May/2019 May 2019 2019-05-01             5    2.812298
## 3667       May/2019 May 2019 2019-05-01             5    2.216667
## 3668       May/2019 May 2019 2019-05-01             5    2.972892
## 3669       May/2019 May 2019 2019-05-01             5    2.502890
## 3670       May/2019 May 2019 2019-05-01             5    2.889273
## 3671       May/2019 May 2019 2019-05-01             5    2.715084
## 3672       May/2019 May 2019 2019-05-01             5    2.598662
## 3673       May/2019 May 2019 2019-05-01             5    2.309783
## 3674       May/2019 May 2019 2019-05-01             5    2.404624
## 3675       May/2019 May 2019 2019-05-01             5    2.803636
## 3676       May/2019 May 2019 2019-05-01             5    2.541547
## 3677       May/2019 May 2019 2019-05-01             5    2.386010
## 3678       May/2019 May 2019 2019-05-01             5    2.504505
## 3680       May/2019 May 2019 2019-05-01             5    2.483283
## 3681       May/2019 May 2019 2019-05-01             5    2.294737
## 3682       May/2019 May 2019 2019-05-01             5    2.706522
## 3683       May/2019 May 2019 2019-05-01             5    1.746094
## 3684       May/2019 May 2019 2019-05-01             5    2.322767
## 3685       May/2019 May 2019 2019-05-01             5    2.802395
## 3686       May/2019 May 2019 2019-05-01             5    2.714744
## 3687       May/2019 May 2019 2019-05-01             5    2.848943
## 3688       May/2019 May 2019 2019-05-01             5    2.312155
## 3689       May/2019 May 2019 2019-05-01             5    2.754601
## 3690       May/2019 May 2019 2019-05-01             5    2.798780
## 3691       May/2019 May 2019 2019-05-01             5    2.433526
## 3692       May/2019 May 2019 2019-05-01             5    2.523810
## 3693       May/2019 May 2019 2019-05-01             5    2.450151
## 3694       May/2019 May 2019 2019-05-01             5    2.500000
## 3695       May/2019 May 2019 2019-05-01             5    2.448718
## 3696       May/2019 May 2019 2019-05-01             5    2.264935
## 3698       May/2019 May 2019 2019-05-01             5    2.173469
## 3700       May/2019 May 2019 2019-05-01             5    2.858156
## 3701       May/2019 May 2019 2019-05-01             5    2.717087
## 3703       May/2019 May 2019 2019-05-01             5    2.626543
## 3704       May/2019 May 2019 2019-05-01             5    2.544118
## 3705       May/2019 May 2019 2019-05-01             5    2.475177
## 3706       May/2019 May 2019 2019-05-01             5    2.643766
## 3707       May/2019 May 2019 2019-05-01             5    2.752266
## 3708       May/2019 May 2019 2019-05-01             5    2.539326
## 3709       May/2019 May 2019 2019-05-01             5    2.724490
## 3711       May/2019 May 2019 2019-05-01             5    2.536388
## 3712       May/2019 May 2019 2019-05-01             5    2.768769
## 3713       May/2019 May 2019 2019-05-01             5    2.667785
## 3714       May/2019 May 2019 2019-05-01             5    2.465969
## 3715       May/2019 May 2019 2019-05-01             5    2.640957
## 3716       May/2019 May 2019 2019-05-01             5    2.591160
## 3717       May/2019 May 2019 2019-05-01             5    2.653165
## 3718       May/2019 May 2019 2019-05-01             5    2.548287
## 3719       May/2019 May 2019 2019-05-01             5    2.519231
## 3720       May/2019 May 2019 2019-05-01             5    2.540404
## 3721       May/2019 May 2019 2019-05-01             5    2.670360
## 3722       May/2019 May 2019 2019-05-01             5    2.734568
## 3723       May/2019 May 2019 2019-05-01             5    2.720548
## 3724       May/2019 May 2019 2019-05-01             5    2.464286
## 3725       May/2019 May 2019 2019-05-01             5    2.557864
## 3726       May/2019 May 2019 2019-05-01             5    2.428571
## 3727       May/2019 May 2019 2019-05-01             5    2.812689
## 3728       May/2019 May 2019 2019-05-01             5    2.775194
## 3729       May/2019 May 2019 2019-05-01             5    2.892308
## 3731       May/2019 May 2019 2019-05-01             5    2.473684
## 3734       May/2019 May 2019 2019-05-01             5    2.634868
## 3735       May/2019 May 2019 2019-05-01             5    2.356209
## 3736       May/2019 May 2019 2019-05-01             5    2.264151
##      wing_morph_binom wing2body compare_dates   wing2body_c month_of_year_c
## 1                   1 0.7307692            -1  7.707208e-04       -2.823552
## 2                   1 0.7141623            -1 -1.583616e-02       -2.823552
## 3                   1 0.7556326            -1  2.563407e-02       -2.823552
## 4                   1 0.7340782            -1  4.079702e-03       -2.823552
## 5                   1 0.7363796            -1  6.381103e-03       -2.823552
## 6                   1 0.7268519            -1 -3.146658e-03       -2.823552
## 7                   1 0.7516401            -1  2.164160e-02       -2.823552
## 8                   1 0.7258383            -1 -4.160246e-03       -2.823552
## 9                   1 0.7495202            -1  1.952164e-02       -2.823552
## 10                  1 0.7355556            -1  5.557046e-03       -2.823552
## 11                  1 0.7285141            -1 -1.484454e-03       -2.823552
## 12                  1 0.7435407            -1  1.354216e-02       -2.823552
## 13                  1 0.7407087            -1  1.071022e-02       -2.823552
## 14                  1 0.7348877            -1  4.889227e-03       -2.823552
## 16                  1 0.7539609            -1  2.396235e-02       -2.823552
## 17                  1 0.7381387            -1  8.140176e-03       -2.823552
## 18                  1 0.7731726            -1  4.317406e-02       -2.823552
## 19                  1 0.7431838            -1  1.318531e-02       -2.823552
## 20                  1 0.7379544            -1  7.955843e-03       -2.823552
## 21                  1 0.7433234            -1  1.332493e-02       -2.823552
## 22                  1 0.7253589            -1 -4.639658e-03       -2.823552
## 23                  1 0.7456864            -1  1.568791e-02       -2.823552
## 24                  1 0.7297812            -1 -2.173492e-04       -2.823552
## 25                  1 0.7333333            -1  3.334823e-03       -2.823552
## 26                  1 0.7478673            -1  1.786879e-02       -2.823552
## 104                 1 0.6650943            -1 -6.490417e-02       -2.823552
## 105                 1 0.6999162            -1 -3.008233e-02       -2.823552
## 106                 1 0.7359736            -1  5.975087e-03       -2.823552
## 107                 1 0.7350211            -1  5.022587e-03       -2.823552
## 109                 1 0.7307380            -1  7.395273e-04       -2.823552
## 110                 1 0.6933010            -1 -3.669746e-02       -2.823552
## 111                 1 0.7258929            -1 -4.105653e-03       -2.823552
## 112                 1 0.7474403            -1  1.744176e-02       -2.823552
## 114                 1 0.7354221            -1  5.423596e-03       -2.823552
## 141                 1 0.7102222            -1 -1.977629e-02       -2.823552
## 142                 1 0.7325784            -1  2.579887e-03       -2.823552
## 143                 1 0.7372694            -1  7.270863e-03       -2.823552
## 144                 1 0.7441659            -1  1.416744e-02       -2.823552
## 146                 1 0.7480653            -1  1.806684e-02       -2.823552
## 147                 1 0.7347859            -1  4.787365e-03       -2.823552
## 148                 1 0.7520000            -1  2.200149e-02       -2.823552
## 149                 1 0.7504570            -1  2.045853e-02       -2.823552
## 150                 1 0.7431973            -1  1.319877e-02       -2.823552
## 152                 1 0.7520747            -1  2.207618e-02       -2.823552
## 153                 1 0.7215620            -1 -8.436541e-03       -2.823552
## 202                 1 0.7282708            -1 -1.727696e-03       -2.823552
## 203                 1 0.6778742            -1 -5.212432e-02       -2.823552
## 204                 1 0.6997455            -1 -3.025296e-02       -2.823552
## 205                 1 0.7663629            -1  3.636437e-02       -2.823552
## 206                 1 0.7185741            -1 -1.142440e-02       -2.823552
## 207                 1 0.7183673            -1 -1.163116e-02       -2.823552
## 208                 1 0.7366721            -1  6.673542e-03       -2.823552
## 209                 1 0.7385855            -1  8.586987e-03       -2.823552
## 210                 1 0.6831140            -1 -4.688447e-02       -2.823552
## 211                 1 0.7202602            -1 -9.738287e-03       -2.823552
## 213                 1 0.7224278            -1 -7.570679e-03       -2.823552
## 214                 1 0.6983670            -1 -3.163156e-02       -2.823552
## 215                 1 0.6927039            -1 -3.729465e-02       -2.823552
## 217                 1 0.7055449            -1 -2.445358e-02       -2.823552
## 219                 1 0.6993699            -1 -3.062857e-02       -2.823552
## 221                 1 0.7306911            -1  6.925469e-04       -2.823552
## 222                 1 0.7236328            -1 -6.365698e-03       -2.823552
## 223                 1 0.7384615            -1  8.463028e-03       -2.823552
## 224                 1 0.7338129            -1  3.814440e-03       -2.823552
## 225                 1 0.7596244            -1  2.962590e-02       -2.823552
## 226                 1 0.7252947            -1 -4.703859e-03       -2.823552
## 228                 1 0.7469880            -1  1.698944e-02       -2.823552
## 229                 1 0.7325581            -1  2.559630e-03       -2.823552
## 230                 1 0.7238532            -1 -6.145299e-03       -2.823552
## 837                 1 0.7311362            -1  1.137657e-03       -2.823552
## 839                 1 0.7562380            -1  2.623949e-02       -2.823552
## 840                 1 0.7343862            -1  4.387707e-03       -2.823552
## 841                 1 0.7150957            -1 -1.490283e-02       -2.823552
## 844                 1 0.7462406            -1  1.624209e-02       -2.823552
## 845                 1 0.7237237            -1 -6.274786e-03       -2.823552
## 847                 1 0.7571080            -1  2.710953e-02       -2.823552
## 848                 1 0.7098255            -1 -2.017298e-02       -2.823552
## 849                 1 0.7527574            -1  2.275884e-02       -2.823552
## 850                 1 0.7243963            -1 -5.602174e-03       -2.823552
## 851                 1 0.7436527            -1  1.365423e-02       -2.823552
## 852                 1 0.7220756            -1 -7.922872e-03       -2.823552
## 853                 1 0.7481032            -1  1.810468e-02       -2.823552
## 854                 1 0.7457475            -1  1.574903e-02       -2.823552
## 856                 1 0.7442713            -1  1.427280e-02       -2.823552
## 857                 1 0.7340067            -1  4.008224e-03       -2.823552
## 858                 1 0.7546501            -1  2.465162e-02       -2.823552
## 859                 1 0.7202925            -1 -9.706005e-03       -2.823552
## 860                 1 0.7313677            -1  1.369221e-03       -2.823552
## 861                 1 0.7327511            -1  2.752582e-03       -2.823552
## 862                 1 0.7338403            -1  3.841794e-03       -2.823552
## 863                 1 0.7439533            -1  1.395478e-02       -2.823552
## 865                 1 0.7336538            -1  3.655336e-03       -2.823552
## 866                 1 0.7093802            -1 -2.061828e-02       -2.823552
## 867                 1 0.7581818            -1  2.818331e-02       -2.823552
## 868                 1 0.7223089            -1 -7.689618e-03       -2.823552
## 870                 1 0.7489325            -1  1.893403e-02       -2.823552
## 871                 1 0.7527426            -1  2.274411e-02       -2.823552
## 872                 1 0.6661574            -1 -6.384114e-02       -2.823552
## 873                 1 0.7334802            -1  3.481666e-03       -2.823552
## 874                 1 0.7019868            -1 -2.801176e-02       -2.823552
## 875                 1 0.7609428            -1  3.094425e-02       -2.823552
## 877                 1 0.7303786            -1  3.800680e-04       -2.823552
## 878                 1 0.7244444            -1 -5.554066e-03       -2.823552
## 879                 1 0.7230371            -1 -6.961409e-03       -2.823552
## 880                 1 0.7303754            -1  3.769166e-04       -2.823552
## 881                 1 0.7352206            -1  5.222139e-03       -2.823552
## 882                 1 0.6917222            -1 -3.827634e-02       -2.823552
## 883                 1 0.7043315            -1 -2.566706e-02       -2.823552
## 884                 1 0.7161290            -1 -1.386948e-02       -2.823552
## 886                 1 0.7305487            -1  5.502205e-04       -2.823552
## 887                 1 0.7511072            -1  2.110866e-02       -2.823552
## 888                 1 0.7139130            -1 -1.608547e-02       -2.823552
## 889                 1 0.7289720            -1 -1.026547e-03       -2.823552
## 890                 1 0.7208904            -1 -9.108099e-03       -2.823552
## 905                 1 0.7343260            -1  4.327509e-03       -2.823552
## 907                 1 0.7345794            -1  4.580929e-03       -2.823552
## 911                 1 0.7127660            -1 -1.723255e-02       -2.823552
## 912                 1 0.7367459            -1  6.747377e-03       -2.823552
## 915                 1 0.7223169            -1 -7.681645e-03       -2.823552
## 917                 1 0.7320534            -1  2.054912e-03       -2.823552
## 918                 1 0.7160603            -1 -1.393817e-02       -2.823552
## 975                 1 0.7172312            -1 -1.276729e-02       -2.823552
## 978                 1 0.7188788            -1 -1.111970e-02       -2.823552
## 986                 1 0.7042965            -1 -2.570196e-02       -2.823552
## 990                 1 0.7285974            -1 -1.401060e-03       -2.823552
## 993                 1 0.7159091            -1 -1.408942e-02       -2.823552
## 995                 1 0.6997840            -1 -3.021449e-02       -2.823552
## 996                 1 0.7275000            -1 -2.498510e-03       -2.823552
## 997                 1 0.7547893            -1  2.479076e-02       -2.823552
## 1001                1 0.7213262            -1 -8.672345e-03       -2.823552
## 1012                1 0.6858108            -1 -4.418770e-02       -2.823552
## 1017                1 0.7007673            -1 -2.923125e-02       -2.823552
## 1023                1 0.7307692            -1  7.707208e-04       -2.823552
## 1024                1 0.6992418            -1 -3.075672e-02       -2.823552
## 1025                1 0.7679083            -1  3.790980e-02       -2.823552
## 1026                1 0.7201365            -1 -9.861991e-03       -2.823552
## 1027                1 0.7122302            -1 -1.776829e-02       -2.823552
## 1028                1 0.7101449            -1 -1.985358e-02       -2.823552
## 1029                1 0.7191489            -1 -1.084957e-02       -2.823552
## 1030                1 0.6952381            -1 -3.476041e-02       -2.823552
## 1031                1 0.7071918            -1 -2.280673e-02       -2.823552
## 1032                1 0.7362013            -1  6.202789e-03       -2.823552
## 1033                1 0.7511191            -1  2.112056e-02       -2.823552
## 1034                1 0.7426087            -1  1.261019e-02       -2.823552
## 1035                1 0.7400170            -1  1.001848e-02       -2.823552
## 1036                1 0.7010830            -1 -2.891548e-02       -2.823552
## 1037                1 0.7151899            -1 -1.480864e-02       -2.823552
## 1038                1 0.7481259            -1  1.812743e-02       -2.823552
## 1039                1 0.7259259            -1 -4.072584e-03       -2.823552
## 1040                1 0.7523437            -1  2.234524e-02       -2.823552
## 1041                1 0.6909693            -1 -3.902916e-02       -2.823552
## 1042                1 0.7060367            -1 -2.396176e-02       -2.823552
## 1043                1 0.7397260            -1  9.727517e-03       -2.823552
## 1044                1 0.7002854            -1 -2.971307e-02       -2.823552
## 1045                1 0.6968912            -1 -3.310732e-02       -2.823552
## 1046                1 0.7114042            -1 -1.859432e-02       -2.823552
## 1047                1 0.7689922            -1  3.899374e-02       -2.823552
## 1048                1 0.7221448            -1 -7.853663e-03       -2.823552
## 1049                1 0.7425658            -1  1.256734e-02       -2.823552
## 1050                1 0.7385924            -1  8.593911e-03       -2.823552
## 1051                1 0.7389419            -1  8.943381e-03       -2.823552
## 1052                1 0.7071960            -1 -2.280248e-02       -2.823552
## 1054                1 0.7029221            -1 -2.707643e-02       -2.823552
## 1055                1 0.7173540            -1 -1.264456e-02       -2.823552
## 1056                1 0.7121212            -1 -1.787730e-02       -2.823552
## 1057                1 0.7483196            -1  1.832113e-02       -2.823552
## 1058                1 0.7430083            -1  1.300980e-02       -2.823552
## 1059                1 0.7372948            -1  7.296252e-03       -2.823552
## 1060                1 0.7350629            -1  5.064383e-03       -2.823552
## 1061                1 0.7333894            -1  3.390893e-03       -2.823552
## 1062                1 0.7394636            -1  9.465092e-03       -2.823552
## 1063                1 0.7312661            -1  1.267640e-03       -2.823552
## 1064                1 0.6963993            -1 -3.359916e-02       -2.823552
## 1065                1 0.7349823            -1  4.983822e-03       -2.823552
## 1066                1 0.7360126            -1  6.014098e-03       -2.823552
## 1067                1 0.7361854            -1  6.186873e-03       -2.823552
## 1068                1 0.7447796            -1  1.478107e-02       -2.823552
## 1069                1 0.7454256            -1  1.542711e-02       -2.823552
## 1070                1 0.7239859            -1 -6.012619e-03       -2.823552
## 1071                1 0.7033837            -1 -2.661478e-02       -2.823552
## 1072                1 0.7149918            -1 -1.500675e-02       -2.823552
## 1073                1 0.7375367            -1  7.538147e-03       -2.823552
## 1074                1 0.7313065            -1  1.307981e-03       -2.823552
## 1075                1 0.7432077            -1  1.320920e-02       -2.823552
## 1076                1 0.7427356            -1  1.273714e-02       -2.823552
## 1077                1 0.6970161            -1 -3.298244e-02       -2.823552
## 1078                1 0.7215397            -1 -8.458788e-03       -2.823552
## 1079                1 0.7264610            -1 -3.537471e-03       -2.823552
## 1080                1 0.7283407            -1 -1.657835e-03       -2.823552
## 1081                1 0.7183908            -1 -1.160771e-02       -2.823552
## 1082                1 0.6655261            -1 -6.447242e-02       -2.823552
## 1083                1 0.7342193            -1  4.220759e-03       -2.823552
## 1084                1 0.7390940            -1  9.095450e-03       -2.823552
## 1085                1 0.7346767            -1  4.678232e-03       -2.823552
## 1086                1 0.7116345            -1 -1.836396e-02       -2.823552
## 1088                1 0.7335640            -1  3.565504e-03       -2.823552
## 1089                1 0.7302977            -1  2.992133e-04       -2.823552
## 1090                1 0.7271959            -1 -2.802564e-03       -2.823552
## 1091                1 0.7482242            -1  1.822564e-02       -2.823552
## 1092                1 0.7406807            -1  1.068220e-02       -2.823552
## 1093                1 0.7209302            -1 -9.068277e-03       -2.823552
## 1094                1 0.7065916            -1 -2.340687e-02       -2.823552
## 1095                1 0.7375887            -1  7.590142e-03       -2.823552
## 1096                1 0.7116705            -1 -1.832803e-02       -2.823552
## 1097                1 0.7163009            -1 -1.369757e-02       -2.823552
## 1098                1 0.7113481            -1 -1.865045e-02       -2.823552
## 1099                1 0.7667515            -1  3.675297e-02       -2.823552
## 1100                1 0.7365893            -1  6.590761e-03       -2.823552
## 1101                1 0.7219648            -1 -8.033728e-03       -2.823552
## 1103                1 0.7018587            -1 -2.813977e-02       -2.823552
## 1104                1 0.7418844            -1  1.188589e-02       -2.823552
## 1105                1 0.6791355            -1 -5.086302e-02       -2.823552
## 1106                1 0.7196262            -1 -1.037234e-02       -2.823552
## 1107                1 0.7163462            -1 -1.365236e-02       -2.823552
## 1108                1 0.7134039            -1 -1.659463e-02       -2.823552
## 1110                1 0.8219895            -1  9.199102e-02       -2.823552
## 1111                1 0.7374449            -1  7.446424e-03       -2.823552
## 1112                1 0.7345051            -1  4.506578e-03       -2.823552
## 1117                1 0.6837004            -1 -4.629807e-02       -2.823552
## 1118                1 0.6764061            -1 -5.359237e-02       -2.823552
## 1119                1 0.7199716            -1 -1.002694e-02       -2.823552
## 1121                1 0.7188245            -1 -1.117405e-02       -2.823552
## 1122                1 0.7369769            -1  6.978433e-03       -2.823552
## 1124                1 0.7169518            -1 -1.304672e-02       -2.823552
## 1125                1 0.7359155            -1  5.916983e-03        5.176448
## 1126                1 0.7374129            -1  7.414348e-03        5.176448
## 1127                1 0.7534469            -1  2.344837e-02        5.176448
## 1128                1 0.7264574            -1 -3.541111e-03        5.176448
## 1129                1 0.7208367            -1 -9.161825e-03        5.176448
## 1130                1 0.7417417            -1  1.174323e-02        5.176448
## 1131                1 0.7456073            -1  1.560882e-02        5.176448
## 1132                1 0.7348367            -1  4.838193e-03        5.176448
## 1133                1 0.7198473            -1 -1.015118e-02        5.176448
## 1134                1 0.7102102            -1 -1.978830e-02        5.176448
## 1135                1 0.7242948            -1 -5.703697e-03        5.176448
## 1136                1 0.7371988            -1  7.200285e-03        5.176448
## 1137                1 0.7311828            -1  1.184286e-03        5.176448
## 1138                1 0.7534965            -1  2.349799e-02        5.176448
## 1142                1 0.7431907            -1  1.319215e-02        5.176448
## 1143                1 0.7223494            -1 -7.649158e-03        5.176448
## 1144                1 0.7283610            -1 -1.637552e-03        5.176448
## 1146                1 0.7589425            -1  2.894395e-02        5.176448
## 1148                1 0.7612958            -1  3.129731e-02        5.176448
## 1155                1 0.7388724            -1  8.873894e-03        5.176448
## 1156                1 0.7321572            -1  2.158667e-03        5.176448
## 1158                1 0.7455859            -1  1.558736e-02        5.176448
## 1160                1 0.7330017            -1  3.003148e-03        5.176448
## 1161                1 0.7129456            -1 -1.705292e-02        5.176448
## 1162                1 0.7428139            -1  1.281541e-02        5.176448
## 1164                1 0.7238095            -1 -6.188986e-03        5.176448
## 1166                1 0.7283333            -1 -1.665177e-03        5.176448
## 1167                1 0.7409588            -1  1.096028e-02        5.176448
## 1170                1 0.7381490            -1  8.150474e-03        5.176448
## 1174                1 0.7230896            -1 -6.908946e-03        5.176448
## 1176                1 0.7534581            -1  2.345959e-02        5.176448
## 1177                1 0.7550505            -1  2.505200e-02        5.176448
## 1178                1 0.7543554            -1  2.435689e-02        5.176448
## 1179                1 0.7851171            -1  5.511855e-02        5.176448
## 1180                1 0.7344589            -1  4.460431e-03        5.176448
## 1181                1 0.7321594            -1  2.160897e-03        5.176448
## 1182                1 0.7704213            -1  4.042281e-02        5.176448
## 1185                1 0.7506449            -1  2.064637e-02        5.176448
## 1186                1 0.7430213            -1  1.302284e-02        5.176448
## 1188                1 0.7479853            -1  1.798684e-02        5.176448
## 1189                1 0.7463235            -1  1.632502e-02        5.176448
## 1191                1 0.7577365            -1  2.773801e-02        5.176448
## 1192                1 0.7776831            -1  4.768462e-02        5.176448
## 1193                1 0.7624683            -1  3.246979e-02        5.176448
## 1194                1 0.7508503            -1  2.085183e-02        5.176448
## 1203                1 0.7346780            -1  4.679535e-03        5.176448
## 1204                1 0.6998208            -1 -3.017772e-02        5.176448
## 1205                1 0.7498150            -1  1.981644e-02        5.176448
## 1208                1 0.7330233            -1  3.024746e-03        5.176448
## 1209                1 0.7090592            -1 -2.093928e-02        5.176448
## 1210                1 0.7321579            -1  2.159341e-03        5.176448
## 1213                1 0.7482242            -1  1.822564e-02        5.176448
## 1215                1 0.7427598            -1  1.276129e-02        5.176448
## 1217                1 0.7123288            -1 -1.766974e-02        5.176448
## 1219                1 0.7489879            -1  1.898934e-02        5.176448
## 1221                1 0.7225657            -1 -7.432822e-03        5.176448
## 1222                1 0.7244034            -1 -5.595123e-03        5.176448
## 1225                1 0.7187500            -1 -1.124851e-02        5.176448
## 1228                1 0.7306809            -1  6.824387e-04        5.176448
## 1230                1 0.7526042            -1  2.260566e-02        5.176448
## 1235                1 0.7406523            -1  1.065384e-02        5.176448
## 1238                1 0.7078289            -1 -2.216962e-02        5.176448
## 1239                1 0.7574692            -1  2.747073e-02        5.176448
## 1241                1 0.7471074            -1  1.710893e-02        5.176448
## 1246                1 0.7250958            -1 -4.902725e-03        5.176448
## 1247                1 0.7132806            -1 -1.671795e-02        5.176448
## 1248                1 0.7003205            -1 -2.967800e-02        5.176448
## 1249                1 0.7325581            -1  2.559630e-03        5.176448
## 1250                1 0.7225806            -1 -7.417865e-03        5.176448
## 1252                1 0.7195572            -1 -1.044131e-02        5.176448
## 1253                1 0.7246141            -1 -5.384375e-03        5.176448
## 1255                1 0.7512275            -1  2.122899e-02        5.176448
## 1257                1 0.7407407            -1  1.074223e-02        5.176448
## 1258                1 0.7454545            -1  1.545604e-02        5.176448
## 1268                1 0.7645503            -1  3.455175e-02        5.176448
## 1272                1 0.7451344            -1  1.513587e-02        5.176448
## 1276                1 0.7156627            -1 -1.433586e-02        5.176448
## 1281                1 0.7296490            -1 -3.495182e-04        5.176448
## 1285                1 0.7645951            -1  3.459659e-02        5.176448
## 1289                1 0.7486085            -1  1.861002e-02        5.176448
## 1290                1 0.7413648            -1  1.136628e-02        5.176448
## 1291                1 0.7481297            -1  1.813117e-02        5.176448
## 1292                1 0.7229021            -1 -7.096412e-03        5.176448
## 1294                1 0.7273504            -1 -2.648083e-03        5.176448
## 1295                1 0.7270710            -1 -2.927504e-03        5.176448
## 1296                1 0.7162162            -1 -1.378229e-02        5.176448
## 1297                1 0.7240031            -1 -5.995383e-03        5.176448
## 1298                1 0.7338583            -1  3.859758e-03        5.176448
## 1299                1 0.7400307            -1  1.003216e-02        5.176448
## 1300                1 0.7334725            -1  3.474002e-03        5.176448
## 1301                1 0.7476715            -1  1.767295e-02        5.176448
## 1302                1 0.7420886            -1  1.209010e-02        5.176448
## 1303                1 0.7382075            -1  8.209037e-03        5.176448
## 1304                1 0.7613919            -1  3.139337e-02        5.176448
## 1306                1 0.7289474            -1 -1.051142e-03        5.176448
## 1307                1 0.7641509            -1  3.415243e-02        5.176448
## 1308                1 0.7401316            -1  1.013307e-02        5.176448
## 1309                1 0.7425204            -1  1.252189e-02        5.176448
## 1310                1 0.7474081            -1  1.740960e-02        5.176448
## 1311                1 0.7226107            -1 -7.387787e-03        5.176448
## 1312                1 0.7372817            -1  7.283191e-03        5.176448
## 1313                1 0.7580128            -1  2.801431e-02        5.176448
## 1315                1 0.7344173            -1  4.418834e-03        5.176448
## 1316                1 0.7762408            -1  4.624234e-02        5.176448
## 1317                1 0.7402235            -1  1.022495e-02        5.176448
## 1318                1 0.7362849            -1  6.286379e-03        5.176448
## 1319                1 0.7214854            -1 -8.513099e-03        5.176448
## 1320                1 0.7420382            -1  1.203971e-02        5.176448
## 1321                1 0.7416667            -1  1.166816e-02        5.176448
## 1322                1 0.7043974            -1 -2.560112e-02        5.176448
## 1323                1 0.7282769            -1 -1.721632e-03        5.176448
## 1324                1 0.7169650            -1 -1.303346e-02        5.176448
## 1325                1 0.7121867            -1 -1.781182e-02        5.176448
## 1326                1 0.7428127            -1  1.281423e-02        5.176448
## 1327                1 0.7427568            -1  1.275829e-02        5.176448
## 1328                1 0.7226814            -1 -7.317151e-03        5.176448
## 1329                1 0.7369208            -1  6.922267e-03        5.176448
## 1330                1 0.7505957            -1  2.059720e-02        5.176448
## 1331                1 0.7406417            -1  1.064320e-02        5.176448
## 1332                1 0.7164907            -1 -1.350785e-02        5.176448
## 1333                1 0.7127753            -1 -1.722318e-02        5.176448
## 1334                1 0.7521739            -1  2.217540e-02        5.176448
## 1335                1 0.7706735            -1  4.067498e-02        5.176448
## 1336                1 0.7273519            -1 -2.646594e-03        5.176448
## 1337                1 0.7409012            -1  1.090270e-02        5.176448
## 1338                1 0.7418182            -1  1.181967e-02        5.176448
## 1340                1 0.7322212            -1  2.222737e-03        5.176448
## 1341                1 0.7462817            -1  1.628320e-02        5.176448
## 1343                1 0.7430390            -1  1.304047e-02        5.176448
## 1344                1 0.7447552            -1  1.475673e-02        5.176448
## 1346                1 0.7445394            -1  1.454090e-02        5.176448
## 1347                1 0.7448000            -1  1.480149e-02        5.176448
## 1349                1 0.7186184            -1 -1.138014e-02        5.176448
## 1354                1 0.7126342            -1 -1.736432e-02        5.176448
## 1355                1 0.7077224            -1 -2.227612e-02        5.176448
## 1356                1 0.7353383            -1  5.339836e-03        5.176448
## 1357                1 0.7480127            -1  1.801421e-02        5.176448
## 1358                1 0.7352298            -1  5.231249e-03        5.176448
## 1361                1 0.7342908            -1  4.292334e-03        5.176448
## 1364                1 0.7251755            -1 -4.822983e-03        5.176448
## 1365                1 0.7342723            -1  4.273790e-03        5.176448
## 1367                1 0.7263763            -1 -3.622175e-03        5.176448
## 1368                1 0.7183227            -1 -1.167581e-02        5.176448
## 1369                1 0.7303006            -1  3.020586e-04        5.176448
## 1370                1 0.7254902            -1 -4.508314e-03        5.176448
## 1371                1 0.7371681            -1  7.169632e-03        5.176448
## 1372                1 0.7318436            -1  1.845065e-03        5.176448
## 1375                1 0.7299904            -1 -8.153216e-06        5.176448
## 1545                1 0.7430314            -1  1.303285e-02        1.176448
## 1546                1 0.7182852            -1 -1.171330e-02        1.176448
## 1547                1 0.7273437            -1 -2.654760e-03        1.176448
## 1549                1 0.7329975            -1  2.998971e-03        1.176448
## 1550                1 0.7260274            -1 -3.971113e-03        1.176448
## 1552                1 0.7202029            -1 -9.795636e-03        1.176448
## 1553                1 0.7517510            -1  2.175246e-02        1.176448
## 1554                1 0.7278008            -1 -2.197680e-03        1.176448
## 1555                1 0.7222222            -1 -7.776288e-03        1.176448
## 1556                1 0.7230624            -1 -6.936128e-03        1.176448
## 1557                1 0.7265886            -1 -3.409881e-03        1.176448
## 1558                1 0.7248062            -1 -5.192308e-03        1.176448
## 1559                1 0.7420814            -1  1.208294e-02        1.176448
## 1560                1 0.7210574            -1 -8.941081e-03        1.176448
## 1562                1 0.7263242            -1 -3.674272e-03        1.176448
## 1563                1 0.7032419            -1 -2.675661e-02        1.176448
## 1565                1 0.7508772            -1  2.087868e-02        1.176448
## 1566                1 0.7288557            -1 -1.142789e-03        1.176448
## 1567                1 0.7429379            -1  1.293934e-02        1.176448
## 1568                1 0.7431018            -1  1.310330e-02        1.176448
## 1569                1 0.7317732            -1  1.774667e-03        1.176448
## 1571                1 0.7259317            -1 -4.066833e-03        1.176448
## 1572                1 0.6829060            -1 -4.709253e-02        1.176448
## 1573                1 0.7354015            -1  5.402950e-03        1.176448
## 1574                1 0.7258065            -1 -4.192058e-03        1.176448
## 1575                1 0.7189277            -1 -1.107081e-02        1.176448
## 1576                1 0.7231013            -1 -6.897244e-03        1.176448
## 1577                1 0.7220733            -1 -7.925230e-03        1.176448
## 1578                1 0.7458223            -1  1.582383e-02        1.176448
## 1579                1 0.7378401            -1  7.841556e-03        1.176448
## 1580                1 0.7092391            -1 -2.075938e-02        1.176448
## 1581                1 0.7255917            -1 -4.406794e-03        1.176448
## 1582                1 0.7251732            -1 -4.825300e-03        1.176448
## 1583                1 0.7290941            -1 -9.044334e-04        1.176448
## 1584                1 0.7273576            -1 -2.640900e-03        1.176448
## 1585                1 0.7272727            -1 -2.725783e-03        1.176448
## 1586                1 0.7288961            -1 -1.102406e-03        1.176448
## 1587                1 0.7794830            -1  4.948453e-02        1.176448
## 1589                1 0.7658802            -1  3.588171e-02        1.176448
## 1590                1 0.7249451            -1 -5.053375e-03        1.176448
## 1591                1 0.7342105            -1  4.212016e-03        1.176448
## 1592                1 0.7422868            -1  1.228824e-02        1.176448
## 1593                1 0.7308010            -1  8.024809e-04        1.176448
## 1594                1 0.7265388            -1 -3.459660e-03        1.176448
## 1595                1 0.7298216            -1 -1.769297e-04        1.176448
## 1596                1 0.7270030            -1 -2.995543e-03        1.176448
## 1597                1 0.7529096            -1  2.291107e-02        1.176448
## 1598                1 0.7343396            -1  4.341113e-03        1.176448
## 1599                1 0.7069510            -1 -2.304748e-02        1.176448
## 1600                1 0.7236599            -1 -6.338621e-03        1.176448
## 1601                1 0.7288274            -1 -1.171148e-03        1.176448
## 1602                1 0.7317073            -1  1.708807e-03        1.176448
## 1603                1 0.7354346            -1  5.436065e-03        1.176448
## 1605                1 0.7280551            -1 -1.943433e-03        1.176448
## 1607                1 0.7336562            -1  3.657664e-03        1.176448
## 1608                1 0.7546337            -1  2.463521e-02        1.176448
## 1610                1 0.7341270            -1  4.128474e-03        1.176448
## 1611                1 0.7260174            -1 -3.981068e-03        1.176448
## 1612                1 0.7197758            -1 -1.022269e-02        1.176448
## 1613                1 0.7352138            -1  5.215321e-03        1.176448
## 1614                1 0.7492958            -1  1.929726e-02        1.176448
## 1615                1 0.7365591            -1  6.560630e-03        1.176448
## 1616                1 0.7293777            -1 -6.207966e-04        1.176448
## 1617                1 0.7238938            -1 -6.104705e-03        1.176448
## 1618                1 0.7293355            -1 -6.630157e-04        1.176448
## 1620                1 0.7336207            -1  3.622180e-03        1.176448
## 1621                1 0.6951103            -1 -3.488825e-02        1.176448
## 1622                1 0.7352399            -1  5.241342e-03        1.176448
## 1624                1 0.7177489            -1 -1.224959e-02        1.176448
## 1625                1 0.7307380            -1  7.395273e-04        1.176448
## 1626                1 0.7184874            -1 -1.151112e-02        1.176448
## 1627                1 0.7355932            -1  5.594710e-03        1.176448
## 1628                1 0.7343750            -1  4.376490e-03        1.176448
## 1629                1 0.7227414            -1 -7.257077e-03        1.176448
## 1630                1 0.7487437            -1  1.874521e-02        1.176448
## 1631                1 0.7331164            -1  3.117845e-03        1.176448
## 1632                1 0.7259395            -1 -4.059005e-03        1.176448
## 1634                1 0.7468776            -1  1.687909e-02        1.176448
## 1635                1 0.7255049            -1 -4.493648e-03        1.176448
## 1636                1 0.6691297            -1 -6.086879e-02        1.176448
## 1641                1 0.7521802            -1  2.218172e-02        1.176448
## 1642                1 0.7282780            -1 -1.720469e-03        1.176448
## 1643                1 0.7223282            -1 -7.670266e-03        1.176448
## 1644                1 0.7529215            -1  2.292303e-02        1.176448
## 1645                1 0.7409326            -1  1.093413e-02        1.176448
## 1646                1 0.7159265            -1 -1.407202e-02        1.176448
## 1647                1 0.7318909            -1  1.892365e-03        1.176448
## 1648                1 0.7413666            -1  1.136813e-02        1.176448
## 1651                1 0.7240076            -1 -5.990949e-03        1.176448
## 1652                1 0.7356230            -1  5.624493e-03        1.176448
## 1654                1 0.7027281            -1 -2.727038e-02        1.176448
## 1655                1 0.7427481            -1  1.274958e-02        1.176448
## 1656                1 0.7388290            -1  8.830458e-03        1.176448
## 1657                1 0.7538200            -1  2.382152e-02        1.176448
## 1658                1 0.7539185            -1  2.391999e-02        1.176448
## 1659                1 0.7365217            -1  6.523229e-03        1.176448
## 1660                1 0.7446982            -1  1.469970e-02        1.176448
## 1661                1 0.7402689            -1  1.027042e-02        1.176448
## 1662                1 0.7569386            -1  2.694009e-02        1.176448
## 1663                1 0.7380952            -1  8.096728e-03        1.176448
## 1664                1 0.7313559            -1  1.357422e-03        1.176448
## 1665                1 0.7412162            -1  1.121771e-02        1.176448
## 1666                1 0.7391304            -1  9.131925e-03        1.176448
## 1667                1 0.7597449            -1  2.974635e-02        1.176448
## 1668                1 0.7528180            -1  2.281953e-02        1.176448
## 1669                1 0.7612958            -1  3.129731e-02        1.176448
## 1670                1 0.7314365            -1  1.437992e-03        1.176448
## 1671                1 0.7317909            -1  1.792407e-03        1.176448
## 1672                1 0.7425249            -1  1.252641e-02        1.176448
## 1673                1 0.7397035            -1  9.704950e-03        1.176448
## 1674                1 0.7364341            -1  6.435599e-03        1.176448
## 1675                1 0.7558442            -1  2.584565e-02        1.176448
## 1676                1 0.7628774            -1  3.287893e-02        1.176448
## 1677                1 0.7517883            -1  2.178976e-02        1.176448
## 1678                1 0.7444840            -1  1.448548e-02        1.176448
## 1679                1 0.7467043            -1  1.670582e-02        1.176448
## 1680                1 0.7306088            -1  6.103307e-04        1.176448
## 1681                1 0.7605432            -1  3.054474e-02        1.176448
## 1682                1 0.7326159            -1  2.617384e-03        1.176448
## 1683                1 0.7576419            -1  2.764341e-02        1.176448
## 1684                1 0.7415079            -1  1.150936e-02        1.176448
## 1685                1 0.7208791            -1 -9.119389e-03        1.176448
## 1686                1 0.7326007            -1  2.602223e-03        1.176448
## 1687                1 0.7335025            -1  3.504028e-03        1.176448
## 1688                1 0.7536982            -1  2.369971e-02        1.176448
## 1689                1 0.7381356            -1  8.137083e-03        1.176448
## 1690                1 0.7255575            -1 -4.441049e-03        1.176448
## 1691                1 0.7384506            -1  8.452094e-03        1.176448
## 1692                1 0.7526965            -1  2.269795e-02        1.176448
## 1693                1 0.7488626            -1  1.886409e-02        1.176448
## 1694                1 0.7085714            -1 -2.142708e-02        1.176448
## 1695                1 0.7565359            -1  2.653744e-02        1.176448
## 1696                1 0.7500000            -1  2.000149e-02        1.176448
## 1697                1 0.7339939            -1  3.995392e-03        1.176448
## 1698                1 0.7592727            -1  2.927422e-02        1.176448
## 1699                1 0.7373004            -1  7.301925e-03        1.176448
## 1700                1 0.7337826            -1  3.784135e-03        1.176448
## 1701                1 0.7404817            -1  1.048323e-02        1.176448
## 1702                1 0.7618637            -1  3.186517e-02        1.176448
## 1703                1 0.7272727            -1 -2.725783e-03        1.176448
## 1704                1 0.7372323            -1  7.233780e-03        1.176448
## 1705                1 0.7553427            -1  2.534416e-02        1.176448
## 1706                1 0.7612854            -1  3.128688e-02        1.176448
## 1707                1 0.7378965            -1  7.897984e-03        1.176448
## 1708                1 0.7482185            -1  1.822002e-02        1.176448
## 1709                1 0.7438934            -1  1.389490e-02        1.176448
## 1710                1 0.7192192            -1 -1.077929e-02        1.176448
## 1711                1 0.7148148            -1 -1.518370e-02        1.176448
## 1712                1 0.7602740            -1  3.027546e-02        1.176448
## 1713                1 0.7533156            -1  2.331714e-02        1.176448
## 1714                1 0.7459536            -1  1.595504e-02        1.176448
## 1715                1 0.7361319            -1  6.133424e-03        1.176448
## 1716                1 0.7361436            -1  6.145128e-03        1.176448
## 1717                1 0.7435897            -1  1.359123e-02        1.176448
## 1718                1 0.7533040            -1  2.330545e-02        1.176448
## 1719                1 0.7424658            -1  1.246724e-02        1.176448
## 1720                1 0.7383101            -1  8.311580e-03        1.176448
## 1721                1 0.7408638            -1  1.086528e-02        1.176448
## 1722                1 0.7365685            -1  6.569948e-03        1.176448
## 1723                1 0.7333333            -1  3.334823e-03        1.176448
## 1724                1 0.7555556            -1  2.555705e-02        1.176448
## 1725                1 0.7393258            -1  9.327333e-03        1.176448
## 1726                1 0.7495591            -1  1.956057e-02        1.176448
## 1727                1 0.7317073            -1  1.708807e-03        1.176448
## 1728                1 0.7487223            -1  1.872381e-02        1.176448
## 1729                1 0.7623846            -1  3.238604e-02        1.176448
## 1730                1 0.7256767            -1 -4.321846e-03        1.176448
## 1731                1 0.7317909            -1  1.792407e-03        1.176448
## 1732                1 0.7566225            -1  2.662401e-02        1.176448
## 1733                1 0.7723292            -1  4.233074e-02        1.176448
## 1734                1 0.7442231            -1  1.422460e-02        1.176448
## 1735                1 0.7621671            -1  3.216862e-02        1.176448
## 1736                1 0.7398230            -1  9.824499e-03        1.176448
## 1738                1 0.7188020            -1 -1.119651e-02        1.176448
## 1739                1 0.7107584            -1 -1.924013e-02        1.176448
## 1740                1 0.7171429            -1 -1.285565e-02        1.176448
## 1741                1 0.7367896            -1  6.791121e-03        1.176448
## 1742                1 0.7212355            -1 -8.762989e-03        1.176448
## 1743                1 0.7173709            -1 -1.262762e-02        1.176448
## 1744                1 0.7238395            -1 -6.159014e-03        1.176448
## 1746                1 0.7090592            -1 -2.093928e-02        1.176448
## 1747                1 0.7346939            -1  4.695368e-03        1.176448
## 1748                1 0.7337545            -1  3.756003e-03        1.176448
## 1749                1 0.7152778            -1 -1.472073e-02        1.176448
## 1750                1 0.7217706            -1 -8.227959e-03        1.176448
## 1751                1 0.7402934            -1  1.029485e-02        1.176448
## 1752                1 0.7274920            -1 -2.506549e-03        1.176448
## 1753                1 0.7073579            -1 -2.264065e-02        1.176448
## 1754                1 0.7207063            -1 -9.292250e-03        1.176448
## 1755                1 0.7076112            -1 -2.238736e-02        1.176448
## 1758                1 0.7370184            -1  7.019915e-03        1.176448
## 1759                1 0.7356988            -1  5.700259e-03        1.176448
## 1760                1 0.7133047            -1 -1.669379e-02        1.176448
## 1761                1 0.7080292            -1 -2.196931e-02        1.176448
## 1762                1 0.7323529            -1  2.354431e-03        1.176448
## 1763                1 0.7380216            -1  8.023128e-03        1.176448
## 1764                1 0.7304582            -1  4.597110e-04        1.176448
## 1765                1 0.7345309            -1  4.532428e-03        1.176448
## 1766                1 0.7224299            -1 -7.568603e-03        1.176448
## 1768                1 0.7188353            -1 -1.116321e-02        1.176448
## 1769                1 0.7463415            -1  1.634295e-02        1.176448
## 1770                1 0.7239459            -1 -6.052607e-03        1.176448
## 1771                1 0.7544685            -1  2.446998e-02        1.176448
## 1772                1 0.7277778            -1 -2.220732e-03        1.176448
## 1774                1 0.7304560            -1  4.575160e-04        1.176448
## 1775                1 0.7396664            -1  9.667915e-03        1.176448
## 1776                1 0.7091062            -1 -2.089227e-02        1.176448
## 1779                1 0.7124240            -1 -1.757453e-02        1.176448
## 1780                1 0.7230889            -1 -6.909586e-03        1.176448
## 1782                1 0.7300086            -1  1.008844e-05        1.176448
## 1785                1 0.7289022            -1 -1.096344e-03        1.176448
## 1786                1 0.7483165            -1  1.831799e-02        1.176448
## 1788                1 0.7279480            -1 -2.050506e-03        1.176448
## 1789                1 0.7263158            -1 -3.682721e-03        1.176448
## 1790                1 0.7213687            -1 -8.629795e-03        1.176448
## 1791                1 0.7282986            -1 -1.699899e-03        1.176448
## 1793                1 0.7442244            -1  1.422591e-02        1.176448
## 1800                1 0.7103250            -1 -1.967346e-02        1.176448
## 1802                1 0.7325905            -1  2.592019e-03        1.176448
## 1805                1 0.7183958            -1 -1.160269e-02        1.176448
## 1806                1 0.7003861            -1 -2.961241e-02        1.176448
## 1807                1 0.7232207            -1 -6.777805e-03        1.176448
## 1808                1 0.7284660            -1 -1.532554e-03        1.176448
## 1809                1 0.7579505            -1  2.795202e-02        1.176448
## 1810                1 0.7344130            -1  4.414445e-03        1.176448
## 1811                1 0.7224251            -1 -7.573382e-03        1.176448
## 1812                1 0.7264957            -1 -3.502784e-03        1.176448
## 1813                1 0.7489325            -1  1.893403e-02        1.176448
## 1814                1 0.7040715            -1 -2.592701e-02        1.176448
## 1815                1 0.7218591            -1 -8.139396e-03        1.176448
## 1816                1 0.7578947            -1  2.789623e-02        1.176448
## 1817                1 0.7323280            -1  2.329482e-03        1.176448
## 1819                1 0.7126437            -1 -1.735483e-02        1.176448
## 1821                1 0.7162277            -1 -1.377081e-02        1.176448
## 1822                1 0.7487587            -1  1.876018e-02        1.176448
## 1823                1 0.7332293            -1  3.230819e-03        1.176448
## 1824                1 0.7234814            -1 -6.517096e-03        1.176448
## 1826                1 0.7303840            -1  3.854633e-04        1.176448
## 1827                1 0.7415222            -1  1.152372e-02        1.176448
## 1828                1 0.7299270            -1 -7.150272e-05        1.176448
## 1829                1 0.7298535            -1 -1.450302e-04        1.176448
## 1831                1 0.7309735            -1  9.749413e-04        1.176448
## 1832                1 0.7370856            -1  7.087072e-03        1.176448
## 1833                1 0.7346394            -1  4.640849e-03        1.176448
## 1834                1 0.7255049            -1 -4.493648e-03        1.176448
## 1835                1 0.7333333            -1  3.334823e-03        1.176448
## 1836                1 0.7237922            -1 -6.206350e-03        1.176448
## 1837                1 0.7316017            -1  1.603222e-03        1.176448
## 1838                1 0.7341867            -1  4.188237e-03        1.176448
## 1839                1 0.7330211            -1  3.022567e-03        1.176448
## 1840                1 0.7301205            -1  1.219719e-04        1.176448
## 1842                1 0.7389912            -1  8.992683e-03        1.176448
## 1844                1 0.7173913            -1 -1.260721e-02        1.176448
## 1845                1 0.7258806            -1 -4.117959e-03        1.176448
## 1846                1 0.7383016            -1  8.303050e-03        1.176448
## 1847                1 0.7571036            -1  2.710506e-02        1.176448
## 1848                1 0.7535461            -1  2.354759e-02        1.176448
## 1849                1 0.7328063            -1  2.807814e-03        1.176448
## 1850                1 0.7080901            -1 -2.190843e-02        1.176448
## 1852                1 0.7258687            -1 -4.129784e-03        1.176448
## 1853                1 0.7445186            -1  1.452008e-02        1.176448
## 1854                1 0.7513465            -1  2.134799e-02        1.176448
## 1855                1 0.7285319            -1 -1.466654e-03        1.176448
## 1856                1 0.7213376            -1 -8.660930e-03        1.176448
## 1857                1 0.7285479            -1 -1.450655e-03        1.176448
## 1858                1 0.7142857            -1 -1.571280e-02        1.176448
## 1859                1 0.7298025            -1 -1.959965e-04        1.176448
## 1862                1 0.7310855            -1  1.087016e-03        1.176448
## 1863                1 0.7141732            -1 -1.582528e-02        1.176448
## 1864                1 0.7270660            -1 -2.932551e-03        1.176448
## 1867                1 0.7099036            -1 -2.009492e-02        1.176448
## 1868                1 0.7273504            -1 -2.648083e-03        1.176448
## 1871                1 0.7465157            -1  1.651717e-02        1.176448
## 1874                1 0.7443343            -1  1.433577e-02        1.176448
## 1876                1 0.7382199            -1  8.221385e-03        1.176448
## 1878                1 0.7148289            -1 -1.516961e-02        1.176448
## 1879                1 0.7478921            -1  1.789356e-02        1.176448
## 1881                1 0.7519810            -1  2.198247e-02        1.176448
## 1882                1 0.7367980            -1  6.799478e-03        1.176448
## 1884                1 0.7376923            -1  7.693798e-03        1.176448
## 1885                1 0.7215756            -1 -8.422861e-03        1.176448
## 1887                1 0.7386707            -1  8.672185e-03        1.176448
## 1892                1 0.7117278            -1 -1.827067e-02        1.176448
## 1894                1 0.7373824            -1  7.383868e-03        1.176448
## 1895                1 0.7234226            -1 -6.575865e-03        1.176448
## 1896                1 0.7226971            -1 -7.301454e-03        1.176448
## 1897                1 0.7320789            -1  2.080343e-03        1.176448
## 1898                1 0.7190153            -1 -1.098323e-02        1.176448
## 1901                1 0.7226754            -1 -7.323143e-03        1.176448
## 1905                1 0.7287279            -1 -1.270625e-03        1.176448
## 1907                1 0.7113300            -1 -1.866846e-02        1.176448
## 1912                1 0.7305556            -1  5.570455e-04        1.176448
## 1914                1 0.7419355            -1  1.193697e-02        1.176448
## 1915                1 0.6750547            -1 -5.494381e-02        1.176448
## 1917                1 0.7655293            -1  3.553080e-02        1.176448
## 1918                1 0.7357724            -1  5.773848e-03        1.176448
## 1922                1 0.7403267            -1  1.032823e-02        1.176448
## 1923                1 0.7422764            -1  1.227791e-02        1.176448
## 1924                1 0.7164179            -1 -1.358060e-02        1.176448
## 1925                1 0.7360075            -1  6.008953e-03        1.176448
## 1927                1 0.7349857            -1  4.987191e-03        1.176448
## 1928                1 0.7459854            -1  1.598689e-02        1.176448
## 1929                1 0.7238586            -1 -6.139894e-03        1.176448
## 1930                1 0.7188716            -1 -1.112691e-02        1.176448
## 1933                1 0.7255049            -1 -4.493648e-03        1.176448
## 1935                1 0.7353383            -1  5.339836e-03        1.176448
## 1936                1 0.7374890            -1  7.490515e-03        1.176448
## 1937                1 0.7131648            -1 -1.683373e-02        1.176448
## 1938                1 0.7375000            -1  7.501490e-03        1.176448
## 1939                1 0.7464930            -1  1.649448e-02        1.176448
## 1941                1 0.7398680            -1  9.869539e-03        1.176448
## 1942                1 0.7257683            -1 -4.230189e-03        1.176448
## 1944                1 0.7393238            -1  9.325333e-03        1.176448
## 1945                1 0.7226463            -1 -7.352200e-03        1.176448
## 1946                1 0.7378815            -1  7.882998e-03        1.176448
## 1947                1 0.7341092            -1  4.110711e-03        1.176448
## 1948                1 0.7440571            -1  1.405854e-02        1.176448
## 1949                1 0.7359793            -1  5.980782e-03        1.176448
## 1952                1 0.7203390            -1 -9.659527e-03        1.176448
## 1953                1 0.7266187            -1 -3.379805e-03        1.176448
## 1955                1 0.7375746            -1  7.576043e-03        1.176448
## 1956                1 0.7420109            -1  1.201240e-02        1.176448
## 1958                1 0.7303571            -1  3.586328e-04        1.176448
## 1959                1 0.7206662            -1 -9.332348e-03        1.176448
## 1960                1 0.7423729            -1  1.237437e-02        1.176448
## 1963                1 0.7376284            -1  7.629875e-03        1.176448
## 1964                1 0.7261663            -1 -3.832181e-03        1.176448
## 1965                1 0.7406367            -1  1.063819e-02        1.176448
## 1973                1 0.7226597            -1 -7.338842e-03        1.176448
## 1975                1 0.7109880            -1 -1.901051e-02        2.176448
## 1976                1 0.7506679            -1  2.066934e-02        2.176448
## 1977                1 0.7347280            -1  4.729523e-03        2.176448
## 1978                1 0.7235543            -1 -6.444208e-03        2.176448
## 1979                1 0.7481542            -1  1.815571e-02        2.176448
## 1980                1 0.7311508            -1  1.152284e-03        2.176448
## 1981                1 0.7546218            -1  2.462334e-02        2.176448
## 1982                1 0.7370550            -1  7.056506e-03        2.176448
## 1983                1 0.7550525            -1  2.505404e-02        2.176448
## 1984                1 0.7530775            -1  2.307897e-02        2.176448
## 1985                1 0.7310855            -1  1.087016e-03        2.176448
## 1986                1 0.7272048            -1 -2.793727e-03        2.176448
## 1987                1 0.7356715            -1  5.673004e-03        2.176448
## 1988                1 0.7490465            -1  1.904802e-02        2.176448
## 1989                1 0.7379256            -1  7.927064e-03        2.176448
## 1990                1 0.7163498            -1 -1.364870e-02        2.176448
## 1992                1 0.7354221            -1  5.423596e-03        2.176448
## 1993                1 0.7369323            -1  6.933795e-03        2.176448
## 1994                1 0.7430796            -1  1.308107e-02        2.176448
## 1995                1 0.7502313            -1  2.023276e-02        2.176448
## 1996                1 0.7149201            -1 -1.507844e-02        2.176448
## 1997                1 0.7422680            -1  1.226953e-02        2.176448
## 1998                1 0.7463899            -1  1.639138e-02        2.176448
## 1999                1 0.6988679            -1 -3.113059e-02        2.176448
## 2000                1 0.7429306            -1  1.293208e-02        2.176448
## 2001                1 0.7438095            -1  1.381101e-02        2.176448
## 2002                1 0.7399651            -1  9.966586e-03        2.176448
## 2003                1 0.7128623            -1 -1.713619e-02        2.176448
## 2004                1 0.7020110            -1 -2.798754e-02        2.176448
## 2005                1 0.7371295            -1  7.130975e-03        2.176448
## 2006                1 0.7309237            -1  9.251848e-04        2.176448
## 2007                1 0.7372817            -1  7.283191e-03        2.176448
## 2008                1 0.7574932            -1  2.749468e-02        2.176448
## 2009                1 0.7373311            -1  7.332571e-03        2.176448
## 2010                1 0.7292359            -1 -7.626296e-04        2.176448
## 2011                1 0.7332255            -1  3.227036e-03        2.176448
## 2012                1 0.7377740            -1  7.775520e-03        2.176448
## 2013                1 0.7423409            -1  1.234242e-02        2.176448
## 2014                1 0.7082552            -1 -2.174335e-02        2.176448
## 2015                1 0.7256971            -1 -4.301449e-03        2.176448
## 2016                1 0.7457249            -1  1.572640e-02        2.176448
## 2017                1 0.7467344            -1  1.673589e-02        2.176448
## 2018                1 0.7481343            -1  1.813582e-02        2.176448
## 2019                1 0.7366997            -1  6.701219e-03        2.176448
## 2020                1 0.7421093            -1  1.211080e-02        2.176448
## 2021                1 0.7201087            -1 -9.889814e-03        2.176448
## 2022                1 0.7145422            -1 -1.545632e-02        2.176448
## 2023                1 0.7378211            -1  7.822571e-03        2.176448
## 2024                1 0.7270642            -1 -2.934290e-03        2.176448
## 2025                1 0.7223089            -1 -7.689618e-03        2.176448
## 2026                1 0.7465649            -1  1.656638e-02        2.176448
## 2027                1 0.7360275            -1  6.029005e-03        2.176448
## 2028                1 0.7355865            -1  5.587971e-03        2.176448
## 2029                1 0.7159177            -1 -1.408076e-02        2.176448
## 2031                1 0.7290268            -1 -9.716644e-04        2.176448
## 2032                1 0.7241653            -1 -5.833168e-03        2.176448
## 2033                1 0.7308411            -1  8.426115e-04        2.176448
## 2034                1 0.7448980            -1  1.489945e-02        2.176448
## 2036                1 0.7366483            -1  6.649740e-03        2.176448
## 2037                1 0.7121800            -1 -1.781853e-02        2.176448
## 2038                1 0.7350130            -1  5.014522e-03        2.176448
## 2039                1 0.7255230            -1 -4.475497e-03        2.176448
## 2040                1 0.7289157            -1 -1.082847e-03        2.176448
## 2041                1 0.7190605            -1 -1.093799e-02        2.176448
## 2042                1 0.7194112            -1 -1.058729e-02        2.176448
## 2047                1 0.7219764            -1 -8.022109e-03        2.176448
## 2050                1 0.7213420            -1 -8.656478e-03        2.176448
## 2053                1 0.7186025            -1 -1.139605e-02        2.176448
## 2055                1 0.7319508            -1  1.952335e-03        2.176448
## 2057                1 0.6724587            -1 -5.753978e-02        2.176448
## 2058                1 0.7257384            -1 -4.260113e-03        2.176448
## 2059                1 0.7389801            -1  8.981611e-03        2.176448
## 2062                1 0.7099296            -1 -2.006888e-02        2.176448
## 2064                1 0.7299925            -1 -5.989446e-06        2.176448
## 2065                1 0.7274262            -1 -2.572350e-03        2.176448
## 2069                1 0.7331378            -1  3.139320e-03        2.176448
## 2071                1 0.7292871            -1 -7.114195e-04        2.176448
## 2072                1 0.6951220            -1 -3.487656e-02        2.176448
## 2073                1 0.6856876            -1 -4.431095e-02        2.176448
## 2079                1 0.7286045            -1 -1.394038e-03        2.176448
## 2081                1 0.7147514            -1 -1.524708e-02        2.176448
## 2082                1 0.7292576            -1 -7.408681e-04        2.176448
## 2083                1 0.7314376            -1  1.439089e-03        2.176448
## 2085                1 0.7223608            -1 -7.637745e-03        2.176448
## 2086                1 0.7410972            -1  1.109870e-02        2.176448
## 2087                1 0.7262200            -1 -3.778493e-03        2.176448
## 2088                1 0.7516077            -1  2.160921e-02        2.176448
## 2091                1 0.7080851            -1 -2.191340e-02        2.176448
## 2094                1 0.7484909            -1  1.849244e-02        2.176448
## 2095                1 0.7233542            -1 -6.644278e-03        2.176448
## 2097                1 0.7346780            -1  4.679535e-03        2.176448
## 2099                1 0.7257618            -1 -4.236737e-03        2.176448
## 2101                1 0.7265823            -1 -3.416232e-03        2.176448
## 2103                1 0.7464664            -1  1.646792e-02        2.176448
## 2107                1 0.7317854            -1  1.786918e-03        2.176448
## 2108                1 0.7152542            -1 -1.474427e-02        2.176448
## 2109                1 0.7285602            -1 -1.438321e-03        2.176448
## 2110                1 0.7200350            -1 -9.963514e-03        2.176448
## 2111                1 0.7411652            -1  1.116672e-02        2.176448
## 2112                1 0.7286064            -1 -1.392153e-03        2.176448
## 2113                1 0.7297514            -1 -2.471066e-04        2.176448
## 2115                1 0.7200689            -1 -9.929604e-03        2.176448
## 2116                1 0.7345455            -1  4.546945e-03        2.176448
## 2117                1 0.7432859            -1  1.328743e-02        2.176448
## 2118                1 0.7195208            -1 -1.047772e-02        2.176448
## 2119                1 0.7360754            -1  6.076897e-03        2.176448
## 2120                1 0.7443778            -1  1.437930e-02        2.176448
## 2121                1 0.7293700            -1 -6.285011e-04        2.176448
## 2122                1 0.7428344            -1  1.283588e-02        2.176448
## 2123                1 0.7144026            -1 -1.559589e-02        2.176448
## 2124                1 0.7412468            -1  1.124829e-02        2.176448
## 2125                1 0.7182596            -1 -1.173888e-02        2.176448
## 2126                1 0.7542561            -1  2.425760e-02        2.176448
## 2127                1 0.7233360            -1 -6.662504e-03        2.176448
## 2128                1 0.7132075            -1 -1.679096e-02        2.176448
## 2129                1 0.7386849            -1  8.686375e-03        2.176448
## 2130                1 0.7084421            -1 -2.155639e-02        2.176448
## 2131                1 0.7153218            -1 -1.467666e-02        2.176448
## 2133                1 0.7427773            -1  1.277875e-02        2.176448
## 2134                1 0.7375527            -1  7.554233e-03        2.176448
## 2136                1 0.7167019            -1 -1.329661e-02        2.176448
## 2137                1 0.7200000            -1 -9.998510e-03        2.176448
## 2138                1 0.7076689            -1 -2.232957e-02        2.176448
## 2139                1 0.7472699            -1  1.727138e-02        2.176448
## 2140                1 0.7374429            -1  7.444412e-03        2.176448
## 2141                1 0.7405112            -1  1.051272e-02        2.176448
## 2142                1 0.7340764            -1  4.077923e-03        2.176448
## 2143                1 0.7294900            -1 -5.084878e-04        2.176448
## 2144                1 0.7039106            -1 -2.608790e-02        2.176448
## 2145                1 0.7547826            -1  2.478410e-02        2.176448
## 2146                1 0.7203791            -1 -9.619363e-03        2.176448
## 2147                1 0.7348416            -1  4.843119e-03        2.176448
## 2148                1 0.7238095            -1 -6.188986e-03       -1.823552
## 2149                1 0.7292737            -1 -7.248490e-04       -1.823552
## 2150                1 0.7355534            -1  5.554869e-03       -1.823552
## 2151                1 0.7520416            -1  2.204306e-02       -1.823552
## 2152                1 0.7080994            -1 -2.189907e-02       -1.823552
## 2154                1 0.7438202            -1  1.382171e-02       -1.823552
## 2155                1 0.7186235            -1 -1.137503e-02       -1.823552
## 2156                1 0.7440367            -1  1.403819e-02       -1.823552
## 2157                1 0.7007246            -1 -2.927387e-02       -1.823552
## 2158                1 0.7276423            -1 -2.356234e-03       -1.823552
## 2159                1 0.7419899            -1  1.199137e-02       -1.823552
## 2160                1 0.7101562            -1 -1.984226e-02       -1.823552
## 2161                1 0.7613065            -1  3.130802e-02       -1.823552
## 2162                1 0.7239884            -1 -6.010071e-03       -1.823552
## 2163                1 0.6974249            -1 -3.257362e-02       -1.823552
## 2164                1 0.6979010            -1 -3.209746e-02       -1.823552
## 2165                1 0.7459780            -1  1.597947e-02       -1.823552
## 2166                1 0.7258065            -1 -4.192058e-03       -1.823552
## 2168                1 0.7611056            -1  3.110712e-02       -1.823552
## 2169                1 0.7647929            -1  3.479439e-02       -1.823552
## 2170                1 0.7645723            -1  3.457378e-02       -1.823552
## 2171                1 0.7392593            -1  9.260749e-03       -1.823552
## 2172                1 0.7560166            -1  2.601809e-02       -1.823552
## 2173                1 0.7703349            -1  4.033642e-02       -1.823552
## 2174                1 0.7814570            -1  5.145844e-02       -1.823552
## 2175                1 0.7228145            -1 -7.184011e-03       -1.823552
## 2176                1 0.7252396            -1 -4.758893e-03       -1.823552
## 2177                1 0.7068202            -1 -2.317832e-02       -1.823552
## 2178                1 0.7546174            -1  2.461890e-02       -1.823552
## 2179                1 0.7810219            -1  5.102339e-02       -1.823552
## 2180                1 0.7615554            -1  3.155688e-02       -1.823552
## 2181                1 0.7309322            -1  9.336934e-04       -1.823552
## 2182                1 0.7184913            -1 -1.150725e-02       -1.823552
## 2183                1 0.7473884            -1  1.738990e-02       -1.823552
## 2184                1 0.7135325            -1 -1.646600e-02       -1.823552
## 2185                1 0.7472608            -1  1.726226e-02       -1.823552
## 2186                1 0.8000000            -1  7.000149e-02       -1.823552
## 2187                1 0.7451524            -1  1.515384e-02       -1.823552
## 2188                1 0.7298070            -1 -1.915050e-04       -1.823552
## 2189                1 0.7614035            -1  3.140500e-02       -1.823552
## 2190                1 0.7416534            -1  1.165491e-02       -1.823552
## 2191                1 0.7304965            -1  4.979439e-04       -1.823552
## 2192                1 0.7398794            -1  9.880904e-03       -1.823552
## 2193                1 0.7425044            -1  1.250590e-02       -1.823552
## 2194                1 0.7596224            -1  2.962386e-02       -1.823552
## 2195                1 0.7220566            -1 -7.941878e-03       -1.823552
## 2196                1 0.7150396            -1 -1.495893e-02       -1.823552
## 2198                1 0.7146643            -1 -1.533420e-02       -1.823552
## 2199                1 0.6282225            -1 -1.017760e-01       -1.823552
## 2200                1 0.7025692            -1 -2.742934e-02       -1.823552
## 2201                1 0.7282717            -1 -1.726782e-03       -1.823552
## 2202                1 0.7384342            -1  8.435654e-03       -1.823552
## 2204                1 0.6333333            -1 -9.666518e-02       -1.823552
## 2212                1 0.7354597            -1  5.461152e-03       -1.823552
## 2213                1 0.6876764            -1 -4.232212e-02       -1.823552
## 2218                1 0.6981740            -1 -3.182450e-02       -1.823552
## 2219                1 0.7419608            -1  1.196227e-02       -1.823552
## 2220                1 0.7348837            -1  4.885211e-03       -1.823552
## 2221                1 0.7154073            -1 -1.459125e-02       -1.823552
## 2228                1 0.7037037            -1 -2.629481e-02       -1.823552
## 2232                1 0.7330612            -1  3.062714e-03       -1.823552
## 2233                1 0.7282609            -1 -1.737640e-03       -1.823552
## 2234                1 0.7044088            -1 -2.558969e-02       -1.823552
## 2235                1 0.7234886            -1 -6.509907e-03       -1.823552
## 2237                1 0.7488667            -1  1.886822e-02       -1.823552
## 2238                1 0.7198642            -1 -1.013433e-02       -1.823552
## 2240                1 0.7136294            -1 -1.636911e-02       -1.823552
## 2245                1 0.7348837            -1  4.885211e-03       -1.823552
## 2247                1 0.7112971            -1 -1.870144e-02       -1.823552
## 2251                1 0.7456814            -1  1.568287e-02       -1.823552
## 2256                1 0.7373930            -1  7.394449e-03       -1.823552
## 2261                1 0.7049892            -1 -2.500936e-02       -1.823552
## 2262                1 0.7218167            -1 -8.181803e-03       -1.823552
## 2263                1 0.7214217            -1 -8.576800e-03       -1.823552
## 2266                1 0.7511521            -1  2.115356e-02       -1.823552
## 2268                1 0.7318966            -1  1.898042e-03       -1.823552
## 2270                1 0.7163886            -1 -1.360989e-02       -1.823552
## 2274                1 0.7071307            -1 -2.286778e-02       -1.823552
## 2282                1 0.6920700            -1 -3.792848e-02       -1.823552
## 2285                1 0.7504409            -1  2.044241e-02       -1.823552
## 2288                1 0.7218814            -1 -8.117119e-03       -1.823552
## 2291                1 0.7287986            -1 -1.199923e-03       -1.823552
## 2292                1 0.7223214            -1 -7.677081e-03       -1.823552
## 2293                1 0.6649077            -1 -6.509086e-02       -1.823552
## 2294                1 0.7401575            -1  1.015897e-02       -1.823552
## 2295                1 0.7307692            -1  7.707208e-04       -1.823552
## 2296                1 0.7419112            -1  1.191270e-02       -1.823552
## 2297                1 0.7701674            -1  4.016892e-02       -1.823552
## 2298                1 0.7520216            -1  2.202305e-02       -1.823552
## 2300                1 0.7256146            -1 -4.383918e-03       -1.823552
## 2302                1 0.7505361            -1  2.053759e-02       -1.823552
## 2305                1 0.7869362            -1  5.693773e-02       -1.823552
## 2306                1 0.7354892            -1  5.490711e-03       -1.823552
## 2308                1 0.7521127            -1  2.211417e-02       -1.823552
## 2310                1 0.7176938            -1 -1.230467e-02       -1.823552
## 2312                1 0.6720387            -1 -5.795983e-02       -1.823552
## 2313                1 0.7695035            -1  3.950504e-02       -1.823552
## 2314                1 0.7227723            -1 -7.226233e-03       -1.823552
## 2315                1 0.7533074            -1  2.330888e-02       -1.823552
## 2316                1 0.7442681            -1  1.426957e-02       -1.823552
## 2317                1 0.7376362            -1  7.637701e-03       -1.823552
## 2318                1 0.7921862            -1  6.218769e-02       -1.823552
## 2319                1 0.7140335            -1 -1.596497e-02       -1.823552
## 2320                1 0.7589520            -1  2.895346e-02       -1.823552
## 2321                1 0.7216730            -1 -8.325506e-03       -1.823552
## 2322                1 0.7409406            -1  1.094212e-02       -1.823552
## 2323                1 0.5773723            -1 -1.526262e-01       -1.823552
## 2324                1 0.7387068            -1  8.708310e-03       -1.823552
## 2325                1 0.6726804            -1 -5.731810e-02       -1.823552
## 2326                1 0.7194313            -1 -1.056723e-02       -1.823552
## 2327                1 0.7363834            -1  6.384932e-03       -1.823552
## 2328                1 0.8057090            -1  7.571051e-02       -1.823552
## 2329                1 0.6623794            -1 -6.761909e-02       -1.823552
## 2330                1 0.7625123            -1  3.251376e-02       -1.823552
## 2331                1 0.7823315            -1  5.233300e-02       -1.823552
## 2332                1 0.7243755            -1 -5.622972e-03       -1.823552
## 2333                1 0.7648013            -1  3.480279e-02       -1.823552
## 2334                1 0.7372948            -1  7.296252e-03       -1.823552
## 2335                1 0.7704160            -1  4.041751e-02       -1.823552
## 2337                1 0.7638279            -1  3.382941e-02       -1.823552
## 2338                1 0.7473364            -1  1.733787e-02       -1.823552
## 2340                1 0.7569204            -1  2.692191e-02       -1.823552
## 2342                1 0.7051071            -1 -2.489143e-02       -1.823552
## 2343                1 0.7694195            -1  3.942095e-02       -1.823552
## 2344                1 0.7171053            -1 -1.289325e-02       -1.823552
## 2345                1 0.7327905            -1  2.792016e-03       -1.823552
## 2346                1 0.7009937            -1 -2.900483e-02       -1.823552
## 2347                1 0.7055436            -1 -2.445495e-02       -1.823552
## 2348                1 0.7900656            -1  6.006709e-02       -1.823552
## 2349                1 0.7813248            -1  5.132631e-02       -1.823552
## 2350                1 0.7121076            -1 -1.789089e-02       -1.823552
## 2351                1 0.7535680            -1  2.356952e-02       -1.823552
## 2352                1 0.7302128            -1  2.142559e-04       -1.823552
## 2353                1 0.7368889            -1  6.890379e-03       -1.823552
## 2354                1 0.7074303            -1 -2.256817e-02       -1.823552
## 2355                1 0.7329843            -1  2.985783e-03       -1.823552
## 2356                1 0.7285156            -1 -1.482885e-03       -1.823552
## 2357                1 0.7349081            -1  4.909626e-03       -1.823552
## 2359                1 0.7322581            -1  2.259555e-03       -1.823552
## 2361                1 0.7336957            -1  3.697142e-03       -1.823552
## 2362                1 0.7448680            -1  1.486953e-02       -1.823552
## 2363                1 0.7344322            -1  4.433724e-03       -1.823552
## 2365                1 0.7325142            -1  2.515668e-03       -1.823552
## 2366                1 0.7356828            -1  5.684309e-03       -1.823552
## 2367                1 0.7267327            -1 -3.265837e-03       -1.823552
## 2368                1 0.7306931            -1  6.945593e-04       -1.823552
## 2370                1 0.7433628            -1  1.336432e-02       -1.823552
## 2371                1 0.7181996            -1 -1.179890e-02       -1.823552
## 2372                1 0.7354781            -1  5.479595e-03       -1.823552
## 2373                1 0.7415254            -1  1.152691e-02       -1.823552
## 2374                1 0.7437050            -1  1.370653e-02       -1.823552
## 2376                1 0.7409949            -1  1.099634e-02       -1.823552
## 2379                1 0.7278598            -1 -2.138731e-03       -1.823552
## 2381                1 0.7334983            -1  3.499840e-03       -1.823552
## 2383                1 0.7130841            -1 -1.691440e-02       -1.823552
## 2386                1 0.7084421            -1 -2.155639e-02       -1.823552
## 2387                1 0.7686769            -1  3.867836e-02       -1.823552
## 2388                1 0.7414773            -1  1.147876e-02       -1.823552
## 2389                1 0.7189189            -1 -1.107959e-02       -1.823552
## 2390                1 0.7400332            -1  1.003471e-02       -1.823552
## 2391                1 0.7324066            -1  2.408093e-03       -1.823552
## 2392                1 0.7330961            -1  3.097575e-03       -1.823552
## 2394                1 0.7236629            -1 -6.335625e-03       -1.823552
## 2395                1 0.7084548            -1 -2.154370e-02       -1.823552
## 2398                1 0.7051971            -1 -2.480138e-02       -1.823552
## 2399                1 0.7201717            -1 -9.826836e-03       -1.823552
## 2400                1 0.7215496            -1 -8.448873e-03       -1.823552
## 2401                1 0.7430221            -1  1.302363e-02       -1.823552
## 2403                1 0.7239459            -1 -6.052607e-03       -1.823552
## 2404                1 0.7321966            -1  2.198080e-03       -1.823552
## 2406                1 0.7366412            -1  6.642711e-03       -1.823552
## 2408                1 0.7402985            -1  1.030000e-02       -1.823552
## 2409                1 0.7293233            -1 -6.752017e-04       -1.823552
## 2410                1 0.7092803            -1 -2.071821e-02       -1.823552
## 2417                1 0.7323601            -1  2.361587e-03       -1.823552
## 2418                1 0.6989652            -1 -3.103332e-02       -1.823552
## 2420                1 0.7303183            -1  3.197479e-04       -1.823552
## 2421                1 0.7188638            -1 -1.113471e-02       -1.823552
## 2422                1 0.7353595            -1  5.361016e-03       -1.823552
## 2423                1 0.7140204            -1 -1.597808e-02       -1.823552
## 2425                1 0.7387718            -1  8.773259e-03       -1.823552
## 2428                1 0.7365945            -1  6.596034e-03       -1.823552
## 2429                1 0.7488550            -1  1.885645e-02       -1.823552
## 2431                1 0.7230911            -1 -6.907434e-03       -1.823552
## 2432                1 0.7295720            -1 -4.265256e-04       -1.823552
## 2434                1 0.7145558            -1 -1.544274e-02       -1.823552
## 2436                1 0.7379492            -1  7.950657e-03       -1.823552
## 2439                1 0.7153488            -1 -1.464967e-02       -1.823552
## 2440                1 0.7257426            -1 -4.255936e-03       -1.823552
## 2441                1 0.7252252            -1 -4.773285e-03       -1.823552
## 2447                1 0.7326203            -1  2.621811e-03       -1.823552
## 2452                1 0.7231057            -1 -6.892804e-03       -1.823552
## 2456                1 0.7348367            -1  4.838193e-03       -1.823552
## 2457                1 0.7303263            -1  3.277856e-04       -1.823552
## 2459                1 0.7346939            -1  4.695368e-03       -1.823552
## 2466                1 0.7223567            -1 -7.641771e-03       -1.823552
## 2469                1 0.7192704            -1 -1.072809e-02       -1.823552
## 2470                1 0.7286245            -1 -1.373975e-03       -1.823552
## 2472                1 0.7286713            -1 -1.327181e-03       -1.823552
## 2473                1 0.7454395            -1  1.544096e-02       -1.823552
## 2476                1 0.7370184            -1  7.019915e-03       -1.823552
## 2477                1 0.7409747            -1  1.097622e-02       -1.823552
## 2478                1 0.7132293            -1 -1.676926e-02       -1.823552
## 2479                1 0.7309762            -1  9.776622e-04       -1.823552
## 2480                1 0.7433309            -1  1.333242e-02       -1.823552
## 2482                1 0.7280072            -1 -1.991329e-03       -1.823552
## 2484                1 0.7200350            -1 -9.963514e-03       -1.823552
## 2487                1 0.6995595            -1 -3.043904e-02       -1.823552
## 2496                1 0.7376147            -1  7.616169e-03       -1.823552
## 2497                1 0.7365542            -1  6.555729e-03       -1.823552
## 2498                1 0.7170418            -1 -1.295671e-02       -1.823552
## 2499                1 0.7252664            -1 -4.732148e-03       -1.823552
## 2501                1 0.7349398            -1  4.941249e-03       -1.823552
## 2502                1 0.7196122            -1 -1.038628e-02       -1.823552
## 2503                1 0.7206349            -1 -9.363589e-03       -1.823552
## 2504                1 0.7259912            -1 -4.007321e-03       -1.823552
## 2505                1 0.7230624            -1 -6.936128e-03       -1.823552
## 2507                1 0.7263844            -1 -3.614145e-03       -1.823552
## 2510                1 0.7164907            -1 -1.350785e-02       -1.823552
## 2512                1 0.7400881            -1  1.008960e-02       -1.823552
## 2514                1 0.7436293            -1  1.363083e-02       -1.823552
## 2518                1 0.7437500            -1  1.375149e-02       -1.823552
## 2519                1 0.7289157            -1 -1.082847e-03       -1.823552
## 2521                1 0.7311234            -1  1.124879e-03       -1.823552
## 2523                1 0.7308378            -1  8.392796e-04       -1.823552
## 2524                1 0.7260035            -1 -3.995020e-03       -1.823552
## 2525                1 0.7064039            -1 -2.359457e-02       -1.823552
## 2526                1 0.7419614            -1  1.196290e-02       -1.823552
## 2527                1 0.7375887            -1  7.590142e-03       -1.823552
## 2530                1 0.7128794            -1 -1.711910e-02       -1.823552
## 2535                1 0.7245601            -1 -5.438449e-03       -1.823552
## 2537                1 0.7292994            -1 -6.991470e-04       -1.823552
## 2541                1 0.7388193            -1  8.820810e-03       -1.823552
## 2543                1 0.7440213            -1  1.402275e-02       -1.823552
## 2544                1 0.7455896            -1  1.559109e-02       -1.823552
## 2545                1 0.7165510            -1 -1.344747e-02       -1.823552
## 2546                1 0.7461300            -1  1.613152e-02       -1.823552
## 2549                1 0.7148362            -1 -1.516229e-02       -1.823552
## 2554                1 0.7253580            -1 -4.640465e-03       -1.823552
## 2561                1 0.7254362            -1 -4.562330e-03       -1.823552
## 2566                1 0.7177700            -1 -1.222848e-02       -1.823552
## 2567                1 0.7200634            -1 -9.935068e-03       -1.823552
## 2568                1 0.7418605            -1  1.186196e-02       -1.823552
## 2569                1 0.7032258            -1 -2.677270e-02       -1.823552
## 2570                1 0.7568000            -1  2.680149e-02       -1.823552
## 2572                1 0.7270408            -1 -2.957694e-03       -1.823552
## 2573                1 0.7310550            -1  1.056468e-03       -1.823552
## 2574                1 0.7424366            -1  1.243812e-02       -1.823552
## 2575                1 0.7611489            -1  3.115039e-02       -1.823552
## 2576                1 0.7333887            -1  3.390194e-03       -1.823552
## 2577                1 0.7273576            -1 -2.640900e-03       -1.823552
## 2578                1 0.7263794            -1 -3.619069e-03       -1.823552
## 2579                1 0.7114726            -1 -1.852591e-02       -1.823552
## 2580                1 0.7112245            -1 -1.877402e-02       -1.823552
## 2581                1 0.7241379            -1 -5.860579e-03       -1.823552
## 2582                1 0.7285319            -1 -1.466654e-03       -1.823552
## 2584                1 0.7245179            -1 -5.480604e-03       -1.823552
## 2585                1 0.7333333            -1  3.334823e-03       -1.823552
## 2586                1 0.8239051            -1  9.390660e-02       -1.823552
## 2587                1 0.7442231            -1  1.422460e-02       -1.823552
## 2588                1 0.7176781            -1 -1.232041e-02       -1.823552
## 2590                1 0.7263648            -1 -3.633663e-03       -1.823552
## 2591                1 0.7235023            -1 -6.496206e-03       -1.823552
## 2592                1 0.7140221            -1 -1.597637e-02       -1.823552
## 2593                1 0.7218543            -1 -8.144205e-03       -1.823552
## 2595                1 0.7419355            -1  1.193697e-02       -1.823552
## 2596                1 0.7141694            -1 -1.582913e-02       -1.823552
## 2597                1 0.7072785            -1 -2.272003e-02       -1.823552
## 2598                1 0.7356412            -1  5.642717e-03       -1.823552
## 2600                1 0.7057397            -1 -2.425882e-02       -1.823552
## 2604                1 0.7184959            -1 -1.150258e-02       -1.823552
## 2606                1 0.7549784            -1  2.497984e-02       -1.823552
## 2607                1 0.7133929            -1 -1.660565e-02       -1.823552
## 2608                1 0.7234043            -1 -6.594255e-03       -1.823552
## 2614                1 0.7335116            -1  3.513076e-03       -1.823552
## 2622                1 0.7177974            -1 -1.220107e-02       -1.823552
## 2624                1 0.7066190            -1 -2.337955e-02       -1.823552
## 2625                1 0.6946703            -1 -3.532823e-02       -1.823552
## 2628                1 0.7149446            -1 -1.505386e-02       -1.823552
## 2629                1 0.7364568            -1  6.458298e-03       -1.823552
## 2634                1 0.7394422            -1  9.443721e-03       -1.823552
## 2637                1 0.7288652            -1 -1.133316e-03        3.176448
## 2638                1 0.7242498            -1 -5.748713e-03        3.176448
## 2639                1 0.7252174            -1 -4.781119e-03        3.176448
## 2640                1 0.7344802            -1  4.481669e-03        3.176448
## 2641                1 0.7676630            -1  3.766453e-02        3.176448
## 2645                1 0.7385281            -1  8.529629e-03        3.176448
## 2647                1 0.7620253            -1  3.202681e-02        3.176448
## 2651                1 0.7442231            -1  1.422460e-02        3.176448
## 2652                1 0.7588187            -1  2.882019e-02        3.176448
## 2653                1 0.7254098            -1 -4.588674e-03        3.176448
## 2654                1 0.7665921            -1  3.659359e-02        3.176448
## 2655                1 0.7216582            -1 -8.340304e-03        3.176448
## 2656                1 0.7560764            -1  2.607788e-02        3.176448
## 2657                1 0.7212421            -1 -8.756449e-03        3.176448
## 2658                1 0.7500000            -1  2.000149e-02        3.176448
## 2659                1 0.7428977            -1  1.289922e-02        3.176448
## 2660                1 0.7604790            -1  3.048053e-02        3.176448
## 2661                1 0.7567100            -1  2.671145e-02        3.176448
## 2662                1 0.7208084            -1 -9.190127e-03        3.176448
## 2663                1 0.7309645            -1  9.659570e-04        3.176448
## 2664                1 0.7266028            -1 -3.395710e-03        3.176448
## 2665                1 0.7305577            -1  5.592276e-04        3.176448
## 2666                1 0.7496252            -1  1.962668e-02        3.176448
## 2667                1 0.7522059            -1  2.220737e-02        3.176448
## 2669                1 0.7479527            -1  1.795417e-02        3.176448
## 2670                1 0.7356715            -1  5.673004e-03        3.176448
## 2671                1 0.7601958            -1  3.019725e-02        3.176448
## 2672                1 0.7401786            -1  1.018006e-02        3.176448
## 2673                1 0.7419355            -1  1.193697e-02        3.176448
## 2674                1 0.7497750            -1  1.977647e-02        3.176448
## 2675                1 0.7368421            -1  6.843595e-03        3.176448
## 2676                1 0.7479542            -1  1.795566e-02        3.176448
## 2677                1 0.7272727            -1 -2.725783e-03        3.176448
## 2678                1 0.7454545            -1  1.545604e-02        3.176448
## 2679                1 0.7389163            -1  8.917746e-03        3.176448
## 2683                1 0.7566338            -1  2.663530e-02        3.176448
## 2684                1 0.7545910            -1  2.459247e-02        3.176448
## 2685                1 0.7537913            -1  2.379275e-02        3.176448
## 2686                1 0.7294574            -1 -5.411457e-04        3.176448
## 2687                1 0.7572559            -1  2.725743e-02        3.176448
## 2693                1 0.7249603            -1 -5.038256e-03        3.176448
## 2695                1 0.7322635            -1  2.265003e-03        3.176448
## 2697                1 0.7758433            -1  4.584480e-02        3.176448
## 2698                1 0.7161654            -1 -1.383310e-02        3.176448
## 2701                1 0.6924370            -1 -3.756154e-02        3.176448
## 2704                1 0.7392427            -1  9.244175e-03        3.176448
## 2705                1 0.7078947            -1 -2.210377e-02        3.176448
## 2706                1 0.7229276            -1 -7.070952e-03        3.176448
## 2707                1 0.7261698            -1 -3.828666e-03        3.176448
## 2709                1 0.7479615            -1  1.796294e-02        3.176448
## 2710                1 0.7196970            -1 -1.030154e-02        3.176448
## 2711                1 0.7172848            -1 -1.271370e-02        3.176448
## 2712                1 0.7177489            -1 -1.224959e-02        3.176448
## 2713                1 0.7249097            -1 -5.088763e-03        3.176448
## 2716                1 0.7326578            -1  2.659323e-03        3.176448
## 2717                1 0.7745483            -1  4.454980e-02        3.176448
## 2718                1 0.7163814            -1 -1.361709e-02        3.176448
## 2719                1 0.7403315            -1  1.033298e-02        3.176448
## 2720                1 0.7319149            -1  1.916384e-03        3.176448
## 2721                1 0.7271306            -1 -2.867939e-03        3.176448
## 2722                1 0.7454831            -1  1.548460e-02        3.176448
## 2723                1 0.7396293            -1  9.630793e-03        3.176448
## 2724                1 0.7312546            -1  1.256130e-03        3.176448
## 2725                1 0.7381342            -1  8.135696e-03        3.176448
## 2726                1 0.7236136            -1 -6.384914e-03        3.176448
## 2727                1 0.7236100            -1 -6.388518e-03        3.176448
## 2728                1 0.7304422            -1  4.436669e-04        3.176448
## 2730                1 0.7109610            -1 -1.903755e-02        3.176448
## 2731                1 0.7426655            -1  1.266704e-02        3.176448
## 2733                1 0.7270318            -1 -2.966708e-03        3.176448
## 2734                1 0.7239583            -1 -6.040177e-03        3.176448
## 2735                1 0.7200000            -1 -9.998510e-03        3.176448
## 2736                1 0.7453936            -1  1.539512e-02        3.176448
## 2737                1 0.7239057            -1 -6.092786e-03        3.176448
## 2738                1 0.7380016            -1  8.003064e-03        3.176448
## 2739                1 0.7294029            -1 -5.956378e-04        3.176448
## 2740                1 0.7145558            -1 -1.544274e-02        3.176448
## 2741                1 0.7293889            -1 -6.095672e-04        3.176448
## 2742                1 0.7265269            -1 -3.471618e-03        3.176448
## 2743                1 0.7339688            -1  3.970294e-03        3.176448
## 2744                1 0.7385787            -1  8.580170e-03        3.176448
## 2745                1 0.7301444            -1  1.458943e-04        3.176448
## 2747                1 0.7472784            -1  1.727987e-02        3.176448
## 2748                1 0.7287630            -1 -1.235470e-03        3.176448
## 2749                1 0.7287157            -1 -1.282781e-03        3.176448
## 2752                1 0.7334451            -1  3.446586e-03        3.176448
## 2754                1 0.7590634            -1  2.906493e-02        3.176448
## 2756                1 0.6638655            -1 -6.613296e-02        3.176448
## 2757                1 0.7364747            -1  6.476185e-03        3.176448
## 2758                1 0.7301700            -1  1.714617e-04        3.176448
## 2759                1 0.7400662            -1  1.006772e-02        3.176448
## 2760                1 0.7307974            -1  7.988565e-04        3.176448
## 2761                1 0.7381679            -1  8.169429e-03        3.176448
## 2763                1 0.7163247            -1 -1.367380e-02        3.176448
## 2764                1 0.7374449            -1  7.446424e-03        3.176448
## 2765                1 0.7262570            -1 -3.741527e-03        3.176448
## 2767                1 0.7305337            -1  5.351733e-04        3.176448
## 2768                1 0.7125097            -1 -1.748880e-02        3.176448
## 2769                1 0.7427259            -1  1.272737e-02        3.176448
## 2772                1 0.7303136            -1  3.150788e-04        3.176448
## 2773                1 0.7242380            -1 -5.760484e-03        3.176448
## 2774                1 0.7166922            -1 -1.330632e-02        3.176448
## 2777                1 0.7000000            -1 -2.999851e-02        3.176448
## 2779                1 0.7188552            -1 -1.114329e-02        3.176448
## 2780                1 0.7343750            -1  4.376490e-03        3.176448
## 2781                1 0.6901544            -1 -3.984407e-02        3.176448
## 2782                1 0.7472924            -1  1.729391e-02        3.176448
## 2784                1 0.7385965            -1  8.597981e-03        3.176448
## 2785                1 0.7243243            -1 -5.674186e-03        3.176448
## 2786                1 0.7258383            -1 -4.160246e-03        3.176448
## 2787                1 0.7251329            -1 -4.865632e-03        3.176448
## 2788                1 0.6801802            -1 -4.981833e-02        3.176448
## 2789                1 0.7536232            -1  2.362468e-02        3.176448
## 2791                1 0.7641583            -1  3.415975e-02        3.176448
## 2792                1 0.7357689            -1  5.770394e-03        3.176448
## 2794                1 0.7203274            -1 -9.671088e-03        3.176448
## 2795                1 0.7464042            -1  1.640573e-02        3.176448
## 2797                1 0.7208297            -1 -9.168778e-03        3.176448
## 2798                1 0.7014218            -1 -2.857671e-02        3.176448
## 2799                1 0.7093236            -1 -2.067493e-02        3.176448
## 2800                1 0.7358079            -1  5.809350e-03        3.176448
## 2801                1 0.7163347            -1 -1.366385e-02        3.176448
## 2802                1 0.7390158            -1  9.017307e-03        3.176448
## 2806                1 0.7080745            -1 -2.192398e-02        3.176448
## 2807                1 0.7335734            -1  3.574847e-03        3.176448
## 2808                1 0.7450303            -1  1.503174e-02        3.176448
## 2810                1 0.7193639            -1 -1.063462e-02        3.176448
## 2812                1 0.7362637            -1  6.265226e-03        3.176448
## 2813                1 0.7072600            -1 -2.273856e-02        3.176448
## 2816                1 0.7493188            -1  1.932029e-02        3.176448
## 2820                1 0.7029110            -1 -2.708755e-02        3.176448
## 2823                1 0.7368421            -1  6.843595e-03        3.176448
## 2826                1 0.7153502            -1 -1.464829e-02        3.176448
## 2830                1 0.7231121            -1 -6.886382e-03        3.176448
## 2831                1 0.6999214            -1 -3.007706e-02        3.176448
## 2833                1 0.7182222            -1 -1.177629e-02        3.176448
## 2834                1 0.7163668            -1 -1.363176e-02        3.176448
## 2835                1 0.7160767            -1 -1.392181e-02        3.176448
## 2836                1 0.7259866            -1 -4.011913e-03        3.176448
## 2837                1 0.7012346            -1 -2.876394e-02        3.176448
## 2839                1 0.7497976            -1  1.979906e-02        3.176448
## 2841                1 0.7238860            -1 -6.112462e-03        3.176448
## 2842                1 0.7114914            -1 -1.850707e-02        3.176448
## 2844                1 0.7210201            -1 -8.978417e-03        3.176448
## 2845                1 0.7102102            -1 -1.978830e-02        3.176448
## 2847                1 0.7529519            -1  2.295335e-02        3.176448
## 2848                1 0.7314949            -1  1.496410e-03        3.176448
## 2850                1 0.7122118            -1 -1.778673e-02        3.176448
## 2851                1 0.7208297            -1 -9.168778e-03        3.176448
## 2853                1 0.7310638            -1  1.065320e-03        3.176448
## 2854                1 0.7336861            -1  3.687557e-03        3.176448
## 2855                1 0.7246249            -1 -5.373620e-03        3.176448
## 2856                1 0.7160194            -1 -1.397909e-02        3.176448
## 2859                1 0.7420464            -1  1.204792e-02        3.176448
## 2860                1 0.7273376            -1 -2.660894e-03        3.176448
## 2862                1 0.7229917            -1 -7.006820e-03        3.176448
## 2863                1 0.7235142            -1 -6.484298e-03        3.176448
## 2864                1 0.7147462            -1 -1.525234e-02        3.176448
## 2868                1 0.7074981            -1 -2.250037e-02        3.176448
## 2869                1 0.7178218            -1 -1.217673e-02        3.176448
## 2871                1 0.7303473            -1  3.488392e-04        3.176448
## 2878                1 0.7387687            -1  8.770209e-03        3.176448
## 2884                1 0.7126259            -1 -1.737264e-02        3.176448
## 2886                1 0.7250238            -1 -4.974723e-03        3.176448
## 2887                1 0.7261146            -1 -3.883860e-03        3.176448
## 2891                1 0.7787980            -1  4.879949e-02        3.176448
## 2892                1 0.7174658            -1 -1.253276e-02        3.176448
## 2893                1 0.7027540            -1 -2.724447e-02        3.176448
## 2895                1 0.7163743            -1 -1.362424e-02        3.176448
## 2896                1 0.7203620            -1 -9.636519e-03        3.176448
## 2897                1 0.7241660             1 -5.832521e-03       -4.823552
## 2899                1 0.7441230             1  1.412446e-02       -4.823552
## 2900                1 0.7363316             1  6.333060e-03       -4.823552
## 2901                1 0.7270318             1 -2.966708e-03       -4.823552
## 2904                1 0.7409891             1  1.099059e-02       -4.823552
## 2905                1 0.7188065             1 -1.119200e-02       -4.823552
## 2906                1 0.7188379             1 -1.116065e-02       -4.823552
## 2907                1 0.7314286             1  1.430061e-03       -4.823552
## 2908                1 0.7244987             1 -5.499818e-03       -4.823552
## 2911                1 0.7379873             1  7.988797e-03       -4.823552
## 2912                1 0.7302632             1  2.646479e-04       -4.823552
## 2914                1 0.7382602             1  8.261690e-03       -4.823552
## 2917                1 0.7202487             1 -9.749842e-03       -4.823552
## 2919                1 0.7444444             1  1.444593e-02       -4.823552
## 2921                1 0.7280296             1 -1.968908e-03       -4.823552
## 2923                1 0.7279843             1 -2.014166e-03       -4.823552
## 2929                1 0.7269841             1 -3.014383e-03       -4.823552
## 2930                1 0.7488667             1  1.886822e-02       -4.823552
## 2931                1 0.7437276             1  1.372909e-02       -4.823552
## 2932                1 0.7439353             1  1.393680e-02       -4.823552
## 2933                1 0.7109005             1 -1.909804e-02       -4.823552
## 2934                1 0.7257701             1 -4.228412e-03       -4.823552
## 2935                1 0.7349961             1  4.997593e-03       -4.823552
## 2936                1 0.7042381             1 -2.576046e-02       -4.823552
## 2937                1 0.7068429             1 -2.315559e-02       -4.823552
## 2939                1 0.7246673             1 -5.331161e-03       -4.823552
## 2940                1 0.7087609             1 -2.123766e-02       -4.823552
## 2944                1 0.7188797             1 -1.111884e-02       -4.823552
## 2945                1 0.7217391             1 -8.259380e-03       -4.823552
## 2947                1 0.7024936             1 -2.750496e-02       -4.823552
## 2948                1 0.7063903             1 -2.360818e-02       -4.823552
## 2949                1 0.7226821             1 -7.316391e-03       -4.823552
## 2950                1 0.7232510             1 -6.747481e-03       -4.823552
## 2951                1 0.7261785             1 -3.819974e-03       -4.823552
## 2952                1 0.7100949             1 -1.990360e-02       -4.823552
## 2953                1 0.7317299             1  1.731370e-03       -4.823552
## 2954                1 0.7252441             1 -4.754437e-03       -4.823552
## 2955                1 0.7157988             1 -1.419975e-02       -4.823552
## 2956                1 0.6967742             1 -3.322432e-02       -4.823552
## 2957                1 0.7188082             1 -1.119032e-02       -4.823552
## 2958                1 0.7169811             1 -1.301738e-02       -4.823552
## 2959                1 0.7127127             1 -1.728580e-02       -4.823552
## 2960                1 0.7058824             1 -2.411616e-02       -4.823552
## 2964                1 0.7361111             1  6.112601e-03       -4.823552
## 2965                1 0.7418244             1  1.182593e-02       -4.823552
## 2970                1 0.7123746             1 -1.762393e-02       -4.823552
## 2971                1 0.7283019             1 -1.696623e-03       -4.823552
## 2972                1 0.7259194             1 -4.079070e-03       -4.823552
## 2973                1 0.7491582             1  1.915974e-02       -4.823552
## 2974                1 0.7531418             1  2.314332e-02       -4.823552
## 2975                1 0.7183219             1 -1.167659e-02       -4.823552
## 2976                1 0.7192857             1 -1.071280e-02       -4.823552
## 2978                1 0.7633366             1  3.333806e-02       -4.823552
## 2979                1 0.7144120             1 -1.558649e-02       -4.823552
## 2980                1 0.7238252             1 -6.173283e-03       -4.823552
## 2981                1 0.7349177             1  4.919223e-03       -4.823552
## 2982                1 0.7123288             1 -1.766974e-02       -4.823552
## 2983                1 0.7022519             1 -2.774663e-02       -4.823552
## 2984                1 0.7144960             1 -1.550256e-02       -4.823552
## 2985                1 0.7085890             1 -2.140955e-02       -4.823552
## 2986                1 0.7123746             1 -1.762393e-02       -4.823552
## 2987                1 0.7526132             1  2.261473e-02       -4.823552
## 2988                1 0.7160069             1 -1.399163e-02       -4.823552
## 2990                1 0.6919901             1 -3.800842e-02       -4.823552
## 2991                1 0.7436792             1  1.368065e-02       -4.823552
## 2992                1 0.7054329             1 -2.456557e-02       -4.823552
## 2994                1 0.7233202             1 -6.678352e-03       -4.823552
## 2995                1 0.7446996             1  1.470114e-02       -4.823552
## 2997                1 0.7036164             1 -2.638216e-02       -4.823552
## 2998                1 0.7286957             1 -1.302858e-03       -4.823552
## 2999                1 0.7087379             1 -2.126065e-02       -4.823552
## 3000                1 0.7259970             1 -4.001464e-03       -4.823552
## 3001                1 0.7525952             1  2.259665e-02       -4.823552
## 3002                1 0.7101828             1 -1.981574e-02       -4.823552
## 3004                1 0.7394366             1  9.438110e-03       -4.823552
## 3005                1 0.7237423             1 -6.256233e-03       -4.823552
## 3006                1 0.7176724             1 -1.232610e-02       -4.823552
## 3007                1 0.7416667             1  1.166816e-02       -4.823552
## 3009                1 0.7334963             1  3.497823e-03       -4.823552
## 3010                1 0.7045827             1 -2.541586e-02       -4.823552
## 3011                1 0.7091070             1 -2.089153e-02       -4.823552
## 3013                1 0.7253401             1 -4.658374e-03       -4.823552
## 3014                1 0.7284768             1 -1.521689e-03       -4.823552
## 3015                1 0.7352690             1  5.270491e-03       -4.823552
## 3016                1 0.7317073             1  1.708807e-03       -4.823552
## 3019                1 0.7368962             1  6.897687e-03       -4.823552
## 3020                1 0.7357860             1  5.787443e-03       -4.823552
## 3045                1 0.7143963             1 -1.560223e-02       -4.823552
## 3050                1 0.7332803             1  3.281745e-03       -4.823552
## 3052                1 0.6361502             1 -9.384828e-02       -4.823552
## 3053                1 0.7196429             1 -1.035565e-02       -4.823552
## 3054                1 0.7113224             1 -1.867612e-02       -4.823552
## 3055                1 0.7178545             1 -1.214399e-02       -4.823552
## 3056                1 0.7251732             1 -4.825300e-03       -4.823552
## 3057                1 0.7241977             1 -5.800765e-03       -4.823552
## 3058                1 0.7134986             1 -1.649989e-02       -4.823552
## 3059                1 0.7558870             1  2.588846e-02       -4.823552
## 3060                1 0.7300851             1  8.656346e-05       -4.823552
## 3061                1 0.7137255             1 -1.627302e-02       -4.823552
## 3062                1 0.7151966             1 -1.480191e-02       -4.823552
## 3063                1 0.7234878             1 -6.510686e-03       -4.823552
## 3064                1 0.7493755             1  1.937701e-02       -4.823552
## 3066                1 0.7560976             1  2.609905e-02       -4.823552
## 3067                1 0.7404103             1  1.041184e-02       -4.823552
## 3068                1 0.7434679             1  1.346942e-02       -4.823552
## 3069                1 0.7246521             1 -5.346423e-03       -4.823552
## 3070                1 0.7107926             1 -1.920593e-02       -4.823552
## 3071                1 0.7361502             1  6.151725e-03       -4.823552
## 3072                1 0.7291160             1 -8.825327e-04       -4.823552
## 3073                1 0.7116788             1 -1.831968e-02       -4.823552
## 3074                1 0.7296296             1 -3.688804e-04       -4.823552
## 3075                1 0.7253788             1 -4.619722e-03       -4.823552
## 3076                1 0.7144177             1 -1.558077e-02       -4.823552
## 3077                1 0.7241641             1 -5.834376e-03       -4.823552
## 3078                1 0.7171875             1 -1.281101e-02       -4.823552
## 3079                1 0.7263545             1 -3.644056e-03       -4.823552
## 3080                1 0.7135008             1 -1.649773e-02       -4.823552
## 3081                1 0.7400000             1  1.000149e-02       -4.823552
## 3082                1 0.7049847             1 -2.501377e-02       -4.823552
## 3083                1 0.7126866             1 -1.731194e-02       -4.823552
## 3084                1 0.7231834             1 -6.815119e-03       -4.823552
## 3085                1 0.7141491             1 -1.584937e-02       -4.823552
## 3086                1 0.7313182             1  1.319710e-03       -4.823552
## 3087                1 0.7329020             1  2.903523e-03       -4.823552
## 3088                1 0.7337461             1  3.747620e-03       -4.823552
## 3089                1 0.7252852             1 -4.713339e-03       -4.823552
## 3090                1 0.7325843             1  2.585760e-03       -4.823552
## 3091                1 0.7485265             1  1.852801e-02       -4.823552
## 3092                1 0.7388939             1  8.895416e-03       -4.823552
## 3093                1 0.7128927             1 -1.710577e-02       -4.823552
## 3094                1 0.7355491             1  5.550623e-03       -4.823552
## 3095                1 0.7307692             1  7.707208e-04       -4.823552
## 3096                1 0.7382943             1  8.295804e-03       -4.823552
## 3097                1 0.7182469             1 -1.175164e-02       -4.823552
## 3098                1 0.7043741             1 -2.562445e-02       -4.823552
## 3099                1 0.7369838             1  6.985332e-03       -4.823552
## 3100                1 0.7265372             1 -3.461293e-03       -4.823552
## 3101                1 0.7144040             1 -1.559454e-02       -4.823552
## 3102                1 0.7098814             1 -2.011709e-02       -4.823552
## 3103                1 0.7184087             1 -1.158977e-02       -4.823552
## 3105                1 0.7327586             1  2.760111e-03       -4.823552
## 3107                1 0.7349177             1  4.919223e-03       -4.823552
## 3108                1 0.7079964             1 -2.200210e-02       -4.823552
## 3109                1 0.7374071             1  7.408592e-03       -4.823552
## 3110                1 0.7408875             1  1.088897e-02       -4.823552
## 3111                1 0.7282780             1 -1.720469e-03       -4.823552
## 3112                1 0.7247387             1 -5.259834e-03       -4.823552
## 3113                1 0.7243880             1 -5.610477e-03       -4.823552
## 3115                1 0.7344214             1  4.422855e-03       -4.823552
## 3116                1 0.7430865             1  1.308802e-02       -4.823552
## 3117                1 0.7383349             1  8.336348e-03       -4.823552
## 3118                1 0.7184087             1 -1.158977e-02       -4.823552
## 3119                1 0.7332123             1  3.213831e-03       -4.823552
## 3120                1 0.7356230             1  5.624493e-03       -4.823552
## 3121                1 0.7310536             1  1.055094e-03       -4.823552
## 3122                1 0.7374129             1  7.414348e-03       -4.823552
## 3123                1 0.7315914             1  1.592939e-03       -4.823552
## 3124                1 0.7314390             1  1.440537e-03       -4.823552
## 3125                1 0.7302053             1  2.067686e-04       -4.823552
## 3126                1 0.7501983             1  2.019975e-02       -4.823552
## 3127                1 0.7315705             1  1.572003e-03       -4.823552
## 3128                1 0.7424360             1  1.243749e-02       -4.823552
## 3129                1 0.7275335             1 -2.465049e-03       -4.823552
## 3131                1 0.7495726             1  1.957414e-02       -4.823552
## 3132                1 0.7252453             1 -4.753193e-03       -4.823552
## 3133                1 0.7461140             1  1.611548e-02       -4.823552
## 3134                1 0.7420021             1  1.200355e-02       -4.823552
## 3135                1 0.7398703             1  9.871830e-03       -4.823552
## 3136                1 0.7461005             1  1.610201e-02       -4.823552
## 3137                1 0.7340340             1  4.035443e-03       -4.823552
## 3138                1 0.7408727             1  1.087415e-02       -4.823552
## 3139                1 0.7372627             1  7.264227e-03       -4.823552
## 3140                1 0.7538884             1  2.388987e-02       -4.823552
## 3141                1 0.7437304             1  1.373190e-02       -4.823552
## 3142                1 0.7486188             1  1.862027e-02       -4.823552
## 3143                1 0.7036060             1 -2.639253e-02       -4.823552
## 3144                1 0.7368852             1  6.886736e-03       -4.823552
## 3145                1 0.7576037             1  2.760518e-02       -4.823552
## 3146                1 0.7417531             1  1.175455e-02       -4.823552
## 3147                1 0.6811060             1 -4.889252e-02       -4.823552
## 3148                1 0.7153846             1 -1.461389e-02       -4.823552
## 3149                1 0.7267760             1 -3.222554e-03       -4.823552
## 3150                1 0.7587131             1  2.871463e-02       -4.823552
## 3151                1 0.7096189             1 -2.037964e-02       -4.823552
## 3152                1 0.7275391             1 -2.459448e-03       -4.823552
## 3153                1 0.7240527             1 -5.945792e-03       -4.823552
## 3154                1 0.7083700             1 -2.162847e-02       -4.823552
## 3155                1 0.7242498             1 -5.748713e-03       -4.823552
## 3157                1 0.6953908             1 -3.460773e-02       -4.823552
## 3158                1 0.7329352             1  2.936644e-03       -4.823552
## 3159                1 0.7385466             1  8.548093e-03       -4.823552
## 3160                1 0.7455036             1  1.550509e-02       -4.823552
## 3162                1 0.7135184             1 -1.648016e-02       -4.823552
## 3164                1 0.7434457             1  1.344718e-02       -4.823552
## 3165                1 0.7353952             1  5.396679e-03       -4.823552
## 3167                1 0.7313433             1  1.344774e-03       -4.823552
## 3168                1 0.7449726             1  1.497407e-02       -4.823552
## 3169                1 0.7565611             1  2.656258e-02       -4.823552
## 3170                1 0.7257448             1 -4.253667e-03       -4.823552
## 3171                1 0.7318436             1  1.845065e-03       -4.823552
## 3172                1 0.7022968             1 -2.770169e-02       -4.823552
## 3175                1 0.7386157             1  8.617155e-03       -4.823552
## 3176                1 0.7101167             1 -1.988178e-02       -4.823552
## 3177                1 0.7197751             1 -1.022344e-02       -4.823552
## 3178                1 0.7280702             1 -1.928335e-03       -4.823552
## 3180                1 0.7368421             1  6.843595e-03       -4.823552
## 3181                1 0.7110415             1 -1.895701e-02       -4.823552
## 3182                1 0.7006200             1 -2.937849e-02       -4.823552
## 3183                1 0.7100977             1 -1.990079e-02       -4.823552
## 3185                1 0.6903461             1 -3.965243e-02       -4.823552
## 3186                1 0.6985482             1 -3.145026e-02       -4.823552
## 3187                1 0.7070880             1 -2.291055e-02       -4.823552
## 3189                1 0.7282986             1 -1.699899e-03       -4.823552
## 3190                1 0.7371134             1  7.114892e-03       -4.823552
## 3191                1 0.6990741             1 -3.092444e-02       -4.823552
## 3192                1 0.7142857             1 -1.571280e-02       -4.823552
## 3193                1 0.7017857             1 -2.821280e-02       -4.823552
## 3194                1 0.7152445             1 -1.475402e-02       -4.823552
## 3196                1 0.7356061             1  5.607551e-03       -4.823552
## 3197                1 0.7010647             1 -2.893381e-02       -4.823552
## 3198                1 0.7078947             1 -2.210377e-02       -4.823552
## 3199                1 0.6978827             1 -3.211577e-02       -4.823552
## 3200                1 0.7062147             1 -2.378382e-02       -4.823552
## 3201                1 0.7165282             1 -1.347035e-02       -4.823552
## 3202                1 0.7205589             1 -9.439628e-03       -4.823552
## 3203                1 0.7399142             1  9.915653e-03       -4.823552
## 3205                1 0.7035985             1 -2.640003e-02       -4.823552
## 3206                1 0.7215412             1 -8.457354e-03       -4.823552
## 3207                1 0.7388256             1  8.827082e-03       -4.823552
## 3209                1 0.7354839             1  5.485361e-03       -4.823552
## 3210                1 0.7051378             1 -2.486076e-02       -4.823552
## 3211                1 0.7364621             1  6.463584e-03       -4.823552
## 3212                1 0.7233888             1 -6.609661e-03       -4.823552
## 3213                1 0.6927083             1 -3.729018e-02       -4.823552
## 3214                1 0.7057891             1 -2.420945e-02       -4.823552
## 3215                1 0.7027027             1 -2.729581e-02       -4.823552
## 3216                1 0.7336323             1  3.633777e-03       -4.823552
## 3218                1 0.7118024             1 -1.819613e-02       -4.823552
## 3219                1 0.7009413             1 -2.905716e-02       -4.823552
## 3220                1 0.6888889             1 -4.110962e-02       -4.823552
## 3221                1 0.7301255             1  1.270130e-04       -4.823552
## 3222                1 0.7055449             1 -2.445358e-02       -4.823552
## 3223                1 0.7440147             1  1.401622e-02       -4.823552
## 3224                1 0.7330017             1  3.003148e-03       -4.823552
## 3226                1 0.7133106             1 -1.668793e-02       -4.823552
## 3227                1 0.7306003             1  6.017828e-04       -4.823552
## 3229                1 0.7070707             1 -2.292780e-02       -4.823552
## 3230                1 0.7276119             1 -2.386570e-03       -4.823552
## 3231                1 0.7439533             1  1.395478e-02       -4.823552
## 3232                1 0.7177799             1 -1.221864e-02       -4.823552
## 3234                1 0.6871463             1 -4.285219e-02       -4.823552
## 3235                1 0.7091062             1 -2.089227e-02       -4.823552
## 3236                1 0.7158136             1 -1.418491e-02       -4.823552
## 3237                1 0.7154399             1 -1.455865e-02       -4.823552
## 3238                1 0.7118182             1 -1.818033e-02       -4.823552
## 3239                1 0.7159966             1 -1.400193e-02       -4.823552
## 3240                1 0.7065421             1 -2.345645e-02       -4.823552
## 3241                1 0.7401515             1  1.015301e-02       -4.823552
## 3242                1 0.7508681             1  2.086955e-02       -4.823552
## 3243                1 0.7606838             1  3.068525e-02       -4.823552
## 3244                1 0.7065637             1 -2.343480e-02       -4.823552
## 3246                1 0.7176582             1 -1.234034e-02       -4.823552
## 3247                1 0.7147737             1 -1.522481e-02       -4.823552
## 3248                1 0.7177700             1 -1.222848e-02       -4.823552
## 3249                1 0.7075548             1 -2.244368e-02       -4.823552
## 3250                1 0.7185741             1 -1.142440e-02       -4.823552
## 3251                1 0.7054337             1 -2.456476e-02       -4.823552
## 3252                1 0.7404514             1  1.045288e-02       -4.823552
## 3253                1 0.7145329             1 -1.546564e-02       -4.823552
## 3254                1 0.7324955             1  2.497002e-03       -4.823552
## 3255                1 0.7255172             1 -4.481269e-03       -4.823552
## 3256                1 0.7293935             1 -6.050419e-04       -4.823552
## 3257                1 0.7069805             1 -2.301799e-02       -4.823552
## 3258                1 0.7311151             1  1.116598e-03       -4.823552
## 3259                1 0.7421053             1  1.210675e-02       -4.823552
## 3260                1 0.7312661             1  1.267640e-03       -4.823552
## 3261                1 0.7197452             1 -1.025329e-02       -4.823552
## 3262                1 0.6942959             1 -3.570261e-02       -4.823552
## 3263                1 0.7268409             1 -3.157655e-03       -4.823552
## 3264                1 0.7000822             1 -2.991634e-02       -4.823552
## 3265                1 0.7164751             1 -1.352341e-02       -4.823552
## 3266                1 0.7357274             1  5.728930e-03       -4.823552
## 3267                1 0.7109228             1 -1.907572e-02       -4.823552
## 3268                1 0.6974460             1 -3.255254e-02       -4.823552
## 3269                1 0.7289495             1 -1.049031e-03       -4.823552
## 3270                1 0.7265847             1 -3.413836e-03       -4.823552
## 3271                1 0.7156473             1 -1.435117e-02       -4.823552
## 3273                1 0.6702391             1 -5.975943e-02       -4.823552
## 3274                1 0.7213542             1 -8.644343e-03       -4.823552
## 3279                1 0.7342781             1  4.279612e-03       -4.823552
## 3280                1 0.7196691             1 -1.032939e-02       -4.823552
## 3281                1 0.7229358             1 -7.062730e-03       -4.823552
## 3282                1 0.7152918             1 -1.470676e-02       -4.823552
## 3283                1 0.7474662             1  1.746771e-02       -4.823552
## 3285                1 0.7003854             1 -2.961315e-02       -4.823552
## 3287                1 0.7058243             1 -2.417423e-02       -4.823552
## 3288                1 0.6816648             1 -4.833372e-02       -4.823552
## 3289                1 0.7206030             1 -9.395495e-03       -4.823552
## 3290                1 0.7004049             1 -2.959365e-02       -4.823552
## 3291                1 0.7130841             1 -1.691440e-02       -4.823552
## 3292                1 0.7142857             1 -1.571280e-02       -4.823552
## 3293                1 0.7243196             1 -5.678931e-03       -4.823552
## 3294                1 0.7341338             1  4.135281e-03       -4.823552
## 3295                1 0.7409051             1  1.090655e-02       -4.823552
## 3296                1 0.7017707             1 -2.822777e-02       -4.823552
## 3297                1 0.7147950             1 -1.520350e-02       -4.823552
## 3300                1 0.7217391             1 -8.259380e-03       -4.823552
## 3301                1 0.7088734             1 -2.112513e-02       -4.823552
## 3302                1 0.7140411             1 -1.595741e-02       -4.823552
## 3303                1 0.7250958             1 -4.902725e-03       -4.823552
## 3304                1 0.7281818             1 -1.816692e-03       -4.823552
## 3305                1 0.7233202             1 -6.678352e-03       -4.823552
## 3306                1 0.6752059             1 -5.479265e-02       -4.823552
## 3307                1 0.6926445             1 -3.735403e-02       -4.823552
## 3308                1 0.7337278             1  3.729301e-03       -4.823552
## 3309                1 0.7122172             1 -1.778132e-02       -4.823552
## 3311                1 0.7137714             1 -1.622713e-02       -4.823552
## 3312                1 0.7271889             1 -2.809570e-03       -4.823552
## 3313                1 0.7416944             1  1.169584e-02       -4.823552
## 3314                1 0.7296490             1 -3.495182e-04       -4.823552
## 3315                1 0.7502430             1  2.024444e-02       -4.823552
## 3316                1 0.7383721             1  8.373583e-03       -4.823552
## 3317                1 0.7224231             1 -7.575364e-03       -4.823552
## 3318                1 0.7145359             1 -1.546261e-02       -4.823552
## 3319                1 0.7144169             1 -1.558161e-02       -4.823552
## 3320                1 0.7162791             1 -1.371944e-02       -4.823552
## 3321                1 0.7472325             1  1.723396e-02       -4.823552
## 3322                1 0.7147708             1 -1.522771e-02       -4.823552
## 3323                1 0.7230769             1 -6.921587e-03       -4.823552
## 3325                1 0.7299485             1 -5.001848e-05       -4.823552
## 3327                1 0.7362736             1  6.275117e-03       -4.823552
## 3332                1 0.7325861             1  2.587559e-03       -4.823552
## 3339                1 0.7144250             1 -1.557356e-02       -4.823552
## 3340                1 0.7079365             1 -2.206200e-02       -4.823552
## 3341                1 0.7162055             1 -1.379298e-02       -4.823552
## 3342                1 0.7195122             1 -1.048631e-02       -4.823552
## 3343                1 0.7256214             1 -4.377095e-03       -4.823552
## 3348                1 0.7238979             1 -6.100598e-03       -4.823552
## 3350                1 0.7259528             1 -4.045697e-03       -4.823552
## 3351                1 0.7149220             1 -1.507646e-02       -4.823552
## 3379                1 0.7290715             1 -9.269727e-04       -4.823552
## 3391                1 0.7247475             1 -5.251035e-03       -4.823552
## 3394                1 0.7013423             1 -2.865623e-02       -4.823552
## 3396                1 0.7247706             1 -5.227868e-03       -4.823552
## 3398                1 0.7291667             1 -8.318433e-04       -4.823552
## 3399                1 0.7161107             1 -1.388779e-02       -4.823552
## 3400                1 0.7039674             1 -2.603106e-02       -4.823552
## 3401                1 0.7033762             1 -2.662230e-02       -4.823552
## 3402                1 0.7339286             1  3.930061e-03       -4.823552
## 3404                1 0.7105500             1 -1.944846e-02       -4.823552
## 3405                1 0.7126050             1 -1.739347e-02       -4.823552
## 3406                1 0.7220183             1 -7.980161e-03       -4.823552
## 3407                1 0.7005887             1 -2.940978e-02       -4.823552
## 3408                1 0.7300000             1  1.489985e-06       -4.823552
## 3409                1 0.7142857             1 -1.571280e-02       -4.823552
## 3410                1 0.7165775             1 -1.342097e-02       -4.823552
## 3411                1 0.7462932             1  1.629474e-02       -4.823552
## 3412                1 0.7010647             1 -2.893381e-02       -4.823552
## 3414                1 0.7250000             1 -4.998510e-03       -4.823552
## 3415                1 0.7182761             1 -1.172237e-02       -4.823552
## 3418                1 0.7080799             1 -2.191858e-02       -4.823552
## 3419                1 0.7340521             1  4.053601e-03       -4.823552
## 3420                1 0.7124895             1 -1.750899e-02       -4.823552
## 3421                1 0.7218337             1 -8.164788e-03       -4.823552
## 3422                1 0.7228916             1 -7.106944e-03       -4.823552
## 3423                1 0.7057292             1 -2.426934e-02       -4.823552
## 3424                1 0.7292576             1 -7.408681e-04       -4.823552
## 3425                1 0.7141660             1 -1.583254e-02       -4.823552
## 3426                1 0.7278782             1 -2.120299e-03       -4.823552
## 3428                1 0.6848429             1 -4.515563e-02       -4.823552
## 3429                1 0.7233273             1 -6.671204e-03       -4.823552
## 3430                1 0.7239151             1 -6.083459e-03       -4.823552
## 3431                1 0.7166922             1 -1.330632e-02       -4.823552
## 3432                1 0.7453152             1  1.531665e-02       -4.823552
## 3433                1 0.7319588             1  1.960253e-03       -4.823552
## 3434                1 0.7449541             1  1.495562e-02       -4.823552
## 3435                1 0.7306053             1  6.067756e-04       -4.823552
## 3436                1 0.7117031             1 -1.829537e-02       -4.823552
## 3437                1 0.7230159             1 -6.982637e-03       -4.823552
## 3438                1 0.7221190             1 -7.879551e-03       -4.823552
## 3439                1 0.7272727             1 -2.725783e-03       -4.823552
## 3440                1 0.7315891             1  1.590637e-03       -4.823552
## 3441                1 0.7335004             1  3.501908e-03       -4.823552
## 3442                1 0.7233055             1 -6.693032e-03       -4.823552
## 3443                1 0.7250804             1 -4.918124e-03       -4.823552
## 3444                1 0.7111111             1 -1.888740e-02       -4.823552
## 3445                1 0.7257642             1 -4.234318e-03       -4.823552
## 3448                1 0.7078464             1 -2.215210e-02       -4.823552
## 3451                1 0.7094658             1 -2.053272e-02       -4.823552
## 3452                1 0.7597403             1  2.974175e-02       -4.823552
## 3453                1 0.7215190             1 -8.479523e-03       -4.823552
## 3454                1 0.7135778             1 -1.642071e-02       -4.823552
## 3461                1 0.7413793             1  1.138080e-02       -4.823552
## 3462                1 0.7012876             1 -2.871096e-02       -4.823552
## 3466                1 0.7363465             1  6.348006e-03       -4.823552
## 3473                1 0.7419118             1  1.191325e-02       -4.823552
## 3476                1 0.7145390            -1 -1.545950e-02        3.176448
## 3477                1 0.7174688            -1 -1.252970e-02        3.176448
## 3478                1 0.7160686            -1 -1.392987e-02        3.176448
## 3479                1 0.7304048            -1  4.063134e-04        3.176448
## 3480                1 0.7266495            -1 -3.348981e-03        3.176448
## 3481                1 0.7139344            -1 -1.606408e-02        3.176448
## 3482                1 0.7192862            -1 -1.071231e-02        3.176448
## 3483                1 0.7019143            -1 -2.808420e-02        3.176448
## 3485                1 0.7240334            -1 -5.965151e-03        3.176448
## 3486                1 0.7257039            -1 -4.294604e-03        3.176448
## 3487                1 0.7259887            -1 -4.009809e-03        3.176448
## 3488                1 0.7313707            -1  1.372235e-03        3.176448
## 3489                1 0.7299652            -1 -3.335322e-05        3.176448
## 3492                1 0.7123412            -1 -1.765731e-02        3.176448
## 3493                1 0.7176471            -1 -1.235145e-02        3.176448
## 3496                1 0.7293470            -1 -6.515391e-04        3.176448
## 3498                1 0.7504472            -1  2.044872e-02        3.176448
## 3499                1 0.7409806            -1  1.098206e-02        3.176448
## 3500                1 0.7206406            -1 -9.357941e-03        3.176448
## 3501                1 0.7357911            -1  5.792581e-03        3.176448
## 3502                1 0.7367550            -1  6.756457e-03        3.176448
## 3503                1 0.7487002            -1  1.870166e-02        3.176448
## 3504                1 0.7312894            -1  1.290940e-03        3.176448
## 3505                1 0.7432537            -1  1.325515e-02        3.176448
## 3506                1 0.7333916            -1  3.393098e-03        3.176448
## 3507                1 0.7451737            -1  1.517524e-02        3.176448
## 3508                1 0.7357032            -1  5.704736e-03        3.176448
## 3509                1 0.7597765            -1  2.977803e-02        3.176448
## 3510                1 0.7301829            -1  1.844168e-04        3.176448
## 3511                1 0.7360566            -1  6.058049e-03        3.176448
## 3513                1 0.7286528            -1 -1.345759e-03        3.176448
## 3514                1 0.7367647            -1  6.766196e-03        3.176448
## 3515                1 0.7266949            -1 -3.303595e-03        3.176448
## 3516                1 0.7509406            -1  2.094205e-02        3.176448
## 3517                1 0.7193396            -1 -1.065889e-02        3.176448
## 3518                1 0.7313754            -1  1.376848e-03        3.176448
## 3519                1 0.7312953            -1  1.296743e-03        3.176448
## 3520                1 0.7470238            -1  1.702530e-02        3.176448
## 3521                1 0.7380165            -1  8.018019e-03        3.176448
## 3522                1 0.7328990            -1  2.900513e-03        3.176448
## 3523                1 0.7469880            -1  1.698944e-02        3.176448
## 3524                1 0.7170111            -1 -1.298738e-02        3.176448
## 3525                1 0.7316434            -1  1.644847e-03        3.176448
## 3526                1 0.7237480            -1 -6.250529e-03        3.176448
## 3528                1 0.7257346            -1 -4.263871e-03        3.176448
## 3529                1 0.7097792            -1 -2.021933e-02        3.176448
## 3530                1 0.7295005            -1 -4.980388e-04        3.176448
## 3531                1 0.7288401            -1 -1.158385e-03        3.176448
## 3532                1 0.7176938            -1 -1.230467e-02        3.176448
## 3533                1 0.7379310            -1  7.932524e-03        3.176448
## 3534                1 0.7325905            -1  2.592019e-03        3.176448
## 3535                1 0.7325949            -1  2.596427e-03        3.176448
## 3536                1 0.7297762            -1 -2.222622e-04        3.176448
## 3537                1 0.7132413            -1 -1.675724e-02        3.176448
## 3538                1 0.7452915            -1  1.529297e-02        3.176448
## 3539                1 0.7536232            -1  2.362468e-02        3.176448
## 3540                1 0.7366352            -1  6.636710e-03        3.176448
## 3541                1 0.7248255            -1 -5.172987e-03        3.176448
## 3542                1 0.7514749            -1  2.147642e-02        3.176448
## 3543                1 0.7187500            -1 -1.124851e-02        3.176448
## 3544                1 0.7487725            -1  1.877399e-02        3.176448
## 3545                1 0.7361516            -1  6.153093e-03        3.176448
## 3546                1 0.7237790            -1 -6.219487e-03        3.176448
## 3547                1 0.7216258            -1 -8.372743e-03        3.176448
## 3549                1 0.7172593            -1 -1.273919e-02        3.176448
## 3550                1 0.7282378            -1 -1.760718e-03        3.176448
## 3551                1 0.7376775            -1  7.679017e-03        3.176448
## 3552                1 0.7244094            -1 -5.589061e-03        3.176448
## 3553                1 0.7169991            -1 -1.299946e-02        3.176448
## 3554                1 0.7079245            -1 -2.207398e-02        3.176448
## 3555                1 0.7475983            -1  1.759974e-02        3.176448
## 3556                1 0.7318663            -1  1.867831e-03        3.176448
## 3557                1 0.7383459            -1  8.347355e-03        3.176448
## 3558                1 0.7295013            -1 -4.972421e-04        3.176448
## 3559                1 0.7529240            -1  2.292547e-02        3.176448
## 3560                1 0.7218310            -1 -8.167524e-03        3.176448
## 3561                1 0.7126100            -1 -1.738854e-02        3.176448
## 3562                1 0.7425150            -1  1.251646e-02        3.176448
## 3563                1 0.7098615            -1 -2.013706e-02        3.176448
## 3564                1 0.7111111            -1 -1.888740e-02        3.176448
## 3565                1 0.7281818            -1 -1.816692e-03        3.176448
## 3566                1 0.7423581            -1  1.235957e-02        5.176448
## 3570                1 0.7497982            -1  1.979971e-02        3.176448
## 3571                1 0.7037037            -1 -2.629481e-02        3.176448
## 3572                1 0.7050360            -1 -2.496254e-02        3.176448
## 3573                1 0.7234754            -1 -6.523155e-03        3.176448
## 3574                1 0.7275383            -1 -2.460161e-03        3.176448
## 3575                1 0.7062102            -1 -2.378832e-02        3.176448
## 3576                1 0.7070626            -1 -2.293591e-02        3.176448
## 3577                1 0.7378723            -1  7.873830e-03        3.176448
## 3578                1 0.7239082            -1 -6.090294e-03        3.176448
## 3579                1 0.7172996            -1 -1.269893e-02        3.176448
## 3581                1 0.7441441            -1  1.414563e-02        3.176448
## 3583                1 0.7431694            -1  1.317089e-02        3.176448
## 3584                1 0.7651057            -1  3.510723e-02        3.176448
## 3585                1 0.7257910            -1 -4.207522e-03        3.176448
## 3586                1 0.7057891            -1 -2.420945e-02        3.176448
## 3587                1 0.7100402            -1 -1.995835e-02        3.176448
## 3588                1 0.7174849            -1 -1.251358e-02        3.176448
## 3589                1 0.7270052            -1 -2.993359e-03        3.176448
## 3590                1 0.7161905            -1 -1.380803e-02        3.176448
## 3591                1 0.7109635            -1 -1.903505e-02        3.176448
## 3592                1 0.7276456            -1 -2.352899e-03       -1.823552
## 3594                1 0.7915937            -1  6.159519e-02       -1.823552
## 3595                1 0.7520976            -1  2.209913e-02       -1.823552
## 3596                1 0.7826087            -1  5.261019e-02       -1.823552
## 3597                1 0.7175503            -1 -1.244824e-02       -1.823552
## 3598                1 0.7232376            -1 -6.760912e-03       -1.823552
## 3599                1 0.7278719            -1 -2.126570e-03       -1.823552
## 3600                1 0.6984283            -1 -3.157022e-02       -1.823552
## 3601                1 0.7082616            -1 -2.173689e-02       -1.823552
## 3602                1 0.7600315            -1  3.003296e-02       -1.823552
## 3603                1 0.7761989            -1  4.620042e-02       -1.823552
## 3604                1 0.7711268            -1  4.112825e-02       -1.823552
## 3605                1 0.7471483            -1  1.714978e-02       -1.823552
## 3606                1 0.7191679            -1 -1.083061e-02       -1.823552
## 3607                1 0.8033959            -1  7.339738e-02       -1.823552
## 3608                1 0.7391304            -1  9.131925e-03       -1.823552
## 3609                1 0.7201835            -1 -9.815024e-03       -1.823552
## 3610                1 0.7538023            -1  2.380377e-02       -1.823552
## 3611                1 0.6769912            -1 -5.300736e-02       -1.823552
## 3612                1 0.7266776            -1 -3.320932e-03       -1.823552
## 3613                1 0.7009760            -1 -2.902247e-02       -1.823552
## 3614                1 0.7607699            -1  3.077143e-02       -1.823552
## 3615                1 0.7212598            -1 -8.738667e-03       -1.823552
## 3616                1 0.7417062            -1  1.170765e-02       -1.823552
## 3617                1 0.7513268            -1  2.132825e-02       -1.823552
## 3618                1 0.7719162            -1  4.191770e-02       -1.823552
## 3619                1 0.7254753            -1 -4.523225e-03       -1.823552
## 3620                1 0.7715328            -1  4.153434e-02       -1.823552
## 3621                1 0.8114234            -1  8.142488e-02       -1.823552
## 3622                1 0.7630368            -1  3.303830e-02       -1.823552
## 3623                1 0.7602041            -1  3.020557e-02       -1.823552
## 3624                1 0.7773585            -1  4.735998e-02       -1.823552
## 3625                1 0.7788378            -1  4.883930e-02       -1.823552
## 3626                1 0.7540426            -1  2.404404e-02       -1.823552
## 3627                1 0.7271228            -1 -2.875674e-03       -1.823552
## 3628                1 0.6669484            -1 -6.305007e-02       -1.823552
## 3629                1 0.7242869            -1 -5.711561e-03       -1.823552
## 3630                1 0.7424773            -1  1.247875e-02       -1.823552
## 3631                1 0.6706408            -1 -5.935768e-02       -1.823552
## 3632                1 0.7257926            -1 -4.205879e-03       -1.823552
## 3633                1 0.7761082            -1  4.610968e-02       -1.823552
## 3634                1 0.6731707            -1 -5.682778e-02       -1.823552
## 3635                1 0.6772152            -1 -5.278332e-02       -1.823552
## 3636                1 0.8016845            -1  7.168602e-02       -1.823552
## 3637                1 0.7941930            -1  6.419449e-02       -1.823552
## 3638                1 0.6648084            -1 -6.519015e-02       -1.823552
## 3639                1 0.7697466            -1  3.974814e-02       -1.823552
## 3640                1 0.6684783            -1 -6.152025e-02       -1.823552
## 3641                1 0.6921529            -1 -3.784559e-02       -1.823552
## 3642                1 0.6861565            -1 -4.384202e-02       -1.823552
## 3643                1 0.7436102            -1  1.361171e-02       -1.823552
## 3644                1 0.7442922            -1  1.429373e-02       -1.823552
## 3645                1 0.6940015            -1 -3.599699e-02       -1.823552
## 3646                1 0.7225532            -1 -7.445319e-03       -1.823552
## 3647                1 0.7443137            -1  1.431522e-02       -1.823552
## 3648                1 0.7282511            -1 -1.747389e-03       -1.823552
## 3649                1 0.7544248            -1  2.442627e-02       -1.823552
## 3650                1 0.6870629            -1 -4.293557e-02       -1.823552
## 3651                1 0.7162055            -1 -1.379298e-02       -1.823552
## 3652                1 0.7789825            -1  4.898398e-02       -1.823552
## 3653                1 0.6848320            -1 -4.516654e-02       -1.823552
## 3655                1 0.7508197            -1  2.082116e-02       -1.823552
## 3656                1 0.7490909            -1  1.909240e-02       -1.823552
## 3658                1 0.7419836            -1  1.198508e-02       -1.823552
## 3659                1 0.7699203            -1  3.992181e-02       -1.823552
## 3660                1 0.7402597            -1  1.026123e-02       -1.823552
## 3661                1 0.7307352            -1  7.366538e-04       -1.823552
## 3662                1 0.7461328            -1  1.613434e-02       -1.823552
## 3663                1 0.7718833            -1  4.188478e-02       -1.823552
## 3664                1 0.7566890            -1  2.669045e-02       -1.823552
## 3665                1 0.7646559            -1  3.465739e-02       -1.823552
## 3666                1 0.7510804            -1  2.108187e-02       -1.823552
## 3667                1 0.6734177            -1 -5.658079e-02       -1.823552
## 3668                1 0.8472103            -1  1.172118e-01       -1.823552
## 3669                1 0.7086743            -1 -2.132421e-02       -1.823552
## 3670                1 0.7395926            -1  9.594050e-03       -1.823552
## 3671                1 0.7659574            -1  3.595894e-02       -1.823552
## 3672                1 0.6833773            -1 -4.662120e-02       -1.823552
## 3673                1 0.7384883            -1  8.489761e-03       -1.823552
## 3674                1 0.7215958            -1 -8.402673e-03       -1.823552
## 3675                1 0.7342857            -1  4.287204e-03       -1.823552
## 3676                1 0.7760280            -1  4.602949e-02       -1.823552
## 3677                1 0.7195313            -1 -1.046726e-02       -1.823552
## 3678                1 0.7264808            -1 -3.517674e-03       -1.823552
## 3680                1 0.7509191            -1  2.092061e-02       -1.823552
## 3681                1 0.6754454            -1 -5.455312e-02       -1.823552
## 3682                1 0.7556904            -1  2.569193e-02       -1.823552
## 3683                1 0.6065129            -1 -1.234856e-01       -1.823552
## 3684                1 0.7177204            -1 -1.227812e-02       -1.823552
## 3685                1 0.7684729            -1  3.847440e-02       -1.823552
## 3686                1 0.7630631            -1  3.306455e-02       -1.823552
## 3687                1 0.7344237            -1  4.425166e-03       -1.823552
## 3688                1 0.6986644            -1 -3.133407e-02       -1.823552
## 3689                1 0.7856518            -1  5.565328e-02       -1.823552
## 3690                1 0.7580512            -1  2.805269e-02       -1.823552
## 3691                1 0.7464539            -1  1.645539e-02       -1.823552
## 3692                1 0.7412587            -1  1.126023e-02       -1.823552
## 3693                1 0.6815126            -1 -4.848590e-02       -1.823552
## 3694                1 0.7728041            -1  4.280554e-02       -1.823552
## 3695                1 0.6950509            -1 -3.494756e-02       -1.823552
## 3696                1 0.7009646            -1 -2.903388e-02       -1.823552
## 3698                1 0.7094088            -1 -2.058968e-02       -1.823552
## 3700                1 0.7051619            -1 -2.483666e-02       -1.823552
## 3701                1 0.7421576            -1  1.215910e-02       -1.823552
## 3703                1 0.7451839            -1  1.518538e-02       -1.823552
## 3704                1 0.7508681            -1  2.086955e-02       -1.823552
## 3705                1 0.6876847            -1 -4.231378e-02       -1.823552
## 3706                1 0.7379261            -1  7.927626e-03       -1.823552
## 3707                1 0.7579035            -1  2.790498e-02       -1.823552
## 3708                1 0.7583893            -1  2.839075e-02       -1.823552
## 3709                1 0.7994012            -1  6.940269e-02       -1.823552
## 3711                1 0.7277649            -1 -2.233622e-03       -1.823552
## 3712                1 0.7767481            -1  4.674959e-02       -1.823552
## 3713                1 0.7253650            -1 -4.633547e-03       -1.823552
## 3714                1 0.7072072            -1 -2.279130e-02       -1.823552
## 3715                1 0.7638462            -1  3.384764e-02       -1.823552
## 3716                1 0.7057938            -1 -2.420468e-02       -1.823552
## 3717                1 0.7588704            -1  2.887187e-02       -1.823552
## 3718                1 0.7245350            -1 -5.463523e-03       -1.823552
## 3719                1 0.7718855            -1  4.188701e-02       -1.823552
## 3720                1 0.7865520            -1  5.655348e-02       -1.823552
## 3721                1 0.7602524            -1  3.025386e-02       -1.823552
## 3722                1 0.7697654            -1  3.976691e-02       -1.823552
## 3723                1 0.7644342            -1  3.443567e-02       -1.823552
## 3724                1 0.7187500            -1 -1.124851e-02       -1.823552
## 3725                1 0.8003714            -1  7.037289e-02       -1.823552
## 3726                1 0.6909399            -1 -3.905863e-02       -1.823552
## 3727                1 0.7612428            -1  3.124434e-02       -1.823552
## 3728                1 0.7568710            -1  2.687253e-02       -1.823552
## 3729                1 0.8202443            -1  9.024582e-02       -1.823552
## 3731                1 0.7864542            -1  5.645567e-02       -1.823552
## 3734                1 0.7222723            -1 -7.726193e-03       -1.823552
## 3735                1 0.7047898            -1 -2.520868e-02       -1.823552
## 3736                1 0.6818182            -1 -4.818033e-02       -1.823552
##      months_since_start_c     X.utm   Y.utm
## 1              -47.338028 1010045.4 2956118
## 2              -47.338028 1010045.4 2956118
## 3              -47.338028 1010045.4 2956118
## 4              -47.338028 1010045.4 2956118
## 5              -47.338028 1010045.4 2956118
## 6              -47.338028 1010045.4 2956118
## 7              -47.338028 1010045.4 2956118
## 8              -47.338028 1010045.4 2956118
## 9              -47.338028 1010045.4 2956118
## 10             -47.338028 1010045.4 2956118
## 11             -47.338028 1010045.4 2956118
## 12             -47.338028 1010045.4 2956118
## 13             -47.338028 1010045.4 2956118
## 14             -47.338028 1010045.4 2956118
## 16             -47.338028 1010045.4 2956118
## 17             -47.338028 1010045.4 2956118
## 18             -47.338028 1010045.4 2956118
## 19             -47.338028 1010045.4 2956118
## 20             -47.338028 1010045.4 2956118
## 21             -47.338028 1010045.4 2956118
## 22             -47.338028 1010045.4 2956118
## 23             -47.338028 1010045.4 2956118
## 24             -47.338028 1010045.4 2956118
## 25             -47.338028 1010045.4 2956118
## 26             -47.338028 1010045.4 2956118
## 104            -47.338028 1158272.9 2844458
## 105            -47.338028 1158272.9 2844458
## 106            -47.338028 1158272.9 2844458
## 107            -47.338028 1158272.9 2844458
## 109            -47.338028 1158272.9 2844458
## 110            -47.338028 1158272.9 2844458
## 111            -47.338028 1158272.9 2844458
## 112            -47.338028 1158272.9 2844458
## 114            -47.338028 1158272.9 2844458
## 141            -47.338028 1171365.6 2803203
## 142            -47.338028 1171365.6 2803203
## 143            -47.338028 1171365.6 2803203
## 144            -47.338028 1171365.6 2803203
## 146            -47.338028 1171365.6 2803203
## 147            -47.338028 1171365.6 2803203
## 148            -47.338028 1171365.6 2803203
## 149            -47.338028 1171365.6 2803203
## 150            -47.338028 1171365.6 2803203
## 152            -47.338028 1171365.6 2803203
## 153            -47.338028 1171365.6 2803203
## 202            -47.338028 1034209.3 3102002
## 203            -47.338028 1034209.3 3102002
## 204            -47.338028 1034209.3 3102002
## 205            -47.338028 1034209.3 3102002
## 206            -47.338028 1034209.3 3102002
## 207            -47.338028 1034209.3 3102002
## 208            -47.338028 1034209.3 3102002
## 209            -47.338028 1034209.3 3102002
## 210            -47.338028 1034209.3 3102002
## 211            -47.338028 1034209.3 3102002
## 213            -47.338028 1034209.3 3102002
## 214            -47.338028 1034209.3 3102002
## 215            -47.338028 1034209.3 3102002
## 217            -47.338028 1034209.3 3102002
## 219            -47.338028 1034209.3 3102002
## 221            -47.338028 1034209.3 3102002
## 222            -47.338028 1034209.3 3102002
## 223            -47.338028 1034209.3 3102002
## 224            -47.338028 1034209.3 3102002
## 225            -47.338028 1034209.3 3102002
## 226            -47.338028 1034209.3 3102002
## 228            -47.338028 1034209.3 3102002
## 229            -47.338028 1034209.3 3102002
## 230            -47.338028 1034209.3 3102002
## 837            -36.338028 1164740.8 2794842
## 839            -36.338028 1164740.8 2794842
## 840            -36.338028 1164740.8 2794842
## 841            -36.338028 1164740.8 2794842
## 844            -36.338028 1164740.8 2794842
## 845            -36.338028 1164740.8 2794842
## 847            -36.338028 1032899.8 3098294
## 848            -36.338028 1032899.8 3098294
## 849            -36.338028 1032899.8 3098294
## 850            -36.338028 1032899.8 3098294
## 851            -36.338028 1032899.8 3098294
## 852            -36.338028 1032899.8 3098294
## 853            -36.338028 1032899.8 3098294
## 854            -36.338028 1032899.8 3098294
## 856            -36.338028 1032899.8 3098294
## 857            -36.338028 1032899.8 3098294
## 858            -36.338028 1032899.8 3098294
## 859            -36.338028 1032899.8 3098294
## 860            -36.338028 1032899.8 3098294
## 861            -36.338028 1032899.8 3098294
## 862            -36.338028 1032899.8 3098294
## 863            -36.338028 1032899.8 3098294
## 865            -36.338028 1032899.8 3098294
## 866            -36.338028 1032899.8 3098294
## 867            -36.338028 1032899.8 3098294
## 868            -36.338028 1032899.8 3098294
## 870            -36.338028 1032899.8 3098294
## 871            -36.338028 1032899.8 3098294
## 872            -36.338028 1032899.8 3098294
## 873            -36.338028 1032899.8 3098294
## 874            -36.338028 1032899.8 3098294
## 875            -36.338028 1032899.8 3098294
## 877            -36.338028 1032899.8 3098294
## 878            -36.338028 1032899.8 3098294
## 879            -36.338028 1032899.8 3098294
## 880            -36.338028 1032899.8 3098294
## 881            -36.338028 1032899.8 3098294
## 882            -36.338028 1032899.8 3098294
## 883            -36.338028 1032899.8 3098294
## 884            -36.338028 1032899.8 3098294
## 886            -36.338028 1032899.8 3098294
## 887            -36.338028 1032899.8 3098294
## 888            -36.338028 1032899.8 3098294
## 889            -36.338028 1032899.8 3098294
## 890            -36.338028 1032899.8 3098294
## 905            -36.338028 1150184.3 2776463
## 907            -36.338028 1150184.3 2776463
## 911            -36.338028 1150184.3 2776463
## 912            -36.338028 1150184.3 2776463
## 915            -36.338028 1150184.3 2776463
## 917            -36.338028 1150184.3 2776463
## 918            -36.338028 1150184.3 2776463
## 975            -24.338028 1164740.8 2794842
## 978            -24.338028 1164740.8 2794842
## 986            -24.338028 1164740.8 2794842
## 990            -24.338028 1164740.8 2794842
## 993            -24.338028 1164740.8 2794842
## 995            -24.338028 1164740.8 2794842
## 996            -24.338028 1164740.8 2794842
## 997            -24.338028 1164740.8 2794842
## 1001           -24.338028 1164740.8 2794842
## 1012           -24.338028 1164740.8 2794842
## 1017           -24.338028 1164740.8 2794842
## 1023           -24.338028 1032899.8 3098294
## 1024           -24.338028 1032899.8 3098294
## 1025           -24.338028 1032899.8 3098294
## 1026           -24.338028 1032899.8 3098294
## 1027           -24.338028 1032899.8 3098294
## 1028           -24.338028 1032899.8 3098294
## 1029           -24.338028 1032899.8 3098294
## 1030           -24.338028 1032899.8 3098294
## 1031           -24.338028 1032899.8 3098294
## 1032           -24.338028 1032899.8 3098294
## 1033           -24.338028 1032899.8 3098294
## 1034           -24.338028 1032899.8 3098294
## 1035           -24.338028 1032899.8 3098294
## 1036           -24.338028 1032899.8 3098294
## 1037           -24.338028 1032899.8 3098294
## 1038           -24.338028 1032899.8 3098294
## 1039           -24.338028 1032899.8 3098294
## 1040           -24.338028 1032899.8 3098294
## 1041           -24.338028 1032899.8 3098294
## 1042           -24.338028 1032899.8 3098294
## 1043           -24.338028 1032899.8 3098294
## 1044           -24.338028 1032899.8 3098294
## 1045           -24.338028 1032899.8 3098294
## 1046           -24.338028 1032899.8 3098294
## 1047           -24.338028 1032899.8 3098294
## 1048           -24.338028 1032899.8 3098294
## 1049           -24.338028 1032899.8 3098294
## 1050           -24.338028 1032899.8 3098294
## 1051           -24.338028 1032899.8 3098294
## 1052           -24.338028 1032899.8 3098294
## 1054           -24.338028 1032899.8 3098294
## 1055           -24.338028 1032899.8 3098294
## 1056           -24.338028 1032899.8 3098294
## 1057           -24.338028 1032899.8 3098294
## 1058           -24.338028 1032899.8 3098294
## 1059           -24.338028 1032899.8 3098294
## 1060           -24.338028 1032899.8 3098294
## 1061           -24.338028 1032899.8 3098294
## 1062           -24.338028 1032899.8 3098294
## 1063           -24.338028 1032899.8 3098294
## 1064           -24.338028 1032899.8 3098294
## 1065           -24.338028 1032899.8 3098294
## 1066           -24.338028 1032899.8 3098294
## 1067           -24.338028 1032899.8 3098294
## 1068           -24.338028 1032899.8 3098294
## 1069           -24.338028 1032899.8 3098294
## 1070           -24.338028 1032899.8 3098294
## 1071           -24.338028 1032899.8 3098294
## 1072           -24.338028 1032899.8 3098294
## 1073           -24.338028 1032899.8 3098294
## 1074           -24.338028 1032899.8 3098294
## 1075           -24.338028 1032899.8 3098294
## 1076           -24.338028 1032899.8 3098294
## 1077           -24.338028 1000240.8 3196176
## 1078           -24.338028 1000240.8 3196176
## 1079           -24.338028 1000240.8 3196176
## 1080           -24.338028 1000240.8 3196176
## 1081           -24.338028 1000240.8 3196176
## 1082           -24.338028 1000240.8 3196176
## 1083           -24.338028 1000240.8 3196176
## 1084           -24.338028 1000240.8 3196176
## 1085           -24.338028 1000240.8 3196176
## 1086           -24.338028 1000240.8 3196176
## 1088           -24.338028 1000240.8 3196176
## 1089           -24.338028 1000240.8 3196176
## 1090           -24.338028 1000240.8 3196176
## 1091           -24.338028 1000240.8 3196176
## 1092           -24.338028 1000240.8 3196176
## 1093           -24.338028 1000240.8 3196176
## 1094           -24.338028 1000240.8 3196176
## 1095           -24.338028 1000240.8 3196176
## 1096           -24.338028 1000240.8 3196176
## 1097           -24.338028 1000240.8 3196176
## 1098           -24.338028 1000240.8 3196176
## 1099           -24.338028 1000240.8 3196176
## 1100           -24.338028 1000240.8 3196176
## 1101           -24.338028 1000240.8 3196176
## 1103           -24.338028 1000240.8 3196176
## 1104           -24.338028 1000240.8 3196176
## 1105           -24.338028 1000240.8 3196176
## 1106           -24.338028 1000240.8 3196176
## 1107           -24.338028 1000240.8 3196176
## 1108           -24.338028 1000240.8 3196176
## 1110           -24.338028 1000240.8 3196176
## 1111           -24.338028 1000240.8 3196176
## 1112           -24.338028 1000240.8 3196176
## 1117           -24.338028 1150184.3 2776463
## 1118           -24.338028 1150184.3 2776463
## 1119           -24.338028 1150184.3 2776463
## 1121           -24.338028 1150184.3 2776463
## 1122           -24.338028 1150184.3 2776463
## 1124           -24.338028 1150184.3 2776463
## 1125            -4.338028  949182.1 3290538
## 1126            -4.338028  949182.1 3290538
## 1127            -4.338028  949182.1 3290538
## 1128            -4.338028  949182.1 3290538
## 1129            -4.338028  949182.1 3290538
## 1130            -4.338028  949182.1 3290538
## 1131            -4.338028  949182.1 3290538
## 1132            -4.338028  949182.1 3290538
## 1133            -4.338028  949182.1 3290538
## 1134            -4.338028  949182.1 3290538
## 1135            -4.338028  949182.1 3290538
## 1136            -4.338028  949182.1 3290538
## 1137            -4.338028  949182.1 3290538
## 1138            -4.338028  949182.1 3290538
## 1142            -4.338028  949182.1 3290538
## 1143            -4.338028  949182.1 3290538
## 1144            -4.338028  949182.1 3290538
## 1146            -4.338028  949182.1 3290538
## 1148            -4.338028  949182.1 3290538
## 1155            -4.338028  949182.1 3290538
## 1156            -4.338028  949182.1 3290538
## 1158            -4.338028  949182.1 3290538
## 1160            -4.338028  949182.1 3290538
## 1161            -4.338028  949182.1 3290538
## 1162            -4.338028  949182.1 3290538
## 1164            -4.338028  949182.1 3290538
## 1166            -4.338028  949182.1 3290538
## 1167            -4.338028  949182.1 3290538
## 1170            -4.338028  949182.1 3290538
## 1174            -4.338028  949182.1 3290538
## 1176            -4.338028  949182.1 3290538
## 1177            -4.338028  949182.1 3290538
## 1178            -4.338028  949182.1 3290538
## 1179            -4.338028  949182.1 3290538
## 1180            -4.338028  949182.1 3290538
## 1181            -4.338028  949182.1 3290538
## 1182            -4.338028 1155594.4 2835483
## 1185            -4.338028 1155594.4 2835483
## 1186            -4.338028 1155594.4 2835483
## 1188            -4.338028 1155594.4 2835483
## 1189            -4.338028 1155594.4 2835483
## 1191            -4.338028 1155594.4 2835483
## 1192            -4.338028 1155594.4 2835483
## 1193            -4.338028 1155594.4 2835483
## 1194            -4.338028 1155594.4 2835483
## 1203            -4.338028 1171365.6 2803203
## 1204            -4.338028 1171365.6 2803203
## 1205            -4.338028 1171365.6 2803203
## 1208            -4.338028 1171365.6 2803203
## 1209            -4.338028 1171365.6 2803203
## 1210            -4.338028 1171365.6 2803203
## 1213            -4.338028 1171365.6 2803203
## 1215            -4.338028 1171365.6 2803203
## 1217            -4.338028 1171365.6 2803203
## 1219            -4.338028 1171365.6 2803203
## 1221            -4.338028 1171365.6 2803203
## 1222            -4.338028 1171365.6 2803203
## 1225            -4.338028 1171365.6 2803203
## 1228            -4.338028 1171365.6 2803203
## 1230            -4.338028 1171365.6 2803203
## 1235            -4.338028 1171365.6 2803203
## 1238            -4.338028 1171365.6 2803203
## 1239            -4.338028 1171365.6 2803203
## 1241            -4.338028 1171365.6 2803203
## 1246            -4.338028 1171365.6 2803203
## 1247            -4.338028 1171365.6 2803203
## 1248            -4.338028 1164740.8 2794842
## 1249            -4.338028 1164740.8 2794842
## 1250            -4.338028 1164740.8 2794842
## 1252            -4.338028 1164740.8 2794842
## 1253            -4.338028 1164740.8 2794842
## 1255            -4.338028 1164740.8 2794842
## 1257            -4.338028 1164740.8 2794842
## 1258            -4.338028 1164740.8 2794842
## 1268            -4.338028 1034251.3 3101958
## 1272            -4.338028 1034251.3 3101958
## 1276            -4.338028  999804.3 3197182
## 1281            -4.338028  999804.3 3197182
## 1285            -4.338028  999804.3 3197182
## 1289            -4.338028  999804.3 3197182
## 1290            -4.338028  999804.3 3197182
## 1291            -4.338028  999804.3 3197182
## 1292            -4.338028  999804.3 3197182
## 1294            -4.338028 1000240.8 3196176
## 1295            -4.338028 1000240.8 3196176
## 1296            -4.338028 1000240.8 3196176
## 1297            -4.338028 1000240.8 3196176
## 1298            -4.338028 1000240.8 3196176
## 1299            -4.338028 1000240.8 3196176
## 1300            -4.338028 1000240.8 3196176
## 1301            -4.338028 1000240.8 3196176
## 1302            -4.338028 1000240.8 3196176
## 1303            -4.338028 1000240.8 3196176
## 1304            -4.338028 1000240.8 3196176
## 1306            -4.338028 1000240.8 3196176
## 1307            -4.338028 1000240.8 3196176
## 1308            -4.338028 1000240.8 3196176
## 1309            -4.338028 1000240.8 3196176
## 1310            -4.338028 1000240.8 3196176
## 1311            -4.338028 1000240.8 3196176
## 1312            -4.338028 1000240.8 3196176
## 1313            -4.338028 1000240.8 3196176
## 1315            -4.338028 1000240.8 3196176
## 1316            -4.338028 1000240.8 3196176
## 1317            -4.338028 1000240.8 3196176
## 1318            -4.338028 1000240.8 3196176
## 1319            -4.338028 1000240.8 3196176
## 1320            -4.338028 1000240.8 3196176
## 1321            -4.338028 1000240.8 3196176
## 1322            -4.338028 1000240.8 3196176
## 1323            -4.338028 1000240.8 3196176
## 1324            -4.338028 1000240.8 3196176
## 1325            -4.338028 1000240.8 3196176
## 1326            -4.338028 1000240.8 3196176
## 1327            -4.338028 1000240.8 3196176
## 1328            -4.338028 1000240.8 3196176
## 1329            -4.338028 1000240.8 3196176
## 1330            -4.338028 1000240.8 3196176
## 1331            -4.338028 1000240.8 3196176
## 1332            -4.338028 1000240.8 3196176
## 1333            -4.338028 1000240.8 3196176
## 1334            -4.338028 1000240.8 3196176
## 1335            -4.338028 1000240.8 3196176
## 1336            -4.338028 1000240.8 3196176
## 1337            -4.338028 1000240.8 3196176
## 1338            -4.338028 1000240.8 3196176
## 1340            -4.338028 1152004.7 2778276
## 1341            -4.338028 1152004.7 2778276
## 1343            -4.338028 1152004.7 2778276
## 1344            -4.338028 1152004.7 2778276
## 1346            -4.338028 1152004.7 2778276
## 1347            -4.338028 1152004.7 2778276
## 1349            -4.338028 1152004.7 2778276
## 1354            -4.338028 1152004.7 2778276
## 1355            -4.338028 1152004.7 2778276
## 1356            -4.338028 1152004.7 2778276
## 1357            -4.338028 1152004.7 2778276
## 1358            -4.338028 1152004.7 2778276
## 1361            -4.338028 1152004.7 2778276
## 1364            -4.338028 1152004.7 2778276
## 1365            -4.338028 1152004.7 2778276
## 1367            -4.338028 1152004.7 2778276
## 1368            -4.338028 1152004.7 2778276
## 1369            -4.338028 1152004.7 2778276
## 1370            -4.338028 1152004.7 2778276
## 1371            -4.338028 1152004.7 2778276
## 1372            -4.338028 1152004.7 2778276
## 1375            -4.338028 1152004.7 2778276
## 1545             3.661972  949670.6 3290885
## 1546             3.661972  949670.6 3290885
## 1547             3.661972  949670.6 3290885
## 1549             3.661972  949670.6 3290885
## 1550             3.661972  949670.6 3290885
## 1552             3.661972  949670.6 3290885
## 1553             3.661972  949670.6 3290885
## 1554             3.661972  949670.6 3290885
## 1555             3.661972  949670.6 3290885
## 1556             3.661972  949670.6 3290885
## 1557             3.661972  949670.6 3290885
## 1558             3.661972  949670.6 3290885
## 1559             3.661972  949670.6 3290885
## 1560             3.661972  949670.6 3290885
## 1562             3.661972  949670.6 3290885
## 1563             3.661972  949670.6 3290885
## 1565             3.661972  949670.6 3290885
## 1566             3.661972  949670.6 3290885
## 1567             3.661972  949670.6 3290885
## 1568             3.661972  949670.6 3290885
## 1569             3.661972  949670.6 3290885
## 1571             3.661972  949670.6 3290885
## 1572             3.661972  949670.6 3290885
## 1573             3.661972  949670.6 3290885
## 1574             3.661972  949670.6 3290885
## 1575             3.661972  949670.6 3290885
## 1576             3.661972  949670.6 3290885
## 1577             3.661972  949670.6 3290885
## 1578             3.661972  949670.6 3290885
## 1579             3.661972  949670.6 3290885
## 1580             3.661972  949670.6 3290885
## 1581             3.661972  949670.6 3290885
## 1582             3.661972  949670.6 3290885
## 1583             3.661972  949670.6 3290885
## 1584             3.661972  949670.6 3290885
## 1585             3.661972  949670.6 3290885
## 1586             3.661972  949670.6 3290885
## 1587             3.661972  949670.6 3290885
## 1589             3.661972  949670.6 3290885
## 1590             3.661972  949670.6 3290885
## 1591             3.661972  949670.6 3290885
## 1592             3.661972  949670.6 3290885
## 1593             3.661972  949670.6 3290885
## 1594             3.661972  949670.6 3290885
## 1595             3.661972  949670.6 3290885
## 1596             3.661972  949670.6 3290885
## 1597             3.661972  949670.6 3290885
## 1598             3.661972  949670.6 3290885
## 1599             3.661972  949670.6 3290885
## 1600             3.661972  949670.6 3290885
## 1601             3.661972  949670.6 3290885
## 1602             3.661972  949670.6 3290885
## 1603             3.661972  949670.6 3290885
## 1605             3.661972 1155612.8 2835467
## 1607             3.661972 1155612.8 2835467
## 1608             3.661972 1155612.8 2835467
## 1610             3.661972 1155612.8 2835467
## 1611             3.661972 1155612.8 2835467
## 1612             3.661972 1155612.8 2835467
## 1613             3.661972 1155612.8 2835467
## 1614             3.661972 1155612.8 2835467
## 1615             3.661972 1155612.8 2835467
## 1616             3.661972 1155612.8 2835467
## 1617             3.661972 1155612.8 2835467
## 1618             3.661972 1155612.8 2835467
## 1620             3.661972 1155612.8 2835467
## 1621             3.661972 1155612.8 2835467
## 1622             3.661972 1155612.8 2835467
## 1624             3.661972 1155612.8 2835467
## 1625             3.661972 1155612.8 2835467
## 1626             3.661972 1155612.8 2835467
## 1627             3.661972 1155612.8 2835467
## 1628             3.661972 1155612.8 2835467
## 1629             3.661972 1155612.8 2835467
## 1630             3.661972 1155612.8 2835467
## 1631             3.661972 1155612.8 2835467
## 1632             3.661972 1155612.8 2835467
## 1634             3.661972 1155612.8 2835467
## 1635             3.661972 1155612.8 2835467
## 1636             3.661972 1155612.8 2835467
## 1641             3.661972 1155612.8 2835467
## 1642             3.661972 1155612.8 2835467
## 1643             3.661972 1155612.8 2835467
## 1644             3.661972 1155612.8 2835467
## 1645             3.661972 1155612.8 2835467
## 1646             3.661972 1155612.8 2835467
## 1647             3.661972 1155612.8 2835467
## 1648             3.661972 1155612.8 2835467
## 1651             3.661972 1155612.8 2835467
## 1652             3.661972 1155612.8 2835467
## 1654             3.661972 1155612.8 2835467
## 1655             3.661972 1155612.8 2835467
## 1656             3.661972 1155612.8 2835467
## 1657             3.661972 1155612.8 2835467
## 1658             3.661972 1155612.8 2835467
## 1659             3.661972 1155612.8 2835467
## 1660             3.661972 1155612.8 2835467
## 1661             3.661972 1155612.8 2835467
## 1662             3.661972 1155612.8 2835467
## 1663             3.661972 1155612.8 2835467
## 1664             3.661972 1155612.8 2835467
## 1665             3.661972 1155612.8 2835467
## 1666             3.661972 1155612.8 2835467
## 1667             3.661972 1155612.8 2835467
## 1668             3.661972 1155612.8 2835467
## 1669             3.661972 1155612.8 2835467
## 1670             3.661972 1155612.8 2835467
## 1671             3.661972 1155612.8 2835467
## 1672             3.661972 1155612.8 2835467
## 1673             3.661972 1155612.8 2835467
## 1674             3.661972 1155612.8 2835467
## 1675             3.661972 1155612.8 2835467
## 1676             3.661972 1155612.8 2835467
## 1677             3.661972 1155612.8 2835467
## 1678             3.661972 1155612.8 2835467
## 1679             3.661972 1155612.8 2835467
## 1680             3.661972 1155612.8 2835467
## 1681             3.661972 1155612.8 2835467
## 1682             3.661972 1155612.8 2835467
## 1683             3.661972 1155612.8 2835467
## 1684             3.661972 1155612.8 2835467
## 1685             3.661972 1155612.8 2835467
## 1686             3.661972 1155612.8 2835467
## 1687             3.661972 1155612.8 2835467
## 1688             3.661972 1155612.8 2835467
## 1689             3.661972 1155612.8 2835467
## 1690             3.661972 1155612.8 2835467
## 1691             3.661972 1155612.8 2835467
## 1692             3.661972 1155612.8 2835467
## 1693             3.661972 1155612.8 2835467
## 1694             3.661972 1155612.8 2835467
## 1695             3.661972 1155612.8 2835467
## 1696             3.661972 1155612.8 2835467
## 1697             3.661972 1155612.8 2835467
## 1698             3.661972 1155612.8 2835467
## 1699             3.661972 1155612.8 2835467
## 1700             3.661972 1155612.8 2835467
## 1701             3.661972 1155612.8 2835467
## 1702             3.661972 1155612.8 2835467
## 1703             3.661972 1155612.8 2835467
## 1704             3.661972 1155612.8 2835467
## 1705             3.661972 1155612.8 2835467
## 1706             3.661972 1155612.8 2835467
## 1707             3.661972 1155612.8 2835467
## 1708             3.661972 1155612.8 2835467
## 1709             3.661972 1155612.8 2835467
## 1710             3.661972 1155612.8 2835467
## 1711             3.661972 1155612.8 2835467
## 1712             3.661972 1155612.8 2835467
## 1713             3.661972 1155612.8 2835467
## 1714             3.661972 1155612.8 2835467
## 1715             3.661972 1155612.8 2835467
## 1716             3.661972 1155612.8 2835467
## 1717             3.661972 1155612.8 2835467
## 1718             3.661972 1155612.8 2835467
## 1719             3.661972 1155612.8 2835467
## 1720             3.661972 1155612.8 2835467
## 1721             3.661972 1155612.8 2835467
## 1722             3.661972 1155612.8 2835467
## 1723             3.661972 1155612.8 2835467
## 1724             3.661972 1155612.8 2835467
## 1725             3.661972 1155612.8 2835467
## 1726             3.661972 1155612.8 2835467
## 1727             3.661972 1155612.8 2835467
## 1728             3.661972 1155612.8 2835467
## 1729             3.661972 1155612.8 2835467
## 1730             3.661972 1155612.8 2835467
## 1731             3.661972 1155612.8 2835467
## 1732             3.661972 1155612.8 2835467
## 1733             3.661972 1155612.8 2835467
## 1734             3.661972 1165445.0 2795436
## 1735             3.661972 1165445.0 2795436
## 1736             3.661972 1165445.0 2795436
## 1738             3.661972 1165445.0 2795436
## 1739             3.661972 1165445.0 2795436
## 1740             3.661972 1165445.0 2795436
## 1741             3.661972 1165445.0 2795436
## 1742             3.661972 1165445.0 2795436
## 1743             3.661972 1165445.0 2795436
## 1744             3.661972 1165445.0 2795436
## 1746             3.661972 1165445.0 2795436
## 1747             3.661972 1165445.0 2795436
## 1748             3.661972 1165445.0 2795436
## 1749             3.661972 1165445.0 2795436
## 1750             3.661972 1165445.0 2795436
## 1751             3.661972 1165442.5 2795425
## 1752             3.661972 1165442.5 2795425
## 1753             3.661972 1165442.5 2795425
## 1754             3.661972 1165442.5 2795425
## 1755             3.661972 1165442.5 2795425
## 1758             3.661972 1165442.5 2795425
## 1759             3.661972 1165442.5 2795425
## 1760             3.661972 1165442.5 2795425
## 1761             3.661972 1165442.5 2795425
## 1762             3.661972 1165442.5 2795425
## 1763             3.661972 1165442.5 2795425
## 1764             3.661972 1165442.5 2795425
## 1765             3.661972 1165442.5 2795425
## 1766             3.661972 1165442.5 2795425
## 1768             3.661972 1165442.5 2795425
## 1769             3.661972 1171365.6 2803203
## 1770             3.661972 1171365.6 2803203
## 1771             3.661972 1171365.6 2803203
## 1772             3.661972 1171365.6 2803203
## 1774             3.661972 1171365.6 2803203
## 1775             3.661972 1171365.6 2803203
## 1776             3.661972 1171365.6 2803203
## 1779             3.661972 1171365.6 2803203
## 1780             3.661972 1171365.6 2803203
## 1782             3.661972 1171365.6 2803203
## 1785             3.661972 1171365.6 2803203
## 1786             3.661972 1171365.6 2803203
## 1788             3.661972 1171365.6 2803203
## 1789             3.661972 1171365.6 2803203
## 1790             3.661972 1171365.6 2803203
## 1791             3.661972 1171365.6 2803203
## 1793             3.661972 1171365.6 2803203
## 1800             3.661972 1171365.6 2803203
## 1802             3.661972 1171365.6 2803203
## 1805             3.661972 1171365.6 2803203
## 1806             3.661972 1171365.6 2803203
## 1807             3.661972 1171365.6 2803203
## 1808             3.661972 1171365.6 2803203
## 1809             3.661972 1171365.6 2803203
## 1810             3.661972 1171365.6 2803203
## 1811             3.661972 1171365.6 2803203
## 1812             3.661972 1171365.6 2803203
## 1813             3.661972 1171365.6 2803203
## 1814             3.661972 1171365.6 2803203
## 1815             3.661972 1171365.6 2803203
## 1816             3.661972 1171365.6 2803203
## 1817             3.661972 1171365.6 2803203
## 1819             3.661972 1171365.6 2803203
## 1821             3.661972 1171365.6 2803203
## 1822             3.661972 1171365.6 2803203
## 1823             3.661972 1171365.6 2803203
## 1824             3.661972 1171365.6 2803203
## 1826             3.661972 1034256.3 3101957
## 1827             3.661972 1034256.3 3101957
## 1828             3.661972 1034256.3 3101957
## 1829             3.661972 1034256.3 3101957
## 1831             3.661972 1034256.3 3101957
## 1832             3.661972 1034256.3 3101957
## 1833             3.661972 1034256.3 3101957
## 1834             3.661972 1034256.3 3101957
## 1835             3.661972 1034256.3 3101957
## 1836             3.661972 1034256.3 3101957
## 1837             3.661972 1034256.3 3101957
## 1838             3.661972 1034256.3 3101957
## 1839             3.661972 1034256.3 3101957
## 1840             3.661972 1034256.3 3101957
## 1842             3.661972 1034256.3 3101957
## 1844             3.661972 1034256.3 3101957
## 1845             3.661972 1034256.3 3101957
## 1846             3.661972 1034256.3 3101957
## 1847             3.661972 1034256.3 3101957
## 1848             3.661972 1034256.3 3101957
## 1849             3.661972 1034256.3 3101957
## 1850             3.661972 1034256.3 3101957
## 1852             3.661972 1034256.3 3101957
## 1853             3.661972 1034256.3 3101957
## 1854             3.661972 1034256.3 3101957
## 1855             3.661972 1034256.3 3101957
## 1856             3.661972 1034256.3 3101957
## 1857             3.661972 1034256.3 3101957
## 1858             3.661972 1034256.4 3101957
## 1859             3.661972 1034256.4 3101957
## 1862             3.661972 1034256.4 3101957
## 1863             3.661972 1034256.4 3101957
## 1864             3.661972 1034256.4 3101957
## 1867             3.661972 1034256.4 3101957
## 1868             3.661972 1034256.4 3101957
## 1871             3.661972 1034256.4 3101957
## 1874             3.661972 1034256.4 3101957
## 1876             3.661972 1034256.4 3101957
## 1878             3.661972 1034256.4 3101957
## 1879             3.661972 1034256.4 3101957
## 1881             3.661972 1034256.4 3101957
## 1882             3.661972 1034256.4 3101957
## 1884             3.661972 1034256.4 3101957
## 1885             3.661972 1034256.4 3101957
## 1887             3.661972 1034256.4 3101957
## 1892             3.661972 1034256.4 3101957
## 1894             3.661972 1034256.4 3101957
## 1895             3.661972 1034256.4 3101957
## 1896             3.661972 1034256.4 3101957
## 1897             3.661972 1034256.4 3101957
## 1898             3.661972 1034256.4 3101957
## 1901             3.661972 1034256.4 3101957
## 1905             3.661972 1034256.4 3101957
## 1907             3.661972 1034256.4 3101957
## 1912             3.661972 1034256.4 3101957
## 1914             3.661972 1034256.4 3101957
## 1915             3.661972 1034256.4 3101957
## 1917             3.661972  999797.9 3197189
## 1918             3.661972  999797.9 3197189
## 1922             3.661972  999797.9 3197189
## 1923             3.661972  999797.9 3197189
## 1924             3.661972  999797.9 3197189
## 1925             3.661972  999797.9 3197189
## 1927             3.661972  999797.9 3197189
## 1928             3.661972  999797.9 3197189
## 1929             3.661972  999797.9 3197189
## 1930             3.661972  999797.9 3197189
## 1933             3.661972  999797.9 3197189
## 1935             3.661972  999797.9 3197189
## 1936             3.661972  999797.9 3197189
## 1937             3.661972  999797.9 3197189
## 1938             3.661972  999797.9 3197189
## 1939             3.661972  999797.9 3197189
## 1941             3.661972  999797.9 3197189
## 1942             3.661972  999797.9 3197189
## 1944             3.661972  999797.9 3197189
## 1945             3.661972  999797.9 3197189
## 1946             3.661972  999797.9 3197189
## 1947             3.661972  999797.9 3197189
## 1948             3.661972  999797.9 3197189
## 1949             3.661972  999797.9 3197189
## 1952             3.661972  999797.9 3197189
## 1953             3.661972  999797.9 3197189
## 1955             3.661972  999797.9 3197189
## 1956             3.661972  999797.9 3197189
## 1958             3.661972  999797.9 3197189
## 1959             3.661972  999797.9 3197189
## 1960             3.661972  999797.9 3197189
## 1963             3.661972  999797.9 3197189
## 1964             3.661972  999797.9 3197189
## 1965             3.661972  999797.9 3197189
## 1973             3.661972  999797.9 3197189
## 1975            16.661972  949529.7 3290857
## 1976            16.661972  949529.7 3290857
## 1977            16.661972  949529.7 3290857
## 1978            16.661972  949529.7 3290857
## 1979            16.661972  949529.7 3290857
## 1980            16.661972  949529.7 3290857
## 1981            16.661972  949529.7 3290857
## 1982            16.661972  949529.7 3290857
## 1983            16.661972  949529.7 3290857
## 1984            16.661972  949529.7 3290857
## 1985            16.661972  949529.7 3290857
## 1986            16.661972  949529.7 3290857
## 1987            16.661972  949529.7 3290857
## 1988            16.661972  949529.7 3290857
## 1989            16.661972  949529.7 3290857
## 1990            16.661972  949529.7 3290857
## 1992            16.661972  949529.7 3290857
## 1993            16.661972  949529.7 3290857
## 1994            16.661972  949529.7 3290857
## 1995            16.661972  949529.7 3290857
## 1996            16.661972  949529.7 3290857
## 1997            16.661972  949529.7 3290857
## 1998            16.661972  949529.7 3290857
## 1999            16.661972  949529.7 3290857
## 2000            16.661972  949529.7 3290857
## 2001            16.661972  949529.7 3290857
## 2002            16.661972  949529.7 3290857
## 2003            16.661972  949529.7 3290857
## 2004            16.661972  949529.7 3290857
## 2005            16.661972  949529.7 3290857
## 2006            16.661972  949529.7 3290857
## 2007            16.661972  949529.7 3290857
## 2008            16.661972  949529.7 3290857
## 2009            16.661972  949529.7 3290857
## 2010            16.661972  949529.7 3290857
## 2011            16.661972  949529.7 3290857
## 2012            16.661972  949529.7 3290857
## 2013            16.661972  949529.7 3290857
## 2014            16.661972  949529.7 3290857
## 2015            16.661972  949529.7 3290857
## 2016            16.661972  949529.7 3290857
## 2017            16.661972  949529.7 3290857
## 2018            16.661972  949529.7 3290857
## 2019            16.661972  949529.7 3290857
## 2020            16.661972  949529.7 3290857
## 2021            16.661972  949529.7 3290857
## 2022            16.661972  949529.7 3290857
## 2023            16.661972  949529.7 3290857
## 2024            16.661972  949529.7 3290857
## 2025            16.661972  949529.7 3290857
## 2026            16.661972  949529.7 3290857
## 2027            16.661972  949529.7 3290857
## 2028            16.661972  949529.7 3290857
## 2029            16.661972  949529.7 3290857
## 2031            16.661972  949529.7 3290857
## 2032            16.661972  949529.7 3290857
## 2033            16.661972  949529.7 3290857
## 2034            16.661972  949529.7 3290857
## 2036            16.661972  949529.7 3290857
## 2037            16.661972  949529.7 3290857
## 2038            16.661972  949529.7 3290857
## 2039            16.661972 1171365.6 2803203
## 2040            16.661972 1171365.6 2803203
## 2041            16.661972 1171365.6 2803203
## 2042            16.661972 1171365.6 2803203
## 2047            16.661972 1171365.6 2803203
## 2050            16.661972 1171365.6 2803203
## 2053            16.661972 1171365.6 2803203
## 2055            16.661972 1171365.6 2803203
## 2057            16.661972 1171365.6 2803203
## 2058            16.661972 1171365.6 2803203
## 2059            16.661972 1171365.6 2803203
## 2062            16.661972 1171365.6 2803203
## 2064            16.661972 1171365.6 2803203
## 2065            16.661972 1171365.6 2803203
## 2069            16.661972 1171365.6 2803203
## 2071            16.661972 1171365.6 2803203
## 2072            16.661972 1171365.6 2803203
## 2073            16.661972 1171365.6 2803203
## 2079            16.661972 1171365.6 2803203
## 2081            16.661972 1171365.6 2803203
## 2082            16.661972 1171365.6 2803203
## 2083            16.661972 1171365.6 2803203
## 2085            16.661972 1171365.6 2803203
## 2086            16.661972 1171365.6 2803203
## 2087            16.661972 1171365.6 2803203
## 2088            16.661972 1171365.6 2803203
## 2091            16.661972 1171365.6 2803203
## 2094            16.661972 1171365.6 2803203
## 2095            16.661972 1171365.6 2803203
## 2097            16.661972 1171365.6 2803203
## 2099            16.661972 1171365.6 2803203
## 2101            16.661972 1171365.6 2803203
## 2103            16.661972 1171365.6 2803203
## 2107            16.661972 1034253.2 3101959
## 2108            16.661972 1034253.2 3101959
## 2109            16.661972 1034253.2 3101959
## 2110            16.661972 1034253.2 3101959
## 2111            16.661972 1034253.2 3101959
## 2112            16.661972 1034253.2 3101959
## 2113            16.661972 1034253.2 3101959
## 2115            16.661972 1034253.2 3101959
## 2116            16.661972 1034253.2 3101959
## 2117            16.661972 1034253.2 3101959
## 2118            16.661972 1034253.2 3101959
## 2119            16.661972 1034253.2 3101959
## 2120            16.661972 1034253.2 3101959
## 2121            16.661972 1034253.2 3101959
## 2122            16.661972 1034253.2 3101959
## 2123            16.661972 1034253.2 3101959
## 2124            16.661972 1034253.2 3101959
## 2125            16.661972 1034253.2 3101959
## 2126            16.661972 1034253.2 3101959
## 2127            16.661972 1034253.2 3101959
## 2128            16.661972 1034253.2 3101959
## 2129            16.661972 1034253.2 3101959
## 2130            16.661972 1034253.2 3101959
## 2131            16.661972 1034253.2 3101959
## 2133            16.661972 1034253.2 3101959
## 2134            16.661972 1034253.2 3101959
## 2136            16.661972 1034253.2 3101959
## 2137            16.661972 1034253.2 3101959
## 2138            16.661972 1034253.2 3101959
## 2139            16.661972 1034253.2 3101959
## 2140            16.661972 1034253.2 3101959
## 2141            16.661972 1034253.2 3101959
## 2142            16.661972 1034253.2 3101959
## 2143            16.661972 1034253.2 3101959
## 2144            16.661972 1034253.2 3101959
## 2145            16.661972 1034253.2 3101959
## 2146            16.661972 1034253.2 3101959
## 2147            16.661972  999718.1 3198295
## 2148            24.661972  949488.6 3290890
## 2149            24.661972  949488.6 3290890
## 2150            24.661972  949488.6 3290890
## 2151            24.661972  949488.6 3290890
## 2152            24.661972  949488.6 3290890
## 2154            24.661972  949488.6 3290890
## 2155            24.661972  949488.6 3290890
## 2156            24.661972  949488.6 3290890
## 2157            24.661972  950511.0 3290395
## 2158            24.661972  950511.0 3290395
## 2159            24.661972  950511.0 3290395
## 2160            24.661972  950511.0 3290395
## 2161            24.661972  950511.0 3290395
## 2162            24.661972  950511.0 3290395
## 2163            24.661972  950511.0 3290395
## 2164            24.661972  950511.0 3290395
## 2165            24.661972  950511.0 3290395
## 2166            24.661972  950511.0 3290395
## 2168            24.661972  950511.0 3290395
## 2169            24.661972  950511.0 3290395
## 2170            24.661972  950511.0 3290395
## 2171            24.661972  950511.0 3290395
## 2172            24.661972  950511.0 3290395
## 2173            24.661972  950511.0 3290395
## 2174            24.661972  950511.0 3290395
## 2175            24.661972  950511.0 3290395
## 2176            24.661972  950511.0 3290395
## 2177            24.661972  950511.0 3290395
## 2178            24.661972  950511.0 3290395
## 2179            24.661972  950511.0 3290395
## 2180            24.661972  950511.0 3290395
## 2181            24.661972  950511.0 3290395
## 2182            24.661972  950511.0 3290395
## 2183            24.661972  950511.0 3290395
## 2184            24.661972  950511.0 3290395
## 2185            24.661972  950511.0 3290395
## 2186            24.661972  950511.0 3290395
## 2187            24.661972  950511.0 3290395
## 2188            24.661972  950511.0 3290395
## 2189            24.661972  950511.0 3290395
## 2190            24.661972  950511.0 3290395
## 2191            24.661972  950511.0 3290395
## 2192            24.661972  950511.0 3290395
## 2193            24.661972  950511.0 3290395
## 2194            24.661972  950511.0 3290395
## 2195            24.661972  950511.0 3290395
## 2196            24.661972  950511.0 3290395
## 2198            24.661972 1155217.9 2835119
## 2199            24.661972 1155217.9 2835119
## 2200            24.661972 1155217.9 2835119
## 2201            24.661972 1155217.9 2835119
## 2202            24.661972 1155217.9 2835119
## 2204            24.661972 1155217.9 2835119
## 2212            24.661972 1155217.9 2835119
## 2213            24.661972 1155217.9 2835119
## 2218            24.661972 1165494.9 2795481
## 2219            24.661972 1165494.9 2795481
## 2220            24.661972 1165494.9 2795481
## 2221            24.661972 1165494.9 2795481
## 2228            24.661972 1165494.9 2795481
## 2232            24.661972 1165494.9 2795481
## 2233            24.661972 1165494.9 2795481
## 2234            24.661972 1165494.9 2795481
## 2235            24.661972 1165494.9 2795481
## 2237            24.661972 1165494.9 2795481
## 2238            24.661972 1165494.9 2795481
## 2240            24.661972 1165494.9 2795481
## 2245            24.661972 1165494.9 2795481
## 2247            24.661972 1165494.9 2795481
## 2251            24.661972 1165494.9 2795481
## 2256            24.661972 1165494.9 2795481
## 2261            24.661972 1165494.9 2795481
## 2262            24.661972 1165494.9 2795481
## 2263            24.661972 1165494.9 2795481
## 2266            24.661972 1165494.9 2795481
## 2268            24.661972 1165494.9 2795481
## 2270            24.661972 1165494.9 2795481
## 2274            24.661972 1165494.9 2795481
## 2282            24.661972 1165494.9 2795481
## 2285            24.661972 1165494.9 2795481
## 2288            24.661972 1165494.9 2795481
## 2291            24.661972 1058006.9 3032124
## 2292            24.661972 1058006.9 3032124
## 2293            24.661972 1058006.9 3032124
## 2294            24.661972 1058006.9 3032124
## 2295            24.661972 1058006.9 3032124
## 2296            24.661972 1058006.9 3032124
## 2297            24.661972 1058006.9 3032124
## 2298            24.661972 1058006.9 3032124
## 2300            24.661972 1058006.9 3032124
## 2302            24.661972 1058006.9 3032124
## 2305            24.661972 1058006.9 3032124
## 2306            24.661972 1058006.9 3032124
## 2308            24.661972 1058006.9 3032124
## 2310            24.661972 1058006.9 3032124
## 2312            24.661972 1058006.9 3032124
## 2313            24.661972 1058006.9 3032124
## 2314            24.661972 1058006.9 3032124
## 2315            24.661972 1058006.9 3032124
## 2316            24.661972 1058006.9 3032124
## 2317            24.661972 1058006.9 3032124
## 2318            24.661972 1058006.9 3032124
## 2319            24.661972 1058006.9 3032124
## 2320            24.661972 1058006.9 3032124
## 2321            24.661972 1058006.9 3032124
## 2322            24.661972 1058006.9 3032124
## 2323            24.661972 1058006.9 3032124
## 2324            24.661972 1058006.9 3032124
## 2325            24.661972 1058006.9 3032124
## 2326            24.661972 1058006.9 3032124
## 2327            24.661972 1058006.9 3032124
## 2328            24.661972 1058006.9 3032124
## 2329            24.661972 1058006.9 3032124
## 2330            24.661972 1058006.9 3032124
## 2331            24.661972 1058006.9 3032124
## 2332            24.661972 1058006.9 3032124
## 2333            24.661972 1058006.9 3032124
## 2334            24.661972 1058006.9 3032124
## 2335            24.661972 1058006.9 3032124
## 2337            24.661972 1058006.9 3032124
## 2338            24.661972 1058006.9 3032124
## 2340            24.661972 1058006.9 3032124
## 2342            24.661972 1058006.9 3032124
## 2343            24.661972 1058006.9 3032124
## 2344            24.661972 1058006.9 3032124
## 2345            24.661972 1058006.9 3032124
## 2346            24.661972 1058006.9 3032124
## 2347            24.661972 1058006.9 3032124
## 2348            24.661972 1058006.9 3032124
## 2349            24.661972 1058006.9 3032124
## 2350            24.661972 1058006.9 3032124
## 2351            24.661972 1058006.9 3032124
## 2352            24.661972 1058006.9 3032124
## 2353            24.661972 1058006.9 3032124
## 2354            24.661972 1171365.6 2803203
## 2355            24.661972 1171365.6 2803203
## 2356            24.661972 1171365.6 2803203
## 2357            24.661972 1171365.6 2803203
## 2359            24.661972 1171365.6 2803203
## 2361            24.661972 1171365.6 2803203
## 2362            24.661972 1171365.6 2803203
## 2363            24.661972 1171365.6 2803203
## 2365            24.661972 1171365.6 2803203
## 2366            24.661972 1171365.6 2803203
## 2367            24.661972 1171365.6 2803203
## 2368            24.661972 1171365.6 2803203
## 2370            24.661972 1171365.6 2803203
## 2371            24.661972 1171365.6 2803203
## 2372            24.661972 1171365.6 2803203
## 2373            24.661972 1171365.6 2803203
## 2374            24.661972 1171365.6 2803203
## 2376            24.661972 1171365.6 2803203
## 2379            24.661972 1171365.6 2803203
## 2381            24.661972 1171365.6 2803203
## 2383            24.661972 1171365.6 2803203
## 2386            24.661972 1171365.6 2803203
## 2387            24.661972 1171365.6 2803203
## 2388            24.661972 1171365.6 2803203
## 2389            24.661972 1171365.6 2803203
## 2390            24.661972 1171365.6 2803203
## 2391            24.661972 1171365.6 2803203
## 2392            24.661972 1171365.6 2803203
## 2394            24.661972 1171365.6 2803203
## 2395            24.661972 1171365.6 2803203
## 2398            24.661972 1171365.6 2803203
## 2399            24.661972 1171365.6 2803203
## 2400            24.661972 1171365.6 2803203
## 2401            24.661972 1171365.6 2803203
## 2403            24.661972 1171365.6 2803203
## 2404            24.661972 1171365.6 2803203
## 2406            24.661972 1171365.6 2803203
## 2408            24.661972 1171365.6 2803203
## 2409            24.661972 1171365.6 2803203
## 2410            24.661972 1171365.6 2803203
## 2417            24.661972 1171365.6 2803203
## 2418            24.661972 1171365.6 2803203
## 2420            24.661972 1171365.6 2803203
## 2421            24.661972 1171365.6 2803203
## 2422            24.661972 1171365.6 2803203
## 2423            24.661972 1171365.6 2803203
## 2425            24.661972 1171365.6 2803203
## 2428            24.661972 1171365.6 2803203
## 2429            24.661972 1171365.6 2803203
## 2431            24.661972 1171365.6 2803203
## 2432            24.661972 1171365.6 2803203
## 2434            24.661972 1171365.6 2803203
## 2436            24.661972 1171365.6 2803203
## 2439            24.661972 1171365.6 2803203
## 2440            24.661972 1171365.6 2803203
## 2441            24.661972 1171365.6 2803203
## 2447            24.661972 1171365.6 2803203
## 2452            24.661972 1171365.6 2803203
## 2456            24.661972 1171365.6 2803203
## 2457            24.661972 1171365.6 2803203
## 2459            24.661972 1171365.6 2803203
## 2466            24.661972 1171365.6 2803203
## 2469            24.661972 1171365.6 2803203
## 2470            24.661972 1171365.6 2803203
## 2472            24.661972 1171365.6 2803203
## 2473            24.661972 1171365.6 2803203
## 2476            24.661972 1171365.6 2803203
## 2477            24.661972 1171365.6 2803203
## 2478            24.661972 1171365.6 2803203
## 2479            24.661972 1171365.6 2803203
## 2480            24.661972 1171365.6 2803203
## 2482            24.661972 1171365.6 2803203
## 2484            24.661972 1171365.6 2803203
## 2487            24.661972 1171365.6 2803203
## 2496            24.661972 1171365.6 2803203
## 2497            24.661972 1171365.6 2803203
## 2498            24.661972 1171365.6 2803203
## 2499            24.661972 1171365.6 2803203
## 2501            24.661972 1171365.6 2803203
## 2502            24.661972 1171365.6 2803203
## 2503            24.661972 1171365.6 2803203
## 2504            24.661972 1171365.6 2803203
## 2505            24.661972 1171365.6 2803203
## 2507            24.661972 1171365.6 2803203
## 2510            24.661972 1171365.6 2803203
## 2512            24.661972 1171365.6 2803203
## 2514            24.661972 1171365.6 2803203
## 2518            24.661972 1171365.6 2803203
## 2519            24.661972 1171365.6 2803203
## 2521            24.661972 1171365.6 2803203
## 2523            24.661972 1171365.6 2803203
## 2524            24.661972 1171365.6 2803203
## 2525            24.661972 1171365.6 2803203
## 2526            24.661972 1171365.6 2803203
## 2527            24.661972 1171365.6 2803203
## 2530            24.661972 1171365.6 2803203
## 2535            24.661972 1171365.6 2803203
## 2537            24.661972 1171365.6 2803203
## 2541            24.661972 1171365.6 2803203
## 2543            24.661972 1171365.6 2803203
## 2544            24.661972 1171365.6 2803203
## 2545            24.661972 1171365.6 2803203
## 2546            24.661972 1171365.6 2803203
## 2549            24.661972 1171365.6 2803203
## 2554            24.661972 1171365.6 2803203
## 2561            24.661972 1171365.6 2803203
## 2566            24.661972 1171365.6 2803203
## 2567            24.661972 1171365.6 2803203
## 2568            24.661972 1171365.6 2803203
## 2569            24.661972 1171365.6 2803203
## 2570            24.661972 1171365.6 2803203
## 2572            24.661972 1171365.6 2803203
## 2573            24.661972 1171365.6 2803203
## 2574            24.661972 1171365.6 2803203
## 2575            24.661972 1171365.6 2803203
## 2576            24.661972 1171365.6 2803203
## 2577            24.661972 1171365.6 2803203
## 2578            24.661972 1171365.6 2803203
## 2579            24.661972 1171365.6 2803203
## 2580            24.661972 1171365.6 2803203
## 2581            24.661972 1171365.6 2803203
## 2582            24.661972 1171365.6 2803203
## 2584            24.661972 1171365.6 2803203
## 2585            24.661972 1171365.6 2803203
## 2586            24.661972 1171365.6 2803203
## 2587            24.661972 1171365.6 2803203
## 2588            24.661972 1171365.6 2803203
## 2590            24.661972 1171365.6 2803203
## 2591            24.661972 1171365.6 2803203
## 2592            24.661972 1171365.6 2803203
## 2593            24.661972 1171365.6 2803203
## 2595            24.661972 1171365.6 2803203
## 2596            24.661972 1171365.6 2803203
## 2597            24.661972 1171365.6 2803203
## 2598            24.661972 1171365.6 2803203
## 2600            24.661972 1171365.6 2803203
## 2604            24.661972 1150184.3 2776463
## 2606            24.661972 1150184.3 2776463
## 2607            24.661972 1150184.3 2776463
## 2608            24.661972 1150184.3 2776463
## 2614            24.661972 1150184.3 2776463
## 2622            24.661972 1150184.3 2776463
## 2624            24.661972 1150184.3 2776463
## 2625            24.661972 1150184.3 2776463
## 2628            24.661972 1150184.3 2776463
## 2629            24.661972 1150184.3 2776463
## 2634            24.661972 1150184.3 2776463
## 2637            29.661972  950518.7 3290379
## 2638            29.661972  950518.7 3290379
## 2639            29.661972  950518.7 3290379
## 2640            29.661972  950518.7 3290379
## 2641            29.661972  950518.7 3290379
## 2645            29.661972  950518.7 3290379
## 2647            29.661972  950518.7 3290379
## 2651            29.661972  950518.7 3290379
## 2652            29.661972  950518.7 3290379
## 2653            29.661972 1155617.4 2835511
## 2654            29.661972 1155617.4 2835511
## 2655            29.661972 1155617.4 2835511
## 2656            29.661972 1155617.4 2835511
## 2657            29.661972 1155617.4 2835511
## 2658            29.661972 1155617.4 2835511
## 2659            29.661972 1155617.4 2835511
## 2660            29.661972 1155617.4 2835511
## 2661            29.661972 1155617.4 2835511
## 2662            29.661972 1155617.4 2835511
## 2663            29.661972 1155617.4 2835511
## 2664            29.661972 1155617.4 2835511
## 2665            29.661972 1155617.4 2835511
## 2666            29.661972 1155617.4 2835511
## 2667            29.661972 1155617.4 2835511
## 2669            29.661972 1155617.4 2835511
## 2670            29.661972 1155617.4 2835511
## 2671            29.661972 1155617.4 2835511
## 2672            29.661972 1155617.4 2835511
## 2673            29.661972 1155617.4 2835511
## 2674            29.661972 1155617.4 2835511
## 2675            29.661972 1155617.4 2835511
## 2676            29.661972 1155617.4 2835511
## 2677            29.661972 1155617.4 2835511
## 2678            29.661972 1155617.4 2835511
## 2679            29.661972 1155617.4 2835511
## 2683            29.661972 1155617.4 2835511
## 2684            29.661972 1155617.4 2835511
## 2685            29.661972 1155617.4 2835511
## 2686            29.661972 1155617.4 2835511
## 2687            29.661972 1155617.4 2835511
## 2693            29.661972 1171365.6 2803203
## 2695            29.661972 1171365.6 2803203
## 2697            29.661972 1171365.6 2803203
## 2698            29.661972 1171365.6 2803203
## 2701            29.661972 1171365.6 2803203
## 2704            29.661972 1058006.9 3032124
## 2705            29.661972 1058006.9 3032124
## 2706            29.661972 1058006.9 3032124
## 2707            29.661972 1058006.9 3032124
## 2709            29.661972 1058006.9 3032124
## 2710            29.661972 1058006.9 3032124
## 2711            29.661972 1058006.9 3032124
## 2712            29.661972 1058006.9 3032124
## 2713            29.661972 1058006.9 3032124
## 2716            29.661972 1058006.9 3032124
## 2717            29.661972 1058006.9 3032124
## 2718            29.661972 1058006.9 3032124
## 2719            29.661972 1058006.9 3032124
## 2720            29.661972 1058006.9 3032124
## 2721            29.661972 1058006.9 3032124
## 2722            29.661972 1058006.9 3032124
## 2723            29.661972 1058006.9 3032124
## 2724            29.661972 1058006.9 3032124
## 2725            29.661972 1058006.9 3032124
## 2726            29.661972 1058006.9 3032124
## 2727            29.661972 1058006.9 3032124
## 2728            29.661972 1058006.9 3032124
## 2730            29.661972 1058006.9 3032124
## 2731            29.661972 1058006.9 3032124
## 2733            29.661972 1058006.9 3032124
## 2734            29.661972 1058006.9 3032124
## 2735            29.661972 1058006.9 3032124
## 2736            29.661972 1058006.9 3032124
## 2737            29.661972 1058006.9 3032124
## 2738            29.661972 1058006.9 3032124
## 2739            29.661972 1058006.9 3032124
## 2740            29.661972 1058006.9 3032124
## 2741            29.661972 1058006.9 3032124
## 2742            29.661972 1058006.9 3032124
## 2743            29.661972 1058006.9 3032124
## 2744            29.661972 1058006.9 3032124
## 2745            29.661972 1058006.9 3032124
## 2747            29.661972 1032899.7 3098293
## 2748            29.661972 1032899.7 3098293
## 2749            29.661972 1032899.7 3098293
## 2752            29.661972 1032899.7 3098293
## 2754            29.661972 1032899.7 3098293
## 2756            29.661972 1032899.7 3098293
## 2757            29.661972 1032899.7 3098293
## 2758            29.661972 1032899.7 3098293
## 2759            29.661972 1032899.7 3098293
## 2760            29.661972 1032899.7 3098293
## 2761            29.661972 1032899.7 3098293
## 2763            29.661972 1032899.7 3098293
## 2764            29.661972 1032899.7 3098293
## 2765            29.661972 1032899.7 3098293
## 2767            29.661972 1032899.7 3098293
## 2768            29.661972 1032899.7 3098293
## 2769            29.661972 1032899.7 3098293
## 2772            29.661972 1000147.1 3198059
## 2773            29.661972 1000147.1 3198059
## 2774            29.661972 1000147.1 3198059
## 2777            29.661972 1000147.1 3198059
## 2779            29.661972 1000147.1 3198059
## 2780            29.661972 1000147.1 3198059
## 2781            29.661972 1000147.1 3198059
## 2782            29.661972 1000147.1 3198059
## 2784            29.661972  999718.1 3198295
## 2785            29.661972  999718.1 3198295
## 2786            29.661972  999718.1 3198295
## 2787            29.661972  999718.1 3198295
## 2788            29.661972  999718.1 3198295
## 2789            29.661972  999718.1 3198295
## 2791            29.661972  999718.1 3198295
## 2792            29.661972  999718.1 3198295
## 2794            29.661972  999718.1 3198295
## 2795            29.661972  999718.1 3198295
## 2797            29.661972  999718.1 3198295
## 2798            29.661972 1171365.6 2803203
## 2799            29.661972 1171365.6 2803203
## 2800            29.661972 1171365.6 2803203
## 2801            29.661972 1171365.6 2803203
## 2802            29.661972 1171365.6 2803203
## 2806            29.661972 1171365.6 2803203
## 2807            29.661972 1171365.6 2803203
## 2808            29.661972 1171365.6 2803203
## 2810            29.661972 1171365.6 2803203
## 2812            29.661972 1171365.6 2803203
## 2813            29.661972 1171365.6 2803203
## 2816            29.661972 1171365.6 2803203
## 2820            29.661972 1171365.6 2803203
## 2823            29.661972 1171365.6 2803203
## 2826            29.661972 1171365.6 2803203
## 2830            29.661972 1171365.6 2803203
## 2831            29.661972 1171365.6 2803203
## 2833            29.661972 1171365.6 2803203
## 2834            29.661972 1171365.6 2803203
## 2835            29.661972 1171365.6 2803203
## 2836            29.661972 1171365.6 2803203
## 2837            29.661972 1171365.6 2803203
## 2839            29.661972 1171365.6 2803203
## 2841            29.661972 1171365.6 2803203
## 2842            29.661972 1171365.6 2803203
## 2844            29.661972 1171365.6 2803203
## 2845            29.661972 1171365.6 2803203
## 2847            29.661972 1171365.6 2803203
## 2848            29.661972 1171365.6 2803203
## 2850            29.661972 1171365.6 2803203
## 2851            29.661972 1171365.6 2803203
## 2853            29.661972 1171365.6 2803203
## 2854            29.661972 1171365.6 2803203
## 2855            29.661972 1171365.6 2803203
## 2856            29.661972 1171365.6 2803203
## 2859            29.661972 1171365.6 2803203
## 2860            29.661972 1171365.6 2803203
## 2862            29.661972 1171365.6 2803203
## 2863            29.661972 1171365.6 2803203
## 2864            29.661972 1171365.6 2803203
## 2868            29.661972 1171365.6 2803203
## 2869            29.661972 1171365.6 2803203
## 2871            29.661972 1171365.6 2803203
## 2878            29.661972 1171365.6 2803203
## 2884            29.661972 1152131.0 2778862
## 2886            29.661972 1152131.0 2778862
## 2887            29.661972 1152131.0 2778862
## 2891            29.661972 1152131.0 2778862
## 2892            29.661972 1152131.0 2778862
## 2893            29.661972 1152131.0 2778862
## 2895            29.661972 1152131.0 2778862
## 2896            29.661972 1152131.0 2778862
## 2897            33.661972  950508.0 3290398
## 2899            33.661972  950508.0 3290398
## 2900            33.661972  950508.0 3290398
## 2901            33.661972  950508.0 3290398
## 2904            33.661972  950508.0 3290398
## 2905            33.661972  950508.0 3290398
## 2906            33.661972  950508.0 3290398
## 2907            33.661972  950508.0 3290398
## 2908            33.661972  950508.0 3290398
## 2911            33.661972  950508.0 3290398
## 2912            33.661972  950508.0 3290398
## 2914            33.661972  950508.0 3290401
## 2917            33.661972  950508.0 3290401
## 2919            33.661972  950508.0 3290401
## 2921            33.661972  950508.0 3290401
## 2923            33.661972  950508.0 3290401
## 2929            33.661972  950508.0 3290401
## 2930            33.661972  950508.0 3290401
## 2931            33.661972  950508.0 3290401
## 2932            33.661972  950508.0 3290401
## 2933            33.661972 1155600.4 2835443
## 2934            33.661972 1155600.4 2835443
## 2935            33.661972 1155600.4 2835443
## 2936            33.661972 1155600.4 2835443
## 2937            33.661972 1155600.4 2835443
## 2939            33.661972 1155600.4 2835443
## 2940            33.661972 1155600.4 2835443
## 2944            33.661972 1155600.4 2835443
## 2945            33.661972 1155600.4 2835443
## 2947            33.661972 1155600.4 2835443
## 2948            33.661972 1155600.4 2835443
## 2949            33.661972 1155600.4 2835443
## 2950            33.661972 1155600.4 2835443
## 2951            33.661972 1155600.4 2835443
## 2952            33.661972 1155600.4 2835443
## 2953            33.661972 1155600.4 2835443
## 2954            33.661972 1155600.4 2835443
## 2955            33.661972 1155600.4 2835443
## 2956            33.661972 1155600.4 2835443
## 2957            33.661972 1155600.4 2835443
## 2958            33.661972 1155600.4 2835443
## 2959            33.661972 1155600.4 2835443
## 2960            33.661972 1155600.4 2835443
## 2964            33.661972 1155600.4 2835443
## 2965            33.661972 1155600.4 2835443
## 2970            33.661972 1155600.4 2835443
## 2971            33.661972 1155600.4 2835443
## 2972            33.661972 1155600.4 2835443
## 2973            33.661972 1155600.4 2835443
## 2974            33.661972 1155600.4 2835443
## 2975            33.661972 1162614.0 2792167
## 2976            33.661972 1162614.0 2792167
## 2978            33.661972 1162614.0 2792167
## 2979            33.661972 1165438.9 2795475
## 2980            33.661972 1165438.9 2795475
## 2981            33.661972 1165438.9 2795475
## 2982            33.661972 1165438.9 2795475
## 2983            33.661972 1165438.9 2795475
## 2984            33.661972 1165438.9 2795475
## 2985            33.661972 1162614.0 2792167
## 2986            33.661972 1162614.0 2792167
## 2987            33.661972 1162614.0 2792167
## 2988            33.661972 1162614.0 2792167
## 2990            33.661972 1165438.9 2795475
## 2991            33.661972 1165438.9 2795475
## 2992            33.661972 1165438.9 2795475
## 2994            33.661972 1162614.0 2792167
## 2995            33.661972 1162614.0 2792167
## 2997            33.661972 1162614.0 2792167
## 2998            33.661972 1162614.0 2792167
## 2999            33.661972 1165438.9 2795475
## 3000            33.661972 1165438.9 2795475
## 3001            33.661972 1165438.9 2795475
## 3002            33.661972 1165438.9 2795475
## 3004            33.661972 1162614.0 2792167
## 3005            33.661972 1162614.0 2792167
## 3006            33.661972 1162614.0 2792167
## 3007            33.661972 1162614.0 2792167
## 3009            33.661972 1165438.9 2795475
## 3010            33.661972 1165438.9 2795475
## 3011            33.661972 1165438.9 2795475
## 3013            33.661972 1162614.0 2792167
## 3014            33.661972 1162614.0 2792167
## 3015            33.661972 1162614.0 2792167
## 3016            33.661972 1162614.0 2792167
## 3019            33.661972 1165438.9 2795475
## 3020            33.661972 1165438.9 2795475
## 3045            33.661972 1165438.3 2795489
## 3050            33.661972 1165438.3 2795489
## 3052            33.661972 1165438.3 2795489
## 3053            33.661972 1165438.3 2795489
## 3054            33.661972 1058006.9 3032124
## 3055            33.661972 1058006.9 3032124
## 3056            33.661972 1058006.9 3032124
## 3057            33.661972 1058006.9 3032124
## 3058            33.661972 1058006.9 3032124
## 3059            33.661972 1058006.9 3032124
## 3060            33.661972 1058006.9 3032124
## 3061            33.661972 1058006.9 3032124
## 3062            33.661972 1058006.9 3032124
## 3063            33.661972 1058006.9 3032124
## 3064            33.661972 1058006.9 3032124
## 3066            33.661972 1058006.9 3032124
## 3067            33.661972 1058006.9 3032124
## 3068            33.661972 1058006.9 3032124
## 3069            33.661972 1058006.9 3032124
## 3070            33.661972 1058006.9 3032124
## 3071            33.661972 1058006.9 3032124
## 3072            33.661972 1058006.9 3032124
## 3073            33.661972 1058006.9 3032124
## 3074            33.661972 1058006.9 3032124
## 3075            33.661972 1058006.9 3032124
## 3076            33.661972 1058006.9 3032124
## 3077            33.661972 1058006.9 3032124
## 3078            33.661972 1058006.9 3032124
## 3079            33.661972 1058006.9 3032124
## 3080            33.661972 1058006.9 3032124
## 3081            33.661972 1058006.9 3032124
## 3082            33.661972 1058006.9 3032124
## 3083            33.661972 1058006.9 3032124
## 3084            33.661972 1058006.9 3032124
## 3085            33.661972 1058006.9 3032124
## 3086            33.661972 1058006.9 3032124
## 3087            33.661972 1058006.9 3032124
## 3088            33.661972 1058006.9 3032124
## 3089            33.661972 1058006.9 3032124
## 3090            33.661972 1058006.9 3032124
## 3091            33.661972 1058006.9 3032124
## 3092            33.661972 1058006.9 3032124
## 3093            33.661972 1058006.9 3032124
## 3094            33.661972 1058006.9 3032124
## 3095            33.661972 1058006.9 3032124
## 3096            33.661972 1058006.9 3032124
## 3097            33.661972 1033819.8 3097599
## 3098            33.661972 1033819.8 3097599
## 3099            33.661972 1033819.8 3097599
## 3100            33.661972 1033819.8 3097599
## 3101            33.661972 1033819.8 3097599
## 3102            33.661972 1033819.8 3097599
## 3103            33.661972 1033819.8 3097599
## 3105            33.661972 1033819.8 3097599
## 3107            33.661972 1033819.8 3097599
## 3108            33.661972 1033819.8 3097599
## 3109            33.661972 1033819.8 3097599
## 3110            33.661972 1033819.8 3097599
## 3111            33.661972 1033819.8 3097599
## 3112            33.661972 1033819.8 3097599
## 3113            33.661972 1033819.8 3097599
## 3115            33.661972 1033819.8 3097599
## 3116            33.661972 1033819.8 3097599
## 3117            33.661972 1033819.8 3097599
## 3118            33.661972 1033819.8 3097599
## 3119            33.661972 1033819.8 3097599
## 3120            33.661972 1033819.8 3097599
## 3121            33.661972 1033819.8 3097599
## 3122            33.661972 1033819.8 3097599
## 3123            33.661972 1033819.8 3097599
## 3124            33.661972 1033819.8 3097599
## 3125            33.661972 1033819.8 3097599
## 3126            33.661972 1033819.8 3097599
## 3127            33.661972 1033819.8 3097599
## 3128            33.661972 1033819.8 3097599
## 3129            33.661972 1033819.8 3097599
## 3131            33.661972 1033819.8 3097599
## 3132            33.661972 1033819.8 3097599
## 3133            33.661972 1033819.8 3097599
## 3134            33.661972 1033819.8 3097599
## 3135            33.661972 1033819.8 3097599
## 3136            33.661972 1033819.8 3097599
## 3137            33.661972 1033819.8 3097599
## 3138            33.661972 1033819.8 3097599
## 3139            33.661972 1033819.8 3097599
## 3140            33.661972 1033819.8 3097599
## 3141            33.661972 1033819.8 3097599
## 3142            33.661972 1033819.8 3097599
## 3143            33.661972 1033819.8 3097599
## 3144            33.661972 1033819.8 3097599
## 3145            33.661972 1033819.8 3097599
## 3146            33.661972 1033819.8 3097599
## 3147            33.661972 1000227.9 3196212
## 3148            33.661972 1000227.9 3196212
## 3149            33.661972 1000227.9 3196212
## 3150            33.661972 1000227.9 3196212
## 3151            33.661972 1000227.9 3196212
## 3152            33.661972 1000227.9 3196212
## 3153            33.661972 1000227.9 3196212
## 3154            33.661972 1000227.9 3196212
## 3155            33.661972 1000227.9 3196212
## 3157            33.661972 1000227.9 3196212
## 3158            33.661972 1000227.9 3196212
## 3159            33.661972 1000227.9 3196212
## 3160            33.661972 1000227.9 3196212
## 3162            33.661972 1000227.9 3196212
## 3164            33.661972 1000227.9 3196212
## 3165            33.661972 1000227.9 3196212
## 3167            33.661972 1000227.9 3196212
## 3168            33.661972 1000227.9 3196212
## 3169            33.661972 1000227.9 3196212
## 3170            33.661972 1000227.9 3196212
## 3171            33.661972 1000227.9 3196212
## 3172            33.661972 1000227.9 3196212
## 3175            33.661972 1000227.9 3196212
## 3176            33.661972 1000227.9 3196212
## 3177            33.661972 1171365.6 2803203
## 3178            33.661972 1171365.6 2803203
## 3180            33.661972 1171365.6 2803203
## 3181            33.661972 1171365.6 2803203
## 3182            33.661972 1171365.6 2803203
## 3183            33.661972 1171365.6 2803203
## 3185            33.661972 1171365.6 2803203
## 3186            33.661972 1171365.6 2803203
## 3187            33.661972 1171365.6 2803203
## 3189            33.661972 1171365.6 2803203
## 3190            33.661972 1171365.6 2803203
## 3191            33.661972 1171365.6 2803203
## 3192            33.661972 1171365.6 2803203
## 3193            33.661972 1171365.6 2803203
## 3194            33.661972 1171365.6 2803203
## 3196            33.661972 1171365.6 2803203
## 3197            33.661972 1171365.6 2803203
## 3198            33.661972 1171365.6 2803203
## 3199            33.661972 1171365.6 2803203
## 3200            33.661972 1171365.6 2803203
## 3201            33.661972 1171365.6 2803203
## 3202            33.661972 1171365.6 2803203
## 3203            33.661972 1171365.6 2803203
## 3205            33.661972 1171365.6 2803203
## 3206            33.661972 1171365.6 2803203
## 3207            33.661972 1171365.6 2803203
## 3209            33.661972 1171365.6 2803203
## 3210            33.661972 1171365.6 2803203
## 3211            33.661972 1171365.6 2803203
## 3212            33.661972 1171365.6 2803203
## 3213            33.661972 1171365.6 2803203
## 3214            33.661972 1171365.6 2803203
## 3215            33.661972 1171365.6 2803203
## 3216            33.661972 1171365.6 2803203
## 3218            33.661972 1171365.6 2803203
## 3219            33.661972 1171365.6 2803203
## 3220            33.661972 1171365.6 2803203
## 3221            33.661972 1171365.6 2803203
## 3222            33.661972 1171365.6 2803203
## 3223            33.661972 1171365.6 2803203
## 3224            33.661972 1171365.6 2803203
## 3226            33.661972 1171365.6 2803203
## 3227            33.661972 1171365.6 2803203
## 3229            33.661972 1171365.6 2803203
## 3230            33.661972 1171365.6 2803203
## 3231            33.661972 1171365.6 2803203
## 3232            33.661972 1171365.6 2803203
## 3234            33.661972 1171365.6 2803203
## 3235            33.661972 1171365.6 2803203
## 3236            33.661972 1171365.6 2803203
## 3237            33.661972 1171365.6 2803203
## 3238            33.661972 1171365.6 2803203
## 3239            33.661972 1171365.6 2803203
## 3240            33.661972 1171365.6 2803203
## 3241            33.661972 1171365.6 2803203
## 3242            33.661972 1171365.6 2803203
## 3243            33.661972 1171365.6 2803203
## 3244            33.661972 1171365.6 2803203
## 3246            33.661972 1171365.6 2803203
## 3247            33.661972 1171365.6 2803203
## 3248            33.661972 1171365.6 2803203
## 3249            33.661972 1171365.6 2803203
## 3250            33.661972 1171365.6 2803203
## 3251            33.661972 1171365.6 2803203
## 3252            33.661972 1171365.6 2803203
## 3253            33.661972 1171365.6 2803203
## 3254            33.661972 1171365.6 2803203
## 3255            33.661972 1171365.6 2803203
## 3256            33.661972 1171365.6 2803203
## 3257            33.661972 1171365.6 2803203
## 3258            33.661972 1171365.6 2803203
## 3259            33.661972 1171365.6 2803203
## 3260            33.661972 1171365.6 2803203
## 3261            33.661972 1171365.6 2803203
## 3262            33.661972 1171365.6 2803203
## 3263            33.661972 1171365.6 2803203
## 3264            33.661972 1171365.6 2803203
## 3265            33.661972 1171365.6 2803203
## 3266            33.661972 1171365.6 2803203
## 3267            33.661972 1171365.6 2803203
## 3268            33.661972 1171365.6 2803203
## 3269            33.661972 1171365.6 2803203
## 3270            33.661972 1171365.6 2803203
## 3271            33.661972 1171365.6 2803203
## 3273            33.661972 1171365.6 2803203
## 3274            33.661972 1171365.6 2803203
## 3279            33.661972 1171365.6 2803203
## 3280            33.661972 1171365.6 2803203
## 3281            33.661972 1171365.6 2803203
## 3282            33.661972 1171365.6 2803203
## 3283            33.661972 1171365.6 2803203
## 3285            33.661972 1171365.6 2803203
## 3287            33.661972 1171365.6 2803203
## 3288            33.661972 1171365.6 2803203
## 3289            33.661972 1171365.6 2803203
## 3290            33.661972 1171365.6 2803203
## 3291            33.661972 1171365.6 2803203
## 3292            33.661972 1171365.6 2803203
## 3293            33.661972 1171365.6 2803203
## 3294            33.661972 1171365.6 2803203
## 3295            33.661972 1171365.6 2803203
## 3296            33.661972 1171365.6 2803203
## 3297            33.661972 1171365.6 2803203
## 3300            33.661972 1171365.6 2803203
## 3301            33.661972 1171365.6 2803203
## 3302            33.661972 1171365.6 2803203
## 3303            33.661972 1171365.6 2803203
## 3304            33.661972 1171365.6 2803203
## 3305            33.661972 1171365.6 2803203
## 3306            33.661972 1171365.6 2803203
## 3307            33.661972 1171365.6 2803203
## 3308            33.661972 1171365.6 2803203
## 3309            33.661972 1171365.6 2803203
## 3311            33.661972 1171365.6 2803203
## 3312            33.661972 1171365.6 2803203
## 3313            33.661972 1171365.6 2803203
## 3314            33.661972 1171365.6 2803203
## 3315            33.661972 1171365.6 2803203
## 3316            33.661972 1171365.6 2803203
## 3317            33.661972 1171365.6 2803203
## 3318            33.661972 1171365.6 2803203
## 3319            33.661972 1171365.6 2803203
## 3320            33.661972 1171365.6 2803203
## 3321            33.661972 1171365.6 2803203
## 3322            33.661972 1171365.6 2803203
## 3323            33.661972 1171365.6 2803203
## 3325            33.661972 1171365.6 2803203
## 3327            33.661972 1171365.6 2803203
## 3332            33.661972 1171365.6 2803203
## 3339            33.661972 1171365.6 2803203
## 3340            33.661972 1171365.6 2803203
## 3341            33.661972 1171365.6 2803203
## 3342            33.661972 1171365.6 2803203
## 3343            33.661972 1171365.6 2803203
## 3348            33.661972 1171365.6 2803203
## 3350            33.661972 1171365.6 2803203
## 3351            33.661972 1171365.6 2803203
## 3379            33.661972 1171365.6 2803203
## 3391            33.661972 1171365.6 2803203
## 3394            33.661972 1171365.6 2803203
## 3396            33.661972 1171365.6 2803203
## 3398            33.661972 1171365.6 2803203
## 3399            33.661972 1171365.6 2803203
## 3400            33.661972 1171365.6 2803203
## 3401            33.661972 1171365.6 2803203
## 3402            33.661972 1171365.6 2803203
## 3404            33.661972 1151501.0 2777539
## 3405            33.661972 1151501.0 2777539
## 3406            33.661972 1151501.0 2777539
## 3407            33.661972 1151501.0 2777539
## 3408            33.661972 1150191.4 2776436
## 3409            33.661972 1150191.4 2776436
## 3410            33.661972 1150191.4 2776436
## 3411            33.661972 1150191.4 2776436
## 3412            33.661972 1150191.4 2776436
## 3414            33.661972 1151501.0 2777539
## 3415            33.661972 1151501.0 2777539
## 3418            33.661972 1150191.4 2776436
## 3419            33.661972 1150191.4 2776436
## 3420            33.661972 1150191.4 2776436
## 3421            33.661972 1150191.4 2776436
## 3422            33.661972 1150191.4 2776436
## 3423            33.661972 1151501.0 2777539
## 3424            33.661972 1151501.0 2777539
## 3425            33.661972 1151501.0 2777539
## 3426            33.661972 1151501.0 2777539
## 3428            33.661972 1150191.4 2776436
## 3429            33.661972 1150191.4 2776436
## 3430            33.661972 1150191.4 2776436
## 3431            33.661972 1150191.4 2776436
## 3432            33.661972 1151501.0 2777539
## 3433            33.661972 1151501.0 2777539
## 3434            33.661972 1151501.0 2777539
## 3435            33.661972 1150191.4 2776436
## 3436            33.661972 1150191.4 2776436
## 3437            33.661972 1150191.4 2776436
## 3438            33.661972 1150191.4 2776436
## 3439            33.661972 1150191.4 2776436
## 3440            33.661972 1150191.4 2776436
## 3441            33.661972 1150191.4 2776436
## 3442            33.661972 1150191.4 2776436
## 3443            33.661972 1150191.4 2776436
## 3444            33.661972 1150191.4 2776436
## 3445            33.661972 1150191.4 2776436
## 3448            33.661972 1150191.4 2776436
## 3451            33.661972 1150191.4 2776436
## 3452            33.661972 1150191.4 2776436
## 3453            33.661972 1150191.4 2776436
## 3454            33.661972 1150191.4 2776436
## 3461            33.661972 1150191.4 2776436
## 3462            33.661972 1150191.4 2776436
## 3466            33.661972 1150191.4 2776436
## 3473            33.661972 1150191.4 2776436
## 3476            29.661972 1150191.4 2776436
## 3477            29.661972 1150191.4 2776436
## 3478            29.661972 1150191.4 2776436
## 3479            29.661972 1150191.4 2776436
## 3480            29.661972 1150191.4 2776436
## 3481            29.661972 1150191.4 2776436
## 3482            29.661972 1150191.4 2776436
## 3483            29.661972 1150191.4 2776436
## 3485            29.661972 1150191.4 2776436
## 3486            29.661972 1150191.4 2776436
## 3487            29.661972 1150191.4 2776436
## 3488            29.661972 1150191.4 2776436
## 3489            29.661972 1150191.4 2776436
## 3492            29.661972 1150191.4 2776436
## 3493            29.661972 1150191.4 2776436
## 3496            29.661972 1150191.4 2776436
## 3498            29.661972 1150191.4 2776436
## 3499            29.661972 1150191.4 2776436
## 3500            29.661972 1150191.4 2776436
## 3501            29.661972 1150191.4 2776436
## 3502            29.661972 1150191.4 2776436
## 3503            29.661972 1155600.4 2835443
## 3504            29.661972 1155600.4 2835443
## 3505            29.661972 1155600.4 2835443
## 3506            29.661972 1155600.4 2835443
## 3507            29.661972 1155600.4 2835443
## 3508            29.661972 1155600.4 2835443
## 3509            29.661972 1155600.4 2835443
## 3510            29.661972 1155600.4 2835443
## 3511            29.661972 1155600.4 2835443
## 3513            29.661972 1155600.4 2835443
## 3514            29.661972 1155600.4 2835443
## 3515            29.661972 1171365.6 2803203
## 3516            29.661972 1171365.6 2803203
## 3517            29.661972 1171365.6 2803203
## 3518            29.661972 1171365.6 2803203
## 3519            29.661972 1171365.6 2803203
## 3520            29.661972 1171365.6 2803203
## 3521            29.661972 1171365.6 2803203
## 3522            29.661972 1171365.6 2803203
## 3523            29.661972 1171365.6 2803203
## 3524            29.661972 1171365.6 2803203
## 3525            29.661972 1171365.6 2803203
## 3526            29.661972 1171365.6 2803203
## 3528            29.661972 1171365.6 2803203
## 3529            29.661972 1171365.6 2803203
## 3530            29.661972 1171365.6 2803203
## 3531            29.661972 1171365.6 2803203
## 3532            29.661972 1171365.6 2803203
## 3533            29.661972 1171365.6 2803203
## 3534            29.661972 1171365.6 2803203
## 3535            29.661972 1171365.6 2803203
## 3536            29.661972 1171365.6 2803203
## 3537            29.661972 1171365.6 2803203
## 3538            29.661972 1171365.6 2803203
## 3539            29.661972 1171365.6 2803203
## 3540            29.661972 1171365.6 2803203
## 3541            29.661972 1058003.6 3032121
## 3542            29.661972 1058003.6 3032121
## 3543            29.661972 1058003.6 3032121
## 3544            29.661972 1058003.6 3032121
## 3545            29.661972 1058003.6 3032121
## 3546            29.661972 1058003.6 3032121
## 3547            29.661972 1058003.6 3032121
## 3549            29.661972 1058003.6 3032121
## 3550            29.661972 1058003.6 3032121
## 3551            29.661972 1058003.6 3032121
## 3552            29.661972 1058003.6 3032121
## 3553            29.661972 1058003.6 3032121
## 3554            29.661972 1058003.6 3032121
## 3555            29.661972 1058003.6 3032121
## 3556            29.661972 1058003.6 3032121
## 3557            29.661972 1058003.6 3032121
## 3558            29.661972 1058003.6 3032121
## 3559            29.661972 1058003.6 3032121
## 3560            29.661972 1058003.6 3032121
## 3561            29.661972 1058003.6 3032121
## 3562            29.661972 1171365.6 2803203
## 3563            29.661972 1171365.6 2803203
## 3564            29.661972 1171365.6 2803203
## 3565            29.661972 1171365.6 2803203
## 3566            -4.338028 1161803.2 2842386
## 3570            29.661972 1165438.9 2795475
## 3571            29.661972 1165438.9 2795475
## 3572            29.661972 1165438.9 2795475
## 3573            29.661972 1165438.9 2795475
## 3574            29.661972 1165438.9 2795475
## 3575            29.661972 1165438.9 2795475
## 3576            29.661972 1165438.9 2795475
## 3577            29.661972 1171365.6 2803203
## 3578            29.661972 1171365.6 2803203
## 3579            29.661972 1171365.6 2803203
## 3581            29.661972 1171365.6 2803203
## 3583            29.661972 1165494.9 2795481
## 3584            29.661972 1165494.9 2795481
## 3585            29.661972 1165494.9 2795481
## 3586            29.661972 1171365.6 2803203
## 3587            29.661972 1171365.6 2803203
## 3588            29.661972 1171365.6 2803203
## 3589            29.661972 1171365.6 2803203
## 3590            29.661972 1171365.6 2803203
## 3591            29.661972 1171365.6 2803203
## 3592            24.661972 1033803.4 3097587
## 3594            24.661972 1033803.4 3097587
## 3595            24.661972 1033803.4 3097587
## 3596            24.661972 1033803.4 3097587
## 3597            24.661972 1033803.4 3097587
## 3598            24.661972 1033803.4 3097587
## 3599            24.661972 1033803.4 3097587
## 3600            24.661972 1033803.4 3097587
## 3601            24.661972 1033803.4 3097587
## 3602            24.661972 1033803.4 3097587
## 3603            24.661972 1033803.4 3097587
## 3604            24.661972 1033803.4 3097587
## 3605            24.661972 1033803.4 3097587
## 3606            24.661972 1033803.4 3097587
## 3607            24.661972 1033803.4 3097587
## 3608            24.661972 1033803.4 3097587
## 3609            24.661972 1033803.4 3097587
## 3610            24.661972 1033803.4 3097587
## 3611            24.661972 1033803.4 3097587
## 3612            24.661972 1033803.4 3097587
## 3613            24.661972 1033803.4 3097587
## 3614            24.661972 1033803.4 3097587
## 3615            24.661972 1033803.4 3097587
## 3616            24.661972 1033803.4 3097587
## 3617            24.661972 1033803.4 3097587
## 3618            24.661972 1033803.4 3097587
## 3619            24.661972 1033803.4 3097587
## 3620            24.661972 1033803.4 3097587
## 3621            24.661972 1033803.4 3097587
## 3622            24.661972 1033803.4 3097587
## 3623            24.661972 1033803.4 3097587
## 3624            24.661972 1033803.4 3097587
## 3625            24.661972 1033803.4 3097587
## 3626            24.661972 1033803.4 3097587
## 3627            24.661972 1033803.4 3097587
## 3628            24.661972 1033803.4 3097587
## 3629            24.661972 1033803.4 3097587
## 3630            24.661972 1033803.4 3097587
## 3631            24.661972 1033803.4 3097587
## 3632            24.661972 1033803.4 3097587
## 3633            24.661972 1033803.4 3097587
## 3634            24.661972 1033803.4 3097587
## 3635            24.661972 1033803.4 3097587
## 3636            24.661972 1033803.4 3097587
## 3637            24.661972 1033803.4 3097587
## 3638            24.661972 1033803.4 3097587
## 3639            24.661972 1033803.4 3097587
## 3640            24.661972 1033803.4 3097587
## 3641            24.661972 1033803.4 3097587
## 3642            24.661972 1033803.4 3097587
## 3643            24.661972 1033803.4 3097587
## 3644            24.661972 1033803.4 3097587
## 3645            24.661972 1033803.4 3097587
## 3646            24.661972 1000224.2 3196220
## 3647            24.661972 1000224.2 3196220
## 3648            24.661972 1000224.2 3196220
## 3649            24.661972 1000224.2 3196220
## 3650            24.661972 1000224.2 3196220
## 3651            24.661972 1000224.2 3196220
## 3652            24.661972 1000224.2 3196220
## 3653            24.661972 1000224.2 3196220
## 3655            24.661972 1000224.2 3196220
## 3656            24.661972 1000224.2 3196220
## 3658            24.661972 1000224.2 3196220
## 3659            24.661972 1000224.2 3196220
## 3660            24.661972 1000224.2 3196220
## 3661            24.661972 1000224.2 3196220
## 3662            24.661972 1000224.2 3196220
## 3663            24.661972 1000224.2 3196220
## 3664            24.661972 1000224.2 3196220
## 3665            24.661972 1000224.2 3196220
## 3666            24.661972 1000224.2 3196220
## 3667            24.661972 1000224.2 3196220
## 3668            24.661972 1000224.2 3196220
## 3669            24.661972 1000224.2 3196220
## 3670            24.661972 1000224.2 3196220
## 3671            24.661972 1000224.2 3196220
## 3672            24.661972 1000224.2 3196220
## 3673            24.661972 1000224.2 3196220
## 3674            24.661972 1000224.2 3196220
## 3675            24.661972 1000224.2 3196220
## 3676            24.661972 1000224.2 3196220
## 3677            24.661972 1000224.2 3196220
## 3678            24.661972 1000224.2 3196220
## 3680            24.661972 1000224.2 3196220
## 3681            24.661972 1000224.2 3196220
## 3682            24.661972 1000224.2 3196220
## 3683            24.661972 1000224.2 3196220
## 3684            24.661972 1000224.2 3196220
## 3685            24.661972 1000224.2 3196220
## 3686            24.661972 1000224.2 3196220
## 3687            24.661972 1000224.2 3196220
## 3688            24.661972 1000224.2 3196220
## 3689            24.661972 1000224.2 3196220
## 3690            24.661972 1000224.2 3196220
## 3691            24.661972 1000224.2 3196220
## 3692            24.661972 1000224.2 3196220
## 3693            24.661972 1000224.2 3196220
## 3694            24.661972 1000224.2 3196220
## 3695            24.661972 1000224.2 3196220
## 3696            24.661972 1000224.2 3196220
## 3698            24.661972 1000224.2 3196220
## 3700            24.661972 1155612.7 2835421
## 3701            24.661972 1155612.7 2835421
## 3703            24.661972 1155612.7 2835421
## 3704            24.661972 1155612.7 2835421
## 3705            24.661972 1155612.7 2835421
## 3706            24.661972 1155612.7 2835421
## 3707            24.661972 1155612.7 2835421
## 3708            24.661972 1155612.7 2835421
## 3709            24.661972 1155612.7 2835421
## 3711            24.661972 1155612.7 2835421
## 3712            24.661972 1155612.7 2835421
## 3713            24.661972 1155612.7 2835421
## 3714            24.661972 1155612.7 2835421
## 3715            24.661972 1155612.7 2835421
## 3716            24.661972 1155612.7 2835421
## 3717            24.661972 1155612.7 2835421
## 3718            24.661972 1155612.7 2835421
## 3719            24.661972 1155612.7 2835421
## 3720            24.661972 1155612.7 2835421
## 3721            24.661972 1155612.7 2835421
## 3722            24.661972 1155612.7 2835421
## 3723            24.661972 1155612.7 2835421
## 3724            24.661972 1155612.7 2835421
## 3725            24.661972 1155612.7 2835421
## 3726            24.661972 1155612.7 2835421
## 3727            24.661972 1155612.7 2835421
## 3728            24.661972 1155612.7 2835421
## 3729            24.661972 1155612.7 2835421
## 3731            24.661972 1155612.7 2835421
## 3734            24.661972 1155612.7 2835421
## 3735            24.661972 1155612.7 2835421
## 3736            24.661972 1155612.7 2835421

There might be some spatial dependencies for long wing freq because seeing clusters of red and clusters of black.

Also the variogram shows distances 0 to 10,000 m where the variability between points starts high and then decreases (the points become more similar) until it levels out because at some point the distance between data points will be great enough that the points are no longer considered to be related to each other. The variability will flatten out into a “sill”.

Strange that it’s decreases over distance. But if you do 20,000 m then see it begins to increase again.

model_script = paste0(source_path,"generic models-gaussian glm 4-FF.R")
model_comparisonsAIC(model_script)
##        [,1]       [,2]       [,3]       [,4]       [,5]     
## AICs   -9580.954  -9580.56   -9580.42   -9580.058  -9579.678
## models 22         88         58         99         76       
## probs  0.09959751 0.08179847 0.07626127 0.06362797 0.0526265
## 
## m22  glm(formula = R ~ A * B + C, family = gaussian, data = data)
## m88  glm(formula = R ~ A * B + A * D + B * D + C, family = gaussian, 
##     data = data)
## m58  glm(formula = R ~ A * B + B * D + C, family = gaussian, data = data)
## m99  glm(formula = R ~ A * B + A * D + B * D + C * D, family = gaussian, 
##     data = data)
## m76  glm(formula = R ~ A * B + B * D + C * D, family = gaussian, data = data)
anova(m22, m42, test="Chisq") # adding B*C does not improve fit
## Analysis of Deviance Table
## 
## Model 1: R ~ A * B + C
## Model 2: R ~ A * B + B * C
##   Resid. Df Resid. Dev Df   Deviance Pr(>Chi)
## 1      1911    0.75078                       
## 2      1910    0.75073  1 4.9699e-05   0.7221
anova(m16, m22, test="Chisq") # adding C does improve fit # same top model as before
## Analysis of Deviance Table
## 
## Model 1: R ~ A * B
## Model 2: R ~ A * B + C
##   Resid. Df Resid. Dev Df Deviance  Pr(>Chi)    
## 1      1912    0.76395                          
## 2      1911    0.75078  1 0.013174 7.004e-09 ***
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1

Same best fit model (no months_since_start effect). But can plot the positive effect of month of year on wing2body ratio. It looks cyclical by pophost and more linear by sex:

wing2body_summary<-aggregate(wing2body~pophost*month_of_year, data=data_long, FUN=mean)
plot(wing2body~month_of_year, data=wing2body_summary, pch=19, col=c(1,2)[as.factor(pophost)])

wing2body_summary<-aggregate(wing2body~sex_binom*month_of_year, data=data_long, FUN=mean) # black is M; Red is F
plot(wing2body~month_of_year, data=wing2body_summary, pch=19, col=c(1,2)[as.factor(sex_binom)]) # black is C. ; Red is K.

These plots are plotted cleanly in the wing_plots.Rmd script.

Let’s plot histograms and analyze the variance. Then model the variance.

SE = function(x){sd(x)/sqrt(length(x))}
w2b_summaryt<-aggregate(wing2body~sex_binom*pophost_binom*month_of_year*months_since_start, data=data_long, FUN=mean)
w2b_summaryt$sd<-aggregate(wing2body~sex_binom*pophost_binom*month_of_year*months_since_start, data=data_long,
                          FUN=sd)$wing2body
w2b_summaryt$se<-aggregate(wing2body~sex_binom*pophost_binom*month_of_year*months_since_start, data=data_long,
                          FUN=SE)$wing2body
data = w2b_summaryt
data<-data.frame(R=data$sd, 
                 A=data$sex_binom, 
                 B=data$pophost_binom, 
                 C=(data$month_of_year),
                 D=data$months_since_start)

model_script = paste0(source_path,"generic models-gaussian glm 3-FF.R")
model_comparisonsAIC(model_script)
##        [,1]      [,2]     [,3]      [,4]       [,5]       [,6]       [,7]     
## AICs   -268.965  -268.213 -267.8054 -267.0452  -266.9935  -266.5193  -266.2873
## models 6         2        10        7          3          18         4        
## probs  0.2096244 0.14393  0.1173888 0.08026955 0.07822308 0.06171195 0.0549513
## 
## m6   glm(formula = R ~ B + C, family = gaussian, data = data)
## m2   glm(formula = R ~ B, family = gaussian, data = data)
## m10  glm(formula = R ~ B * C, family = gaussian, data = data)
## m7   glm(formula = R ~ A + B + C, family = gaussian, data = data)
## m3   glm(formula = R ~ C, family = gaussian, data = data)
## m0   glm(formula = R ~ 1, family = gaussian, data = data)
## m4   glm(formula = R ~ A + B, family = gaussian, data = data)
anova(m2, m6, test="Chisq")
## Analysis of Deviance Table
## 
## Model 1: R ~ B
## Model 2: R ~ B + C
##   Resid. Df Resid. Dev Df   Deviance Pr(>Chi)
## 1        34 0.00103704                       
## 2        33 0.00096072  1 7.6321e-05   0.1054
anova(m0, m2, test="Chisq") # Adding B marginally improves fit
## Analysis of Deviance Table
## 
## Model 1: R ~ 1
## Model 2: R ~ B
##   Resid. Df Resid. Dev Df   Deviance Pr(>Chi)  
## 1        35  0.0011491                         
## 2        34  0.0010370  1 0.00011205  0.05528 .
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
m = glm(sd ~ pophost_binom, data=w2b_summaryt, family=gaussian) 
tidy_regression(m, is_color=FALSE)
## glm sd ~ pophost_binom gaussian w2b_summaryt 
## AIC:  -268.213 
## (Intercept)      coeff:  0.0171018   Pr(>|t|):  2.221358e-19 *
## pophost_binom    coeff:  0.0017643   Pr(>|t|):  0.06371229 .

Nothing seems to effect the w2b variance.

Plot the histograms between the sexes and conduct var tests.

time_var_tests = function(d, print_test=FALSE) {
  
  months = sort(unique(d$month_of_year))
  month_labs <- c("Feb", "Apr", "May", "Aug", "Sept", "Oct", "Dec")

  table = matrix(nrow=length(months), ncol=9)
  i = 0
  for (m in months) {
    i = i + 1
    data = d[d$month_of_year==m, ]
  
    VAR = var.test(wing2body ~ sex, data = data) # F test to compare the variances of two samples from normal pops
    TTEST= t.test(wing2body ~ sex, data=data) # t.test to find significant difference between the means of two groups
    AOV = aov(wing2body ~ sex, data=data) # used to analyze the differences among means. 
    
    p = TukeyHSD(AOV)$sex[,"p adj"]
    diff = TukeyHSD(AOV)$sex[,"diff"]
    
    if (print_test) {
      print(month_labs[i])
      print("t.test")
      print(TTEST)
      print("anova")
      print(summary(AOV))
      print(TukeyHSD(AOV))
      cat("-------------------------------------------------")
    }
    
    # plot histograms
    h = data %>%
    ggplot( aes(x=wing2body, fill=sex)) +
      geom_histogram( color="#e9ecef", alpha=0.6, position = 'identity') +
      scale_fill_manual(values=c("#69b3a2", "#404080")) +
      labs(fill="")  + labs(title=month_labs[i])
    print(h)
    
    # populate matrix
    table[i,1] = month_labs[i]
    table[i,2] = "M-F"
    table[i,3] = round(diff,4)
    table[i,4] = round(p,5)
    table[i,5] = "M=-1 | F=1"
    table[i,6] = round(TTEST$statistic,4)
    table[i,7] = round(TTEST$p.value,5)
    table[i,8] = round(VAR$statistic,2)
    table[i,9] = round(VAR$p.value, 3)
  }
  colnames(table) = c("month","sex", "Tukey-diff", "p-val", "sex", "ttest", "p-val", "F-test", "p-val")
  return(table)
} 
summary_table = time_var_tests(data_long)
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
## Warning: Removed 8 rows containing non-finite values (stat_bin).

## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
## Warning: Removed 298 rows containing non-finite values (stat_bin).

## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
## Warning: Removed 8 rows containing non-finite values (stat_bin).

## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
## Warning: Removed 8 rows containing non-finite values (stat_bin).

## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
## Warning: Removed 8 rows containing non-finite values (stat_bin).

## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
## Warning: Removed 8 rows containing non-finite values (stat_bin).

## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
## Warning: Removed 358 rows containing non-finite values (stat_bin).

summary_table
##      month  sex   Tukey-diff p-val     sex          ttest     p-val     F-test
## [1,] "Feb"  "M-F" "0.0078"   "0"       "M=-1 | F=1" "-4.771"  "0"       "1"   
## [2,] "Apr"  "M-F" "0.0051"   "0.06579" "M=-1 | F=1" "-1.8347" "0.06801" "1.14"
## [3,] "May"  "M-F" "-0.0049"  "0.10351" "M=-1 | F=1" "1.7413"  "0.08239" "1.87"
## [4,] "Aug"  "M-F" "0.0027"   "0.09485" "M=-1 | F=1" "-1.6702" "0.09591" "1.05"
## [5,] "Sept" "M-F" "0.0024"   "0.35468" "M=-1 | F=1" "-0.9363" "0.35087" "1.23"
## [6,] "Oct"  "M-F" "0.0039"   "0.04799" "M=-1 | F=1" "-1.9892" "0.04769" "0.9" 
## [7,] "Dec"  "M-F" "0.0056"   "0.03097" "M=-1 | F=1" "-2.2079" "0.02882" "0.64"
##      p-val  
## [1,] "0.985"
## [2,] "0.481"
## [3,] "0"    
## [4,] "0.744"
## [5,] "0.408"
## [6,] "0.542"
## [7,] "0.057"
y = summary_table[,"F-test"]
xlab = summary_table[, "month"]
x = sort(unique(d$month_of_year))

plot(x,y, ylab="F-test value", xlab="Month of Year", xaxt = "n", main="wing-to-body ~ sex")
axis(1, at=seq(min(x),max(x),2), labels=xlab[-5])
abline(h=1, col=2) # non-linear relationship where at the beginning of the year the variance between sexes is similar but then in spring it deviates a lot. In the summer the variance is similar and then towards the winter the variance deviates.

time_var_tests = function(d, print_test=FALSE) {
  
  months = sort(unique(d$month_of_year))
  month_labs <- c("Feb", "Apr", "May", "Aug", "Sept", "Oct", "Dec")

  table = matrix(nrow=length(months), ncol=9)
  i = 0
  for (m in months) {
    i = i + 1
    data = d[d$month_of_year==m, ]
  
    VAR = var.test(wing2body ~ pophost, data = data) # F test to compare the variances of two samples from normal pops
    TTEST= t.test(wing2body ~ pophost, data=data) # t.test to find significant difference between the means of two groups
    AOV = aov(wing2body ~ pophost, data=data) # used to analyze the differences among means. 
    
    p = TukeyHSD(AOV)$pophost[,"p adj"]
    diff = TukeyHSD(AOV)$pophost[,"diff"]
    
    if (print_test) {
      print(month_labs[i])
      print("t.test")
      print(TTEST)
      print("anova")
      print(summary(AOV))
      print(TukeyHSD(AOV))
      cat("-------------------------------------------------")
    }
    
    # plot histograms
    h = data %>%
    ggplot( aes(x=wing2body, fill=pophost)) +
      geom_histogram( color="#e9ecef", alpha=0.6, position = 'identity') +
      scale_fill_manual(values=c("#69b3a2", "#404080")) +
      labs(fill="")  + labs(title=month_labs[i])
    print(h)
    
    # populate matrix
    table[i,1] = month_labs[i]
    table[i,2] = "GRT-BV"
    table[i,3] = round(diff,4)
    table[i,4] = round(p,5)
    table[i,5] = "GRT=1 | BV=-1"
    table[i,6] = round(TTEST$statistic,4)
    table[i,7] = round(TTEST$p.value,5)
    table[i,8] = round(VAR$statistic,2)
    table[i,9] = round(VAR$p.value, 3)
  }
  colnames(table) = c("month","sex", "Tukey-diff", "p-val", "sex", "ttest", "p-val", "F-test", "p-val")
  
  return(table)
} 
summary_table = time_var_tests(data_long)
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
## Warning: Removed 8 rows containing non-finite values (stat_bin).

## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
## Warning: Removed 298 rows containing non-finite values (stat_bin).

## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
## Warning: Removed 8 rows containing non-finite values (stat_bin).

## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
## Warning: Removed 8 rows containing non-finite values (stat_bin).

## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
## Warning: Removed 8 rows containing non-finite values (stat_bin).

## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
## Warning: Removed 8 rows containing non-finite values (stat_bin).

## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
## Warning: Removed 358 rows containing non-finite values (stat_bin).

summary_table
##      month  sex      Tukey-diff p-val     sex             ttest     p-val    
## [1,] "Feb"  "GRT-BV" "0.0083"   "0"       "GRT=1 | BV=-1" "-5.3981" "0"      
## [2,] "Apr"  "GRT-BV" "0.0042"   "0.20888" "GRT=1 | BV=-1" "-1.2663" "0.20907"
## [3,] "May"  "GRT-BV" "0.0084"   "0.00468" "GRT=1 | BV=-1" "-3.1977" "0.00151"
## [4,] "Aug"  "GRT-BV" "0.0068"   "0.00073" "GRT=1 | BV=-1" "-3.5282" "0.00062"
## [5,] "Sept" "GRT-BV" "0.0082"   "0.0047"  "GRT=1 | BV=-1" "-2.6132" "0.01198"
## [6,] "Oct"  "GRT-BV" "0.0083"   "2e-05"   "GRT=1 | BV=-1" "-4.3434" "2e-05"  
## [7,] "Dec"  "GRT-BV" "0.0083"   "0.00217" "GRT=1 | BV=-1" "-3.2354" "0.0016" 
##      F-test p-val  
## [1,] "1.32" "0.058"
## [2,] "0.98" "0.975"
## [3,] "0.18" "0"    
## [4,] "0.89" "0.587"
## [5,] "1.47" "0.156"
## [6,] "0.88" "0.452"
## [7,] "0.8"  "0.377"
y = summary_table[,"F-test"]
xlab = summary_table[, "month"]
x = sort(unique(d$month_of_year))

plot(x,y, ylab="F-test value", xlab="Month of Year", xaxt = "n", main="wing-to-body ~ pophost")
axis(1, at=seq(min(x),max(x),2), labels=xlab[-5])
abline(h=1, col=2) # non-linear relationship where at the beginning of the year the variance between hostplants is similar but then in spring it deviates a lot. In the summer and winter the variance is similar. (GRT/BV var = F-test value where in Sept and Feb only months where GRT is higher and the rest is BV)

temp = data_long %>%
  filter(!is.na(months_since_start), !is.na(sex), !is.na(wing2body))
time_var_tests = function(d, print_test=FALSE) {
  
  months = unique(d$months_since_start)
  #month_labs <- c("Feb", "Apr", "May", "Aug", "Sept", "Oct", "Dec")

  table = matrix(nrow=length(months), ncol=9)
  i = 0
  for (m in months) {
    i = i + 1
    data = d[d$months_since_start==m, ]
  
    VAR = var.test(wing2body ~ sex, data = data) # F test to compare the variances of two samples from normal pops
    TTEST= t.test(wing2body ~ sex, data=data) # t.test to find significant difference between the means of two groups
    AOV = aov(wing2body ~ sex, data=data) # used to analyze the differences among means. 
    
    p = TukeyHSD(AOV)$sex[,"p adj"]
    diff = TukeyHSD(AOV)$sex[,"diff"]
    
    if (print_test) {
      print(m)
      print("t.test")
      print(TTEST)
      print("anova")
      print(summary(AOV))
      print(TukeyHSD(AOV))
      cat("-------------------------------------------------")
    }
    
    # plot histograms
    h = data %>%
    ggplot( aes(x=wing2body, fill=sex)) +
      geom_histogram( color="#e9ecef", alpha=0.6, position = 'identity') +
      scale_fill_manual(values=c("#69b3a2", "#404080")) +
      labs(fill="")  + labs(title=m)
    print(h)
    
    # populate matrix
    table[i,1] = m
    table[i,2] = "M-F"
    table[i,3] = round(diff,4)
    table[i,4] = round(p,5)
    table[i,5] = "M=-1 | F=1"
    table[i,6] = round(TTEST$statistic,4)
    table[i,7] = round(TTEST$p.value,5)
    table[i,8] = round(VAR$statistic,2)
    table[i,9] = round(VAR$p.value, 3)
  }
  colnames(table) = c("month","sex", "Tukey-diff", "p-val", "sex", "ttest", "p-val", "F-test", "p-val")
  
  return(table)
} 

summary_table = time_var_tests(temp)
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

summary_table
##       month sex   Tukey-diff p-val     sex          ttest     p-val     F-test
##  [1,] "0"   "M-F" "-0.0024"  "0.67693" "M=-1 | F=1" "0.4192"  "0.67803" "0.99"
##  [2,] "11"  "M-F" "0.0137"   "0.00601" "M=-1 | F=1" "-2.9604" "0.00471" "1.5" 
##  [3,] "23"  "M-F" "0.0043"   "0.32845" "M=-1 | F=1" "-0.9809" "0.32901" "1.25"
##  [4,] "43"  "M-F" "0.0056"   "0.03097" "M=-1 | F=1" "-2.2079" "0.02882" "0.64"
##  [5,] "51"  "M-F" "0.0027"   "0.09485" "M=-1 | F=1" "-1.6702" "0.09591" "1.05"
##  [6,] "64"  "M-F" "0.0024"   "0.35468" "M=-1 | F=1" "-0.9363" "0.35087" "1.23"
##  [7,] "72"  "M-F" "-0.0049"  "0.10351" "M=-1 | F=1" "1.7413"  "0.08239" "1.87"
##  [8,] "77"  "M-F" "0.0039"   "0.04799" "M=-1 | F=1" "-1.9892" "0.04769" "0.9" 
##  [9,] "81"  "M-F" "0.0078"   "0"       "M=-1 | F=1" "-4.771"  "0"       "1"   
##       p-val  
##  [1,] "0.963"
##  [2,] "0.343"
##  [3,] "0.429"
##  [4,] "0.057"
##  [5,] "0.744"
##  [6,] "0.408"
##  [7,] "0"    
##  [8,] "0.542"
##  [9,] "0.985"
y = summary_table[,"F-test"]
xlab = summary_table[, "month"]
x = sort(unique(temp$months_since_start))

plot(x,y, ylab="F-test value", xlab="Months Since Start", main="wing-to-body ~ pophost")
#axis(1, at=seq(min(x),max(x),2), labels=xlab[-5])
abline(h=1, col=2)

temp = data_long %>%
  filter(!is.na(months_since_start), !is.na(pophost), !is.na(wing2body))
time_var_tests = function(d, print_test=FALSE) {
  
  months = unique(d$months_since_start)
  #month_labs <- c("Feb", "Apr", "May", "Aug", "Sept", "Oct", "Dec")

  table = matrix(nrow=length(months), ncol=9)
  i = 0
  for (m in months) {
    i = i + 1
    data = d[d$months_since_start==m, ]
  
    VAR = var.test(wing2body ~ pophost, data = data) # F test to compare the variances of two samples from normal pops
    TTEST= t.test(wing2body ~ pophost, data=data) # t.test to find significant difference between the means of two groups
    AOV = aov(wing2body ~ pophost, data=data) # used to analyze the differences among means. 
    
    p = TukeyHSD(AOV)$pophost[,"p adj"]
    diff = TukeyHSD(AOV)$pophost[,"diff"]
    
    if (print_test) {
      print(m)
      print("t.test")
      print(TTEST)
      print("anova")
      print(summary(AOV))
      print(TukeyHSD(AOV))
      cat("-------------------------------------------------")
    }
    
    # plot histograms
    h = data %>%
    ggplot( aes(x=wing2body, fill=pophost)) +
      geom_histogram( color="#e9ecef", alpha=0.6, position = 'identity') +
      scale_fill_manual(values=c("#69b3a2", "#404080")) +
      labs(fill="")  + labs(title=m)
    print(h)
    
    # populate matrix
    table[i,1] = m
    table[i,2] = "GRT-BV"
    table[i,3] = round(diff,4)
    table[i,4] = round(p,5)
    table[i,5] = "GRT=1 | BV=-1"
    table[i,6] = round(TTEST$statistic,4)
    table[i,7] = round(TTEST$p.value,5)
    table[i,8] = round(VAR$statistic,2)
    table[i,9] = round(VAR$p.value, 3)
  }
  colnames(table) = c("month","sex", "Tukey-diff", "p-val", "sex", "ttest", "p-val", "F-test", "p-val")
  
  return(table)
} 

summary_table = time_var_tests(temp)
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

summary_table
##       month sex      Tukey-diff p-val     sex             ttest     p-val    
##  [1,] "0"   "GRT-BV" "9e-04"    "0.87294" "GRT=1 | BV=-1" "-0.1522" "0.88002"
##  [2,] "11"  "GRT-BV" "0"        "0.9978"  "GRT=1 | BV=-1" "-0.0035" "0.99727"
##  [3,] "23"  "GRT-BV" "0.0131"   "0.02364" "GRT=1 | BV=-1" "-2.447"  "0.02201"
##  [4,] "43"  "GRT-BV" "0.0083"   "0.00217" "GRT=1 | BV=-1" "-3.2354" "0.0016" 
##  [5,] "51"  "GRT-BV" "0.0068"   "0.00073" "GRT=1 | BV=-1" "-3.5282" "0.00062"
##  [6,] "64"  "GRT-BV" "0.0082"   "0.0047"  "GRT=1 | BV=-1" "-2.6132" "0.01198"
##  [7,] "72"  "GRT-BV" "0.0084"   "0.00468" "GRT=1 | BV=-1" "-3.1977" "0.00151"
##  [8,] "77"  "GRT-BV" "0.0083"   "2e-05"   "GRT=1 | BV=-1" "-4.3434" "2e-05"  
##  [9,] "81"  "GRT-BV" "0.0083"   "0"       "GRT=1 | BV=-1" "-5.3981" "0"      
##       F-test p-val  
##  [1,] "1.29" "0.472"
##  [2,] "0.4"  "0.089"
##  [3,] "0.83" "0.702"
##  [4,] "0.8"  "0.377"
##  [5,] "0.89" "0.587"
##  [6,] "1.47" "0.156"
##  [7,] "0.18" "0"    
##  [8,] "0.88" "0.452"
##  [9,] "1.32" "0.058"
y = summary_table[,"F-test"]
xlab = summary_table[, "month"]
x = sort(unique(temp$months_since_start))

plot(x,y, ylab="F-test value", xlab="Months Since Start", main="wing-to-body ~ pophost")
#axis(1, at=seq(min(x),max(x),2), labels=xlab[-5])
abline(h=1, col=2)